diff --git a/.github/workflows/actions/quarto-dev/action.yml b/.github/workflows/actions/quarto-dev/action.yml index 63690b7dc75..b690b42e286 100644 --- a/.github/workflows/actions/quarto-dev/action.yml +++ b/.github/workflows/actions/quarto-dev/action.yml @@ -12,6 +12,22 @@ runs: restore-keys: | ${{ runner.os }}-deno_std-2- + - name: Install Rust for typst-gather + uses: dtolnay/rust-toolchain@master + with: + toolchain: stable + + - name: Cache Cargo dependencies + uses: actions/cache@v4 + with: + path: | + ~/.cargo/registry + ~/.cargo/git + package/typst-gather/target + key: ${{ runner.os }}-cargo-typst-gather-${{ hashFiles('package/typst-gather/Cargo.lock') }} + restore-keys: | + ${{ runner.os }}-cargo-typst-gather- + - name: Configure Quarto (.sh) if: runner.os != 'Windows' shell: bash @@ -33,13 +49,13 @@ runs: - name: Basic dev mode sanity check shell: pwsh run: | - If ( "$(quarto --version)" -ne "99.9.9") { + If ( "$(quarto --version)" -ne "99.9.9") { echo "Unexpected version detected: $(quarto --version)" - Exit 1 + Exit 1 } - If ( $(quarto --paths | Select-String -Pattern "package[/\\]+dist[/\\]+share") -ne $null ) { + If ( $(quarto --paths | Select-String -Pattern "package[/\\]+dist[/\\]+share") -ne $null ) { echo "Unexpected package/dist/share path detected: $(quarto --paths)" - Exit 1 + Exit 1 } # check if configure is modifying some files as it should not $modifiedFiles = git diff --name-only diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 1290f78f157..c3c0703d938 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -133,6 +133,11 @@ jobs: if: ${{ inputs.publish-release }} uses: ./.github/workflows/actions/prevent-rerun + - name: Install Rust for typst-gather + uses: dtolnay/rust-toolchain@master + with: + toolchain: stable + - name: Configure run: | ./configure.sh @@ -261,6 +266,11 @@ jobs: if: ${{ inputs.publish-release }} uses: ./.github/workflows/actions/prevent-rerun + - name: Install Rust for typst-gather + uses: dtolnay/rust-toolchain@master + with: + toolchain: stable + - name: Configure run: | ./configure.sh @@ -360,10 +370,11 @@ jobs: if: ${{ inputs.publish-release }} uses: ./.github/workflows/actions/prevent-rerun - - name: Configure Rust Tools - run: | - rustup.exe toolchain install 1.63.0 --component rustfmt --component clippy --no-self-update - rustup.exe default 1.63.0 + - name: Install Rust for typst-gather and launcher + uses: dtolnay/rust-toolchain@master + with: + toolchain: stable + - name: Configure run: | .\configure.cmd @@ -389,6 +400,7 @@ jobs: ./package/pkg-working/bin/tools/x86_64/esbuild.exe ./package/pkg-working/bin/tools/x86_64/dart-sass/src/dart.exe ./package/pkg-working/bin/tools/x86_64/deno_dom/plugin.dll + ./package/pkg-working/bin/tools/x86_64/typst-gather.exe ./package/pkg-working/bin/tools/pandoc.exe ./package/pkg-working/bin/quarto.js env: @@ -491,6 +503,11 @@ jobs: if: ${{ inputs.publish-release }} uses: ./.github/workflows/actions/prevent-rerun + - name: Install Rust for typst-gather + uses: dtolnay/rust-toolchain@master + with: + toolchain: stable + - name: Configure run: | ./configure.sh diff --git a/configure.cmd b/configure.cmd index 90c67409511..b4c2e839d03 100644 --- a/configure.cmd +++ b/configure.cmd @@ -89,6 +89,16 @@ IF EXIST !QUARTO_BIN_PATH!\quarto.cmd ( ECHO NOTE: To use quarto please use quarto.cmd (located in this folder) or add the following path to your PATH ECHO !QUARTO_BIN_PATH! +REM Build typst-gather if cargo is available +where cargo >nul 2>nul +if %ERRORLEVEL% EQU 0 ( + ECHO Building typst-gather... + cargo build --release --manifest-path package\typst-gather\Cargo.toml +) else ( + ECHO Note: Rust/cargo not found, skipping typst-gather build + ECHO Install Rust to use 'quarto call typst-gather' +) + endlocal & set QUARTO_BIN_DEV=%QUARTO_BIN_PATH% GOTO :eof diff --git a/configure.sh b/configure.sh index 859f3a3f769..4bbcd86c7bc 100755 --- a/configure.sh +++ b/configure.sh @@ -102,3 +102,12 @@ else export QUARTO_DENO_EXTRA_OPTIONS="--reload" quarto --version fi + +# Build typst-gather if cargo is available +if command -v cargo &> /dev/null; then + echo "Building typst-gather..." + cargo build --release --manifest-path package/typst-gather/Cargo.toml +else + echo "Note: Rust/cargo not found, skipping typst-gather build" + echo "Install Rust to use 'quarto call typst-gather'" +fi diff --git a/news/changelog-1.9.md b/news/changelog-1.9.md index 894773bce7d..63ac2451a13 100644 --- a/news/changelog-1.9.md +++ b/news/changelog-1.9.md @@ -61,6 +61,7 @@ All changes included in 1.9: - ([rstudio/tinytex-releases#49](https://github.com/rstudio/tinytex-releases/issues/49)): Fix detection of LuaTeX-ja missing file errors by matching both "File" and "file" in error messages. - ([#13667](https://github.com/quarto-dev/quarto-cli/issues/13667)): Fix LaTeX compilation error with Python error output containing caret characters. - ([#13730](https://github.com/quarto-dev/quarto-cli/issues/13730)): Fix TinyTeX detection when `~/.TinyTeX/` directory exists without binaries. Quarto now verifies that the bin directory and tlmgr binary exist before reporting TinyTeX as available, allowing proper fallback to system PATH installations. +- ([#13919](https://github.com/quarto-dev/quarto-cli/issues/13919)): Fix margin citations with citeproc showing unresolved `?quarto-cite:` placeholders in PDF output. Caused by Pandoc 3.6+ adding `\protect` before `\phantomsection` in bibliography anchors. - ([#13249](https://github.com/quarto-dev/quarto-cli/pull/13249)): Update to Pandoc's LaTeX template following Pandoc 3.8.3 support: - New RTL support for LuaTeX with `\RL`, `\LR` commands and `RTL`, `LTR` environments. - New `shorthands` variable for Babel language shortcuts control. diff --git a/package/src/common/prepare-dist.ts b/package/src/common/prepare-dist.ts index 5509318abad..025f18247f2 100755 --- a/package/src/common/prepare-dist.ts +++ b/package/src/common/prepare-dist.ts @@ -100,6 +100,30 @@ export async function prepareDist( } } + // Stage typst-gather binary if it exists (built by configure.sh) + // Only stage if the build machine architecture matches the target architecture + // (cross-compilation is not currently supported) + const buildArch = Deno.build.arch === "aarch64" ? "aarch64" : "x86_64"; + if (buildArch === config.arch) { + const typstGatherBinaryName = config.os === "windows" ? "typst-gather.exe" : "typst-gather"; + const typstGatherSrc = join( + config.directoryInfo.root, + "package/typst-gather/target/release", + typstGatherBinaryName, + ); + if (existsSync(typstGatherSrc)) { + info("\nStaging typst-gather binary"); + const typstGatherDest = join(targetDir, config.arch, typstGatherBinaryName); + ensureDirSync(join(targetDir, config.arch)); + copySync(typstGatherSrc, typstGatherDest, { overwrite: true }); + info(`Copied ${typstGatherSrc} to ${typstGatherDest}`); + } else { + info("\nNote: typst-gather binary not found, skipping staging"); + } + } else { + info(`\nNote: Skipping typst-gather staging (build arch ${buildArch} != target arch ${config.arch})`); + } + // build quarto-preview.js info("Building Quarto Web UI"); const result = buildQuartoPreviewJs(config.directoryInfo.src, undefined, true); diff --git a/package/typst-gather/.gitignore b/package/typst-gather/.gitignore new file mode 100644 index 00000000000..ea8c4bf7f35 --- /dev/null +++ b/package/typst-gather/.gitignore @@ -0,0 +1 @@ +/target diff --git a/package/typst-gather/Cargo.lock b/package/typst-gather/Cargo.lock new file mode 100644 index 00000000000..77b2bb0277f --- /dev/null +++ b/package/typst-gather/Cargo.lock @@ -0,0 +1,3000 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "adler2" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" + +[[package]] +name = "aho-corasick" +version = "1.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" +dependencies = [ + "memchr", +] + +[[package]] +name = "anstream" +version = "0.6.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a" +dependencies = [ + "anstyle", + "anstyle-parse", + "anstyle-query", + "anstyle-wincon", + "colorchoice", + "is_terminal_polyfill", + "utf8parse", +] + +[[package]] +name = "anstyle" +version = "1.0.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78" + +[[package]] +name = "anstyle-parse" +version = "0.2.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2" +dependencies = [ + "utf8parse", +] + +[[package]] +name = "anstyle-query" +version = "1.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" +dependencies = [ + "windows-sys 0.61.2", +] + +[[package]] +name = "anstyle-wincon" +version = "3.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" +dependencies = [ + "anstyle", + "once_cell_polyfill", + "windows-sys 0.61.2", +] + +[[package]] +name = "approx" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6" +dependencies = [ + "num-traits", +] + +[[package]] +name = "arrayref" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb" + +[[package]] +name = "arrayvec" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" + +[[package]] +name = "autocfg" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" + +[[package]] +name = "az" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b7e4c2464d97fe331d41de9d5db0def0a96f4d823b8b32a2efd503578988973" + +[[package]] +name = "base64" +version = "0.22.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" + +[[package]] +name = "biblatex" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53d0c374feba1b9a59042a7c1cf00ce7c34b977b9134fe7c42b08e5183729f66" +dependencies = [ + "paste", + "roman-numerals-rs", + "strum", + "unic-langid", + "unicode-normalization", + "unscanny", +] + +[[package]] +name = "bincode" +version = "1.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" +dependencies = [ + "serde", +] + +[[package]] +name = "bit-set" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3" +dependencies = [ + "bit-vec", +] + +[[package]] +name = "bit-vec" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7" + +[[package]] +name = "bitflags" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" + +[[package]] +name = "bitflags" +version = "2.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3" +dependencies = [ + "serde_core", +] + +[[package]] +name = "bstr" +version = "1.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab" +dependencies = [ + "memchr", + "serde", +] + +[[package]] +name = "bumpalo" +version = "3.19.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510" + +[[package]] +name = "by_address" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "64fa3c856b712db6612c019f14756e64e4bcea13337a6b33b696333a9eaa2d06" + +[[package]] +name = "bytemuck" +version = "1.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4" + +[[package]] +name = "byteorder-lite" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495" + +[[package]] +name = "cc" +version = "1.2.51" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a0aeaff4ff1a90589618835a598e545176939b97874f7abc7851caa0618f203" +dependencies = [ + "find-msvc-tools", + "shlex", +] + +[[package]] +name = "cfg-if" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" + +[[package]] +name = "chinese-number" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e964125508474a83c95eb935697abbeb446ff4e9d62c71ce880e3986d1c606b" +dependencies = [ + "chinese-variant", + "enum-ordinalize", + "num-bigint", + "num-traits", +] + +[[package]] +name = "chinese-variant" +version = "1.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "58b52a9840ffff5d4d0058ae529fa066a75e794e3125546acfc61c23ad755e49" + +[[package]] +name = "ciborium" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" +dependencies = [ + "ciborium-io", + "ciborium-ll", + "serde", +] + +[[package]] +name = "ciborium-io" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" + +[[package]] +name = "ciborium-ll" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" +dependencies = [ + "ciborium-io", + "half", +] + +[[package]] +name = "citationberg" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f6597e8bdbca37f1f56e5a80d15857b0932aead21a78d20de49e99e74933046" +dependencies = [ + "quick-xml", + "serde", +] + +[[package]] +name = "clap" +version = "4.5.53" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8" +dependencies = [ + "clap_builder", + "clap_derive", +] + +[[package]] +name = "clap_builder" +version = "4.5.53" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00" +dependencies = [ + "anstream", + "anstyle", + "clap_lex", + "strsim", +] + +[[package]] +name = "clap_derive" +version = "4.5.49" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "clap_lex" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d" + +[[package]] +name = "cobs" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1" +dependencies = [ + "thiserror", +] + +[[package]] +name = "codex" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9589e1effc5cacbea347899645c654158b03b2053d24bb426fd3128ced6e423c" + +[[package]] +name = "color_quant" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" + +[[package]] +name = "colorchoice" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" + +[[package]] +name = "comemo" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "649d7b2d867b569729c03c0f6968db10bc95921182a1f2b2012b1b549492f39d" +dependencies = [ + "comemo-macros", + "parking_lot", + "rustc-hash", + "siphasher", + "slab", +] + +[[package]] +name = "comemo-macros" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "51c87fc7e85487493ddedae1a3a34b897c77ad8825375b79265a8a162c28d535" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "core-foundation" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "core-foundation-sys" +version = "0.8.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" + +[[package]] +name = "core_maths" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77745e017f5edba1a9c1d854f6f3a52dac8a12dd5af5d2f54aecf61e43d80d30" +dependencies = [ + "libm", +] + +[[package]] +name = "crc32fast" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "crossbeam-deque" +version = "0.8.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" +dependencies = [ + "crossbeam-epoch", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.9.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" + +[[package]] +name = "crunchy" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" + +[[package]] +name = "csv" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938" +dependencies = [ + "csv-core", + "itoa", + "ryu", + "serde_core", +] + +[[package]] +name = "csv-core" +version = "0.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782" +dependencies = [ + "memchr", +] + +[[package]] +name = "data-url" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be1e0bca6c3637f992fc1cc7cbc52a78c1ef6db076dbf1059c4323d6a2048376" + +[[package]] +name = "deranged" +version = "0.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587" +dependencies = [ + "powerfmt", +] + +[[package]] +name = "dirs" +version = "6.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e" +dependencies = [ + "dirs-sys", +] + +[[package]] +name = "dirs-sys" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab" +dependencies = [ + "libc", + "option-ext", + "redox_users", + "windows-sys 0.61.2", +] + +[[package]] +name = "displaydoc" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "ecow" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78e4f79b296fbaab6ce2e22d52cb4c7f010fe0ebe7a32e34fa25885fd797bd02" +dependencies = [ + "serde", +] + +[[package]] +name = "either" +version = "1.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" + +[[package]] +name = "embedded-io" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced" + +[[package]] +name = "embedded-io" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d" + +[[package]] +name = "enum-ordinalize" +version = "4.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a1091a7bb1f8f2c4b28f1fe2cef4980ca2d410a3d727d67ecc3178c9b0800f0" +dependencies = [ + "enum-ordinalize-derive", +] + +[[package]] +name = "enum-ordinalize-derive" +version = "4.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ca9601fb2d62598ee17836250842873a413586e5d7ed88b356e38ddbb0ec631" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "env_proxy" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a5019be18538406a43b5419a5501461f0c8b49ea7dfda0cfc32f4e51fc44be1" +dependencies = [ + "log", + "url", +] + +[[package]] +name = "equivalent" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" + +[[package]] +name = "errno" +version = "0.3.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" +dependencies = [ + "libc", + "windows-sys 0.61.2", +] + +[[package]] +name = "euclid" +version = "0.22.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ad9cdb4b747e485a12abb0e6566612956c7a1bafa3bdb8d682c5b6d403589e48" +dependencies = [ + "num-traits", +] + +[[package]] +name = "fancy-regex" +version = "0.16.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "998b056554fbe42e03ae0e152895cd1a7e1002aec800fdc6635d20270260c46f" +dependencies = [ + "bit-set", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "fast-srgb8" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd2e7510819d6fbf51a5545c8f922716ecfb14df168a3242f7d33e0239efe6a1" + +[[package]] +name = "fastrand" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" + +[[package]] +name = "fdeflate" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c" +dependencies = [ + "simd-adler32", +] + +[[package]] +name = "filetime" +version = "0.2.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed" +dependencies = [ + "cfg-if", + "libc", + "libredox", + "windows-sys 0.60.2", +] + +[[package]] +name = "find-msvc-tools" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "645cbb3a84e60b7531617d5ae4e57f7e27308f6445f5abf653209ea76dec8dff" + +[[package]] +name = "flate2" +version = "1.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb" +dependencies = [ + "crc32fast", + "miniz_oxide", +] + +[[package]] +name = "float-cmp" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4" + +[[package]] +name = "fnv" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" + +[[package]] +name = "fontconfig-parser" +version = "0.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbc773e24e02d4ddd8395fd30dc147524273a83e54e0f312d986ea30de5f5646" +dependencies = [ + "roxmltree", +] + +[[package]] +name = "fontdb" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "457e789b3d1202543297a350643cf459f836cade38934e7a4cf6a39e7cde2905" +dependencies = [ + "fontconfig-parser", + "log", + "memmap2", + "slotmap", + "tinyvec", + "ttf-parser", +] + +[[package]] +name = "foreign-types" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" +dependencies = [ + "foreign-types-shared", +] + +[[package]] +name = "foreign-types-shared" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" + +[[package]] +name = "form_urlencoded" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" +dependencies = [ + "percent-encoding", +] + +[[package]] +name = "getrandom" +version = "0.2.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" +dependencies = [ + "cfg-if", + "libc", + "wasi", +] + +[[package]] +name = "getrandom" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" +dependencies = [ + "cfg-if", + "libc", + "r-efi", + "wasip2", +] + +[[package]] +name = "gif" +version = "0.14.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f5df2ba84018d80c213569363bdcd0c64e6933c67fe4c1d60ecf822971a3c35e" +dependencies = [ + "color_quant", + "weezl", +] + +[[package]] +name = "glidesort" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2e102e6eb644d3e0b186fc161e4460417880a0a0b87d235f2e5b8fb30f2e9e0" + +[[package]] +name = "globset" +version = "0.4.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3" +dependencies = [ + "aho-corasick", + "bstr", + "log", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "half" +version = "2.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b" +dependencies = [ + "cfg-if", + "crunchy", + "zerocopy", +] + +[[package]] +name = "hashbrown" +version = "0.16.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" + +[[package]] +name = "hayagriva" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1cb69425736f184173b3ca6e27fcba440a61492a790c786b1c6af7e06a03e575" +dependencies = [ + "biblatex", + "ciborium", + "citationberg", + "indexmap", + "paste", + "roman-numerals-rs", + "serde", + "serde_yaml", + "thiserror", + "unic-langid", + "unicode-segmentation", + "unscanny", + "url", +] + +[[package]] +name = "hayro-syntax" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f9e5c7dbc0f11dc42775d1a6cc00f5f5137b90b6288dd7fe5f71d17b14d10be" +dependencies = [ + "flate2", + "kurbo 0.12.0", + "log", + "rustc-hash", + "smallvec", + "zune-jpeg 0.4.21", +] + +[[package]] +name = "heck" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" + +[[package]] +name = "icu_collections" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526" +dependencies = [ + "displaydoc", + "serde", + "yoke 0.7.5", + "zerofrom", + "zerovec 0.10.4", +] + +[[package]] +name = "icu_collections" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43" +dependencies = [ + "displaydoc", + "potential_utf", + "yoke 0.8.1", + "zerofrom", + "zerovec 0.11.5", +] + +[[package]] +name = "icu_locale_core" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6" +dependencies = [ + "displaydoc", + "litemap 0.8.1", + "tinystr 0.8.2", + "writeable 0.6.2", + "zerovec 0.11.5", +] + +[[package]] +name = "icu_locid" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637" +dependencies = [ + "displaydoc", + "litemap 0.7.5", + "tinystr 0.7.6", + "writeable 0.5.5", + "zerovec 0.10.4", +] + +[[package]] +name = "icu_locid_transform" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e" +dependencies = [ + "displaydoc", + "icu_locid", + "icu_locid_transform_data", + "icu_provider 1.5.0", + "tinystr 0.7.6", + "zerovec 0.10.4", +] + +[[package]] +name = "icu_locid_transform_data" +version = "1.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d" + +[[package]] +name = "icu_normalizer" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599" +dependencies = [ + "icu_collections 2.1.1", + "icu_normalizer_data", + "icu_properties 2.1.2", + "icu_provider 2.1.1", + "smallvec", + "zerovec 0.11.5", +] + +[[package]] +name = "icu_normalizer_data" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a" + +[[package]] +name = "icu_properties" +version = "1.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5" +dependencies = [ + "displaydoc", + "icu_collections 1.5.0", + "icu_locid_transform", + "icu_properties_data 1.5.1", + "icu_provider 1.5.0", + "serde", + "tinystr 0.7.6", + "zerovec 0.10.4", +] + +[[package]] +name = "icu_properties" +version = "2.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec" +dependencies = [ + "icu_collections 2.1.1", + "icu_locale_core", + "icu_properties_data 2.1.2", + "icu_provider 2.1.1", + "zerotrie 0.2.3", + "zerovec 0.11.5", +] + +[[package]] +name = "icu_properties_data" +version = "1.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2" + +[[package]] +name = "icu_properties_data" +version = "2.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af" + +[[package]] +name = "icu_provider" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9" +dependencies = [ + "displaydoc", + "icu_locid", + "icu_provider_macros", + "postcard", + "serde", + "stable_deref_trait", + "tinystr 0.7.6", + "writeable 0.5.5", + "yoke 0.7.5", + "zerofrom", + "zerovec 0.10.4", +] + +[[package]] +name = "icu_provider" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614" +dependencies = [ + "displaydoc", + "icu_locale_core", + "writeable 0.6.2", + "yoke 0.8.1", + "zerofrom", + "zerotrie 0.2.3", + "zerovec 0.11.5", +] + +[[package]] +name = "icu_provider_blob" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c24b98d1365f55d78186c205817631a4acf08d7a45bdf5dc9dcf9c5d54dccf51" +dependencies = [ + "icu_provider 1.5.0", + "postcard", + "serde", + "writeable 0.5.5", + "zerotrie 0.1.3", + "zerovec 0.10.4", +] + +[[package]] +name = "icu_provider_macros" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "idna" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" +dependencies = [ + "idna_adapter", + "smallvec", + "utf8_iter", +] + +[[package]] +name = "idna_adapter" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" +dependencies = [ + "icu_normalizer", + "icu_properties 2.1.2", +] + +[[package]] +name = "image" +version = "0.25.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6506c6c10786659413faa717ceebcb8f70731c0a60cbae39795fdf114519c1a" +dependencies = [ + "bytemuck", + "byteorder-lite", + "color_quant", + "gif", + "image-webp", + "moxcms", + "num-traits", + "png 0.18.0", + "zune-core 0.5.0", + "zune-jpeg 0.5.8", +] + +[[package]] +name = "image-webp" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "525e9ff3e1a4be2fbea1fdf0e98686a6d98b4d8f937e1bf7402245af1909e8c3" +dependencies = [ + "byteorder-lite", + "quick-error", +] + +[[package]] +name = "imagesize" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edcd27d72f2f071c64249075f42e205ff93c9a4c5f6c6da53e79ed9f9832c285" + +[[package]] +name = "indexmap" +version = "2.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2" +dependencies = [ + "equivalent", + "hashbrown", + "serde", + "serde_core", +] + +[[package]] +name = "is_terminal_polyfill" +version = "1.70.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" + +[[package]] +name = "itoa" +version = "1.0.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2" + +[[package]] +name = "kamadak-exif" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1130d80c7374efad55a117d715a3af9368f0fa7a2c54573afc15a188cd984837" +dependencies = [ + "mutate_once", +] + +[[package]] +name = "kurbo" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c62026ae44756f8a599ba21140f350303d4f08dcdcc71b5ad9c9bb8128c13c62" +dependencies = [ + "arrayvec", + "euclid", + "smallvec", +] + +[[package]] +name = "kurbo" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce9729cc38c18d86123ab736fd2e7151763ba226ac2490ec092d1dd148825e32" +dependencies = [ + "arrayvec", + "euclid", + "smallvec", +] + +[[package]] +name = "libc" +version = "0.2.178" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091" + +[[package]] +name = "libm" +version = "0.2.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de" + +[[package]] +name = "libredox" +version = "0.1.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616" +dependencies = [ + "bitflags 2.10.0", + "libc", + "redox_syscall 0.7.0", +] + +[[package]] +name = "linked-hash-map" +version = "0.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" + +[[package]] +name = "linux-raw-sys" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039" + +[[package]] +name = "lipsum" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "636860251af8963cc40f6b4baadee105f02e21b28131d76eba8e40ce84ab8064" +dependencies = [ + "rand", + "rand_chacha", +] + +[[package]] +name = "litemap" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856" +dependencies = [ + "serde", +] + +[[package]] +name = "litemap" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77" + +[[package]] +name = "lock_api" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" +dependencies = [ + "scopeguard", +] + +[[package]] +name = "log" +version = "0.4.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" + +[[package]] +name = "memchr" +version = "2.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" + +[[package]] +name = "memmap2" +version = "0.9.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "744133e4a0e0a658e1374cf3bf8e415c4052a15a111acd372764c55b4177d490" +dependencies = [ + "libc", +] + +[[package]] +name = "miniz_oxide" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" +dependencies = [ + "adler2", + "simd-adler32", +] + +[[package]] +name = "moxcms" +version = "0.7.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac9557c559cd6fc9867e122e20d2cbefc9ca29d80d027a8e39310920ed2f0a97" +dependencies = [ + "num-traits", + "pxfm", +] + +[[package]] +name = "mutate_once" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13d2233c9842d08cfe13f9eac96e207ca6a2ea10b80259ebe8ad0268be27d2af" + +[[package]] +name = "native-tls" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e" +dependencies = [ + "libc", + "log", + "openssl", + "openssl-probe", + "openssl-sys", + "schannel", + "security-framework", + "security-framework-sys", + "tempfile", +] + +[[package]] +name = "num-bigint" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" +dependencies = [ + "num-integer", + "num-traits", +] + +[[package]] +name = "num-conv" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" + +[[package]] +name = "num-integer" +version = "0.1.46" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" +dependencies = [ + "num-traits", +] + +[[package]] +name = "num-traits" +version = "0.2.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" +dependencies = [ + "autocfg", +] + +[[package]] +name = "once_cell" +version = "1.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" + +[[package]] +name = "once_cell_polyfill" +version = "1.70.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" + +[[package]] +name = "openssl" +version = "0.10.75" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328" +dependencies = [ + "bitflags 2.10.0", + "cfg-if", + "foreign-types", + "libc", + "once_cell", + "openssl-macros", + "openssl-sys", +] + +[[package]] +name = "openssl-macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "openssl-probe" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" + +[[package]] +name = "openssl-sys" +version = "0.9.111" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321" +dependencies = [ + "cc", + "libc", + "pkg-config", + "vcpkg", +] + +[[package]] +name = "option-ext" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" + +[[package]] +name = "palette" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cbf71184cc5ecc2e4e1baccdb21026c20e5fc3dcf63028a086131b3ab00b6e6" +dependencies = [ + "approx", + "fast-srgb8", + "libm", + "palette_derive", +] + +[[package]] +name = "palette_derive" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f5030daf005bface118c096f510ffb781fc28f9ab6a32ab224d8631be6851d30" +dependencies = [ + "by_address", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "parking_lot" +version = "0.12.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" +dependencies = [ + "lock_api", + "parking_lot_core", +] + +[[package]] +name = "parking_lot_core" +version = "0.9.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" +dependencies = [ + "cfg-if", + "libc", + "redox_syscall 0.5.18", + "smallvec", + "windows-link", +] + +[[package]] +name = "paste" +version = "1.0.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" + +[[package]] +name = "percent-encoding" +version = "2.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" + +[[package]] +name = "phf" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf" +dependencies = [ + "phf_macros", + "phf_shared", + "serde", +] + +[[package]] +name = "phf_generator" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737" +dependencies = [ + "fastrand", + "phf_shared", +] + +[[package]] +name = "phf_macros" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "812f032b54b1e759ccd5f8b6677695d5268c588701effba24601f6932f8269ef" +dependencies = [ + "phf_generator", + "phf_shared", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "phf_shared" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266" +dependencies = [ + "siphasher", +] + +[[package]] +name = "pico-args" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315" + +[[package]] +name = "pkg-config" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" + +[[package]] +name = "plist" +version = "1.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "740ebea15c5d1428f910cd1a5f52cebf8d25006245ed8ade92702f4943d91e07" +dependencies = [ + "base64", + "indexmap", + "quick-xml", + "serde", + "time", +] + +[[package]] +name = "png" +version = "0.17.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526" +dependencies = [ + "bitflags 1.3.2", + "crc32fast", + "fdeflate", + "flate2", + "miniz_oxide", +] + +[[package]] +name = "png" +version = "0.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97baced388464909d42d89643fe4361939af9b7ce7a31ee32a168f832a70f2a0" +dependencies = [ + "bitflags 2.10.0", + "crc32fast", + "fdeflate", + "flate2", + "miniz_oxide", +] + +[[package]] +name = "portable-atomic" +version = "1.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950" + +[[package]] +name = "postcard" +version = "1.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24" +dependencies = [ + "cobs", + "embedded-io 0.4.0", + "embedded-io 0.6.1", + "serde", +] + +[[package]] +name = "potential_utf" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77" +dependencies = [ + "zerovec 0.11.5", +] + +[[package]] +name = "powerfmt" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" + +[[package]] +name = "ppv-lite86" +version = "0.2.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" +dependencies = [ + "zerocopy", +] + +[[package]] +name = "proc-macro-hack" +version = "0.5.20+deprecated" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" + +[[package]] +name = "proc-macro2" +version = "1.0.104" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9695f8df41bb4f3d222c95a67532365f569318332d03d5f3f67f37b20e6ebdf0" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "pxfm" +version = "0.1.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7186d3822593aa4393561d186d1393b3923e9d6163d3fbfd6e825e3e6cf3e6a8" +dependencies = [ + "num-traits", +] + +[[package]] +name = "qcms" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edecfcd5d755a5e5d98e24cf43113e7cdaec5a070edd0f6b250c03a573da30fa" + +[[package]] +name = "quick-error" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3" + +[[package]] +name = "quick-xml" +version = "0.38.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c" +dependencies = [ + "memchr", + "serde", +] + +[[package]] +name = "quote" +version = "1.0.42" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "r-efi" +version = "5.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" + +[[package]] +name = "rand" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" +dependencies = [ + "rand_core", +] + +[[package]] +name = "rand_chacha" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" +dependencies = [ + "ppv-lite86", + "rand_core", +] + +[[package]] +name = "rand_core" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" + +[[package]] +name = "rayon" +version = "1.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f" +dependencies = [ + "either", + "rayon-core", +] + +[[package]] +name = "rayon-core" +version = "1.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91" +dependencies = [ + "crossbeam-deque", + "crossbeam-utils", +] + +[[package]] +name = "redox_syscall" +version = "0.5.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" +dependencies = [ + "bitflags 2.10.0", +] + +[[package]] +name = "redox_syscall" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49f3fe0889e69e2ae9e41f4d6c4c0181701d00e4697b356fb1f74173a5e0ee27" +dependencies = [ + "bitflags 2.10.0", +] + +[[package]] +name = "redox_users" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac" +dependencies = [ + "getrandom 0.2.16", + "libredox", + "thiserror", +] + +[[package]] +name = "regex" +version = "1.12.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.4.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-syntax" +version = "0.8.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" + +[[package]] +name = "roman-numerals-rs" +version = "3.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c85cd47a33a4510b1424fe796498e174c6a9cf94e606460ef022a19f3e4ff85e" + +[[package]] +name = "roxmltree" +version = "0.20.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c20b6793b5c2fa6553b250154b78d6d0db37e72700ae35fad9387a46f487c97" + +[[package]] +name = "rust_decimal" +version = "1.39.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "35affe401787a9bd846712274d97654355d21b2a2c092a3139aabe31e9022282" +dependencies = [ + "arrayvec", + "num-traits", +] + +[[package]] +name = "rustc-hash" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" + +[[package]] +name = "rustix" +version = "1.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34" +dependencies = [ + "bitflags 2.10.0", + "errno", + "libc", + "linux-raw-sys", + "windows-sys 0.61.2", +] + +[[package]] +name = "rustybuzz" +version = "0.20.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd3c7c96f8a08ee34eff8857b11b49b07d71d1c3f4e88f8a88d4c9e9f90b1702" +dependencies = [ + "bitflags 2.10.0", + "bytemuck", + "core_maths", + "log", + "smallvec", + "ttf-parser", + "unicode-bidi-mirroring", + "unicode-ccc", + "unicode-properties", + "unicode-script", +] + +[[package]] +name = "ryu" +version = "1.0.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984" + +[[package]] +name = "same-file" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" +dependencies = [ + "winapi-util", +] + +[[package]] +name = "schannel" +version = "0.1.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1" +dependencies = [ + "windows-sys 0.61.2", +] + +[[package]] +name = "scopeguard" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" + +[[package]] +name = "security-framework" +version = "2.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" +dependencies = [ + "bitflags 2.10.0", + "core-foundation", + "core-foundation-sys", + "libc", + "security-framework-sys", +] + +[[package]] +name = "security-framework-sys" +version = "2.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "serde" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" +dependencies = [ + "serde_core", + "serde_derive", +] + +[[package]] +name = "serde_core" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "serde_json" +version = "1.0.148" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3084b546a1dd6289475996f182a22aba973866ea8e8b02c51d9f46b1336a22da" +dependencies = [ + "itoa", + "memchr", + "serde", + "serde_core", + "zmij", +] + +[[package]] +name = "serde_spanned" +version = "0.6.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3" +dependencies = [ + "serde", +] + +[[package]] +name = "serde_yaml" +version = "0.9.34+deprecated" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47" +dependencies = [ + "indexmap", + "itoa", + "ryu", + "serde", + "unsafe-libyaml", +] + +[[package]] +name = "shlex" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" + +[[package]] +name = "simd-adler32" +version = "0.3.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2" + +[[package]] +name = "simplecss" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a9c6883ca9c3c7c90e888de77b7a5c849c779d25d74a1269b0218b14e8b136c" +dependencies = [ + "log", +] + +[[package]] +name = "siphasher" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" + +[[package]] +name = "slab" +version = "0.4.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" + +[[package]] +name = "slotmap" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038" +dependencies = [ + "version_check", +] + +[[package]] +name = "smallvec" +version = "1.15.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" + +[[package]] +name = "spin" +version = "0.9.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" + +[[package]] +name = "stable_deref_trait" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" + +[[package]] +name = "strict-num" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731" +dependencies = [ + "float-cmp", +] + +[[package]] +name = "strsim" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" + +[[package]] +name = "strum" +version = "0.27.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf" +dependencies = [ + "strum_macros", +] + +[[package]] +name = "strum_macros" +version = "0.27.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "svgtypes" +version = "0.15.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68c7541fff44b35860c1a7a47a7cadf3e4a304c457b58f9870d9706ece028afc" +dependencies = [ + "kurbo 0.11.3", + "siphasher", +] + +[[package]] +name = "syn" +version = "2.0.111" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "synstructure" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "syntect" +version = "5.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "656b45c05d95a5704399aeef6bd0ddec7b2b3531b7c9e900abbf7c4d2190c925" +dependencies = [ + "bincode", + "fancy-regex", + "flate2", + "fnv", + "once_cell", + "plist", + "regex-syntax", + "serde", + "serde_derive", + "serde_json", + "thiserror", + "walkdir", + "yaml-rust", +] + +[[package]] +name = "tar" +version = "0.4.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a" +dependencies = [ + "filetime", + "libc", + "xattr", +] + +[[package]] +name = "tempfile" +version = "3.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c" +dependencies = [ + "fastrand", + "getrandom 0.3.4", + "once_cell", + "rustix", + "windows-sys 0.61.2", +] + +[[package]] +name = "thin-vec" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "144f754d318415ac792f9d69fc87abbbfc043ce2ef041c60f16ad828f638717d" + +[[package]] +name = "thiserror" +version = "2.0.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" +dependencies = [ + "thiserror-impl", +] + +[[package]] +name = "thiserror-impl" +version = "2.0.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "time" +version = "0.3.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d" +dependencies = [ + "deranged", + "itoa", + "num-conv", + "powerfmt", + "serde", + "time-core", + "time-macros", +] + +[[package]] +name = "time-core" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b" + +[[package]] +name = "time-macros" +version = "0.2.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3" +dependencies = [ + "num-conv", + "time-core", +] + +[[package]] +name = "tiny-skia-path" +version = "0.11.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c9e7fc0c2e86a30b117d0462aa261b72b7a99b7ebd7deb3a14ceda95c5bdc93" +dependencies = [ + "arrayref", + "bytemuck", + "strict-num", +] + +[[package]] +name = "tinystr" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f" +dependencies = [ + "displaydoc", + "serde", + "zerovec 0.10.4", +] + +[[package]] +name = "tinystr" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869" +dependencies = [ + "displaydoc", + "serde_core", + "zerovec 0.11.5", +] + +[[package]] +name = "tinyvec" +version = "1.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa" +dependencies = [ + "tinyvec_macros", +] + +[[package]] +name = "tinyvec_macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" + +[[package]] +name = "toml" +version = "0.8.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362" +dependencies = [ + "serde", + "serde_spanned", + "toml_datetime", + "toml_edit", +] + +[[package]] +name = "toml_datetime" +version = "0.6.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c" +dependencies = [ + "serde", +] + +[[package]] +name = "toml_edit" +version = "0.22.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" +dependencies = [ + "indexmap", + "serde", + "serde_spanned", + "toml_datetime", + "toml_write", + "winnow", +] + +[[package]] +name = "toml_write" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801" + +[[package]] +name = "ttf-parser" +version = "0.25.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d2df906b07856748fa3f6e0ad0cbaa047052d4a7dd609e231c4f72cee8c36f31" +dependencies = [ + "core_maths", +] + +[[package]] +name = "two-face" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "39e51b6e60e545cfdae5a4639ff423818f52372211a8d9a3e892b4b0761f76b2" +dependencies = [ + "serde", + "serde_derive", + "syntect", +] + +[[package]] +name = "typed-arena" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a" + +[[package]] +name = "typst-assets" +version = "0.14.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5613cb719a6222fe9b74027c3625d107767ec187bff26b8fc931cf58942c834f" + +[[package]] +name = "typst-gather" +version = "0.1.2" +dependencies = [ + "clap", + "ecow", + "globset", + "serde", + "tempfile", + "toml", + "typst-kit", + "typst-syntax", + "walkdir", +] + +[[package]] +name = "typst-kit" +version = "0.14.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "31476ec753e080ffdd543a0e74b6d319355449ff3eca3f216634f31cfd09a92a" +dependencies = [ + "dirs", + "ecow", + "env_proxy", + "fastrand", + "flate2", + "fontdb", + "native-tls", + "once_cell", + "openssl", + "serde", + "serde_json", + "tar", + "typst-library", + "typst-syntax", + "typst-timing", + "typst-utils", + "ureq", +] + +[[package]] +name = "typst-library" +version = "0.14.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e276a5de53020c43efe2111ec236252e54ea4480b5ac18063e663dfbe03d9d1b" +dependencies = [ + "az", + "bitflags 2.10.0", + "bumpalo", + "chinese-number", + "ciborium", + "codex", + "comemo", + "csv", + "ecow", + "flate2", + "fontdb", + "glidesort", + "hayagriva", + "hayro-syntax", + "icu_properties 1.5.1", + "icu_provider 1.5.0", + "icu_provider_blob", + "image", + "indexmap", + "kamadak-exif", + "kurbo 0.12.0", + "lipsum", + "memchr", + "palette", + "phf", + "png 0.17.16", + "qcms", + "rayon", + "regex", + "regex-syntax", + "roxmltree", + "rust_decimal", + "rustc-hash", + "rustybuzz", + "serde", + "serde_json", + "serde_yaml", + "siphasher", + "smallvec", + "syntect", + "time", + "toml", + "ttf-parser", + "two-face", + "typed-arena", + "typst-assets", + "typst-macros", + "typst-syntax", + "typst-timing", + "typst-utils", + "unicode-math-class", + "unicode-normalization", + "unicode-segmentation", + "unscanny", + "usvg", + "utf8_iter", + "wasmi", + "xmlwriter", +] + +[[package]] +name = "typst-macros" +version = "0.14.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "141cbd1027129fbf6bda1013f52a264df7befc7388cc8f47767d65e803fd3a59" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "typst-syntax" +version = "0.14.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a95d9192060e23b1e491b0b94dff676acddc92a4d672aeb8ca3890a5a734e879" +dependencies = [ + "ecow", + "rustc-hash", + "serde", + "toml", + "typst-timing", + "typst-utils", + "unicode-ident", + "unicode-math-class", + "unicode-script", + "unicode-segmentation", + "unscanny", +] + +[[package]] +name = "typst-timing" +version = "0.14.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7be94f8faf19841b49574ef5c7fd7a12e2deb7c3d8deba5a596f35d2222024cd" +dependencies = [ + "parking_lot", + "serde", + "serde_json", +] + +[[package]] +name = "typst-utils" +version = "0.14.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a3966c92e8fa48c7ce898130d07000d985f18206d92b250f0f939287fbccdee3" +dependencies = [ + "once_cell", + "portable-atomic", + "rayon", + "rustc-hash", + "siphasher", + "thin-vec", + "unicode-math-class", +] + +[[package]] +name = "unic-langid" +version = "0.9.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a28ba52c9b05311f4f6e62d5d9d46f094bd6e84cb8df7b3ef952748d752a7d05" +dependencies = [ + "unic-langid-impl", + "unic-langid-macros", +] + +[[package]] +name = "unic-langid-impl" +version = "0.9.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dce1bf08044d4b7a94028c93786f8566047edc11110595914de93362559bc658" +dependencies = [ + "serde", + "tinystr 0.8.2", +] + +[[package]] +name = "unic-langid-macros" +version = "0.9.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d5957eb82e346d7add14182a3315a7e298f04e1ba4baac36f7f0dbfedba5fc25" +dependencies = [ + "proc-macro-hack", + "tinystr 0.8.2", + "unic-langid-impl", + "unic-langid-macros-impl", +] + +[[package]] +name = "unic-langid-macros-impl" +version = "0.9.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1249a628de3ad34b821ecb1001355bca3940bcb2f88558f1a8bd82e977f75b5" +dependencies = [ + "proc-macro-hack", + "quote", + "syn", + "unic-langid-impl", +] + +[[package]] +name = "unicode-bidi" +version = "0.3.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5" + +[[package]] +name = "unicode-bidi-mirroring" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5dfa6e8c60bb66d49db113e0125ee8711b7647b5579dc7f5f19c42357ed039fe" + +[[package]] +name = "unicode-ccc" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce61d488bcdc9bc8b5d1772c404828b17fc481c0a582b5581e95fb233aef503e" + +[[package]] +name = "unicode-ident" +version = "1.0.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" + +[[package]] +name = "unicode-math-class" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d246cf599d5fae3c8d56e04b20eb519adb89a8af8d0b0fbcded369aa3647d65" + +[[package]] +name = "unicode-normalization" +version = "0.1.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8" +dependencies = [ + "tinyvec", +] + +[[package]] +name = "unicode-properties" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d" + +[[package]] +name = "unicode-script" +version = "0.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "383ad40bb927465ec0ce7720e033cb4ca06912855fc35db31b5755d0de75b1ee" + +[[package]] +name = "unicode-segmentation" +version = "1.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" + +[[package]] +name = "unicode-vo" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1d386ff53b415b7fe27b50bb44679e2cc4660272694b7b6f3326d8480823a94" + +[[package]] +name = "unsafe-libyaml" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861" + +[[package]] +name = "unscanny" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e9df2af067a7953e9c3831320f35c1cc0600c30d44d9f7a12b01db1cd88d6b47" + +[[package]] +name = "ureq" +version = "2.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d" +dependencies = [ + "base64", + "flate2", + "log", + "native-tls", + "once_cell", + "serde", + "serde_json", + "url", +] + +[[package]] +name = "url" +version = "2.5.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b" +dependencies = [ + "form_urlencoded", + "idna", + "percent-encoding", + "serde", +] + +[[package]] +name = "usvg" +version = "0.45.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "80be9b06fbae3b8b303400ab20778c80bbaf338f563afe567cf3c9eea17b47ef" +dependencies = [ + "base64", + "data-url", + "flate2", + "fontdb", + "imagesize", + "kurbo 0.11.3", + "log", + "pico-args", + "roxmltree", + "rustybuzz", + "simplecss", + "siphasher", + "strict-num", + "svgtypes", + "tiny-skia-path", + "unicode-bidi", + "unicode-script", + "unicode-vo", + "xmlwriter", +] + +[[package]] +name = "utf8_iter" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" + +[[package]] +name = "utf8parse" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" + +[[package]] +name = "vcpkg" +version = "0.2.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" + +[[package]] +name = "version_check" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" + +[[package]] +name = "walkdir" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" +dependencies = [ + "same-file", + "winapi-util", +] + +[[package]] +name = "wasi" +version = "0.11.1+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" + +[[package]] +name = "wasip2" +version = "1.0.1+wasi-0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" +dependencies = [ + "wit-bindgen", +] + +[[package]] +name = "wasmi" +version = "0.51.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb321403ce594274827657a908e13d1d9918aa02257b8bf8391949d9764023ff" +dependencies = [ + "spin", + "wasmi_collections", + "wasmi_core", + "wasmi_ir", + "wasmparser", +] + +[[package]] +name = "wasmi_collections" +version = "0.51.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e9b8e98e45a2a534489f8225e765cbf1cb9a3078072605e58158910cf4749172" + +[[package]] +name = "wasmi_core" +version = "0.51.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c25f375c0cdf14810eab07f532f61f14d4966f09c747a55067fdf3196e8512e6" +dependencies = [ + "libm", +] + +[[package]] +name = "wasmi_ir" +version = "0.51.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "624e2a68a4293ecb8f564260b68394b29cf3b3edba6bce35532889a2cb33c3d9" +dependencies = [ + "wasmi_core", +] + +[[package]] +name = "wasmparser" +version = "0.228.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4abf1132c1fdf747d56bbc1bb52152400c70f336870f968b85e89ea422198ae3" +dependencies = [ + "bitflags 2.10.0", +] + +[[package]] +name = "weezl" +version = "0.1.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88" + +[[package]] +name = "winapi-util" +version = "0.1.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" +dependencies = [ + "windows-sys 0.61.2", +] + +[[package]] +name = "windows-link" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" + +[[package]] +name = "windows-sys" +version = "0.60.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" +dependencies = [ + "windows-targets", +] + +[[package]] +name = "windows-sys" +version = "0.61.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" +dependencies = [ + "windows-link", +] + +[[package]] +name = "windows-targets" +version = "0.53.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" +dependencies = [ + "windows-link", + "windows_aarch64_gnullvm", + "windows_aarch64_msvc", + "windows_i686_gnu", + "windows_i686_gnullvm", + "windows_i686_msvc", + "windows_x86_64_gnu", + "windows_x86_64_gnullvm", + "windows_x86_64_msvc", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" + +[[package]] +name = "windows_i686_gnu" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" + +[[package]] +name = "windows_i686_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" + +[[package]] +name = "winnow" +version = "0.7.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829" +dependencies = [ + "memchr", +] + +[[package]] +name = "wit-bindgen" +version = "0.46.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" + +[[package]] +name = "writeable" +version = "0.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51" + +[[package]] +name = "writeable" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9" + +[[package]] +name = "xattr" +version = "1.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156" +dependencies = [ + "libc", + "rustix", +] + +[[package]] +name = "xmlwriter" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9" + +[[package]] +name = "yaml-rust" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" +dependencies = [ + "linked-hash-map", +] + +[[package]] +name = "yoke" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40" +dependencies = [ + "serde", + "stable_deref_trait", + "yoke-derive 0.7.5", + "zerofrom", +] + +[[package]] +name = "yoke" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954" +dependencies = [ + "stable_deref_trait", + "yoke-derive 0.8.1", + "zerofrom", +] + +[[package]] +name = "yoke-derive" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154" +dependencies = [ + "proc-macro2", + "quote", + "syn", + "synstructure", +] + +[[package]] +name = "yoke-derive" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d" +dependencies = [ + "proc-macro2", + "quote", + "syn", + "synstructure", +] + +[[package]] +name = "zerocopy" +version = "0.8.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3" +dependencies = [ + "zerocopy-derive", +] + +[[package]] +name = "zerocopy-derive" +version = "0.8.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "zerofrom" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" +dependencies = [ + "zerofrom-derive", +] + +[[package]] +name = "zerofrom-derive" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" +dependencies = [ + "proc-macro2", + "quote", + "syn", + "synstructure", +] + +[[package]] +name = "zerotrie" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fb594dd55d87335c5f60177cee24f19457a5ec10a065e0a3014722ad252d0a1f" +dependencies = [ + "displaydoc", + "litemap 0.7.5", + "serde", + "zerovec 0.10.4", +] + +[[package]] +name = "zerotrie" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851" +dependencies = [ + "displaydoc", + "yoke 0.8.1", + "zerofrom", +] + +[[package]] +name = "zerovec" +version = "0.10.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079" +dependencies = [ + "serde", + "yoke 0.7.5", + "zerofrom", + "zerovec-derive 0.10.3", +] + +[[package]] +name = "zerovec" +version = "0.11.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002" +dependencies = [ + "serde", + "yoke 0.8.1", + "zerofrom", + "zerovec-derive 0.11.2", +] + +[[package]] +name = "zerovec-derive" +version = "0.10.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "zerovec-derive" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "zmij" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6d6085d62852e35540689d1f97ad663e3971fc19cf5eceab364d62c646ea167" + +[[package]] +name = "zune-core" +version = "0.4.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a" + +[[package]] +name = "zune-core" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "111f7d9820f05fd715df3144e254d6fc02ee4088b0644c0ffd0efc9e6d9d2773" + +[[package]] +name = "zune-jpeg" +version = "0.4.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "29ce2c8a9384ad323cf564b67da86e21d3cfdff87908bc1223ed5c99bc792713" +dependencies = [ + "zune-core 0.4.12", +] + +[[package]] +name = "zune-jpeg" +version = "0.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e35aee689668bf9bd6f6f3a6c60bb29ba1244b3b43adfd50edd554a371da37d5" +dependencies = [ + "zune-core 0.5.0", +] diff --git a/package/typst-gather/Cargo.toml b/package/typst-gather/Cargo.toml new file mode 100644 index 00000000000..90316d4a382 --- /dev/null +++ b/package/typst-gather/Cargo.toml @@ -0,0 +1,18 @@ +[package] +name = "typst-gather" +version = "0.1.2" +edition = "2021" +rust-version = "1.81" + +[dependencies] +typst-kit = { version = "0.14.2", features = ["packages"] } +typst-syntax = "0.14.2" +ecow = "0.2" +serde = { version = "1", features = ["derive"] } +clap = { version = "4", features = ["derive"] } +toml = "0.8" +walkdir = "2" +globset = "0.4" + +[dev-dependencies] +tempfile = "3" diff --git a/package/typst-gather/README.md b/package/typst-gather/README.md new file mode 100644 index 00000000000..8efab9c0ca7 --- /dev/null +++ b/package/typst-gather/README.md @@ -0,0 +1,62 @@ +# typst-gather + +Gather Typst packages locally for offline/hermetic builds. + +## Install + +```bash +cargo install --path . +``` + +## Usage + +```bash +typst-gather packages.toml +``` + +Then set `TYPST_PACKAGE_CACHE_PATH` to the destination directory when running Typst. + +## TOML format + +```toml +destination = "/path/to/packages" + +# Single path +discover = "/path/to/templates" + +# Or array of paths (files or directories) +discover = ["template.typ", "typst-show.typ", "/path/to/dir"] + +[preview] +cetz = "0.4.1" +fontawesome = "0.5.0" + +[local] +my-template = "/path/to/src" +``` + +- `destination` - Required. Directory where packages will be gathered. +- `discover` - Optional. Paths to scan for imports. Can be: + - A single string path + - An array of paths + - Each path can be a `.typ` file or a directory (scans `.typ` files non-recursively) +- `[preview]` packages are downloaded from Typst Universe (cached - skipped if already present) +- `[local]` packages are copied from the specified directory (always fresh - version read from `typst.toml`) + +## Features + +- Recursively resolves `@preview` dependencies from `#import` statements +- Uses Typst's own parser for reliable import detection +- Discover mode scans .typ files for imports +- Local packages always overwrite (clean slate) +- Preview packages skip if already cached + +## Quarto Integration + +When used with Quarto extensions, you can run: + +```bash +quarto call typst-gather +``` + +This will auto-detect `.typ` files from `_extension.yml` (template and template-partials) and gather their dependencies. diff --git a/package/typst-gather/example-packages.toml b/package/typst-gather/example-packages.toml new file mode 100644 index 00000000000..da19f2f95e4 --- /dev/null +++ b/package/typst-gather/example-packages.toml @@ -0,0 +1,8 @@ +destination = "/path/to/cache" + +[preview] +cetz = "0.4.1" +tablex = "0.0.8" + +[local] +my-pkg = "/path/to/my-pkg" diff --git a/package/typst-gather/src/lib.rs b/package/typst-gather/src/lib.rs new file mode 100644 index 00000000000..1370620d6ab --- /dev/null +++ b/package/typst-gather/src/lib.rs @@ -0,0 +1,833 @@ +//! typst-gather: Gather Typst packages locally for offline/hermetic builds. + +use std::collections::HashMap; +use std::collections::HashSet; +use std::env; +use std::path::{Path, PathBuf}; + +use ecow::EcoString; +use globset::{Glob, GlobSetBuilder}; +use serde::Deserialize; +use typst_kit::download::{Downloader, ProgressSink}; +use typst_kit::package::PackageStorage; +use typst_syntax::ast; +use typst_syntax::package::{PackageManifest, PackageSpec, PackageVersion}; +use typst_syntax::SyntaxNode; +use walkdir::WalkDir; + +/// Statistics about gathering operations. +#[derive(Debug, Default, PartialEq, Eq)] +pub struct Stats { + pub downloaded: usize, + pub copied: usize, + pub skipped: usize, + pub failed: usize, +} + +/// Result of a gather operation. +#[derive(Debug, Default)] +pub struct GatherResult { + pub stats: Stats, + /// @local imports discovered during scanning that are not configured in [local] section. + /// Each entry is (package_name, source_file_path). + pub unconfigured_local: Vec<(String, String)>, +} + +/// TOML configuration format. +/// +/// ```toml +/// destination = "/path/to/packages" +/// discover = ["/path/to/templates", "/path/to/other.typ"] +/// +/// [preview] +/// cetz = "0.4.1" +/// fletcher = "0.5.3" +/// +/// [local] +/// my-pkg = "/path/to/pkg" +/// ``` +/// Helper enum for deserializing string or array of strings +#[derive(Debug, Deserialize)] +#[serde(untagged)] +enum StringOrVec { + Single(String), + Multiple(Vec), +} + +impl Default for StringOrVec { + fn default() -> Self { + StringOrVec::Multiple(Vec::new()) + } +} + +impl From for Vec { + fn from(value: StringOrVec) -> Self { + match value { + StringOrVec::Single(s) => vec![PathBuf::from(s)], + StringOrVec::Multiple(v) => v.into_iter().map(PathBuf::from).collect(), + } + } +} + +/// Raw config for deserialization +#[derive(Debug, Deserialize, Default)] +struct RawConfig { + /// Root directory for resolving relative paths (discover, destination) + rootdir: Option, + destination: Option, + #[serde(default)] + discover: Option, + #[serde(default)] + preview: HashMap, + #[serde(default)] + local: HashMap, +} + +#[derive(Debug, Default)] +pub struct Config { + /// Root directory for resolving relative paths (discover, destination). + /// If set, discover and destination paths are resolved relative to this. + pub rootdir: Option, + /// Destination directory for gathered packages + pub destination: Option, + /// Paths to scan for imports. Can be directories (scans .typ files) or individual .typ files. + /// Accepts either a single path or an array of paths. + pub discover: Vec, + pub preview: HashMap, + pub local: HashMap, +} + +impl From for Config { + fn from(raw: RawConfig) -> Self { + Config { + rootdir: raw.rootdir, + destination: raw.destination, + discover: raw.discover.map(Into::into).unwrap_or_default(), + preview: raw.preview, + local: raw.local, + } + } +} + +/// A resolved package entry ready for gathering. +#[derive(Debug, Clone, PartialEq, Eq)] +pub enum PackageEntry { + Preview { name: String, version: String }, + Local { name: String, dir: PathBuf }, +} + +impl Config { + /// Parse a TOML configuration string. + pub fn parse(content: &str) -> Result { + let raw: RawConfig = toml::from_str(content)?; + Ok(raw.into()) + } + + /// Convert config into a list of package entries. + pub fn into_entries(self) -> Vec { + let mut entries = Vec::new(); + + for (name, version) in self.preview { + entries.push(PackageEntry::Preview { name, version }); + } + + for (name, dir) in self.local { + entries.push(PackageEntry::Local { + name, + dir: PathBuf::from(dir), + }); + } + + entries + } +} + +/// Context for gathering operations, holding shared state. +struct GatherContext<'a> { + storage: PackageStorage, + dest: &'a Path, + configured_local: &'a HashSet, + processed: HashSet, + stats: Stats, + /// @local imports discovered during scanning (name -> source_file) + discovered_local: HashMap, +} + +impl<'a> GatherContext<'a> { + fn new(dest: &'a Path, configured_local: &'a HashSet) -> Self { + Self { + storage: PackageStorage::new( + Some(dest.to_path_buf()), + None, + Downloader::new("typst-gather/0.1.0"), + ), + dest, + configured_local, + processed: HashSet::new(), + stats: Stats::default(), + discovered_local: HashMap::new(), + } + } +} + +/// Gather packages to the destination directory. +pub fn gather_packages( + dest: &Path, + entries: Vec, + discover_paths: &[PathBuf], + configured_local: &HashSet, +) -> GatherResult { + let mut ctx = GatherContext::new(dest, configured_local); + + // First, process discover paths + for path in discover_paths { + discover_imports(&mut ctx, path); + } + + // Then process explicit entries + for entry in entries { + match entry { + PackageEntry::Preview { name, version } => { + cache_preview(&mut ctx, &name, &version); + } + PackageEntry::Local { name, dir } => { + gather_local(&mut ctx, &name, &dir); + } + } + } + + // Find @local imports that aren't configured + let unconfigured_local: Vec<(String, String)> = ctx.discovered_local + .into_iter() + .filter(|(name, _)| !ctx.configured_local.contains(name)) + .collect(); + + GatherResult { + stats: ctx.stats, + unconfigured_local, + } +} + +/// Scan a path for imports. If it's a directory, scans .typ files in it (non-recursive). +/// If it's a file, scans that file directly. +fn discover_imports(ctx: &mut GatherContext, path: &Path) { + if path.is_file() { + // Single file + if path.extension().is_some_and(|e| e == "typ") { + println!("Discovering imports in {}...", display_path(path)); + scan_file_for_imports(ctx, path); + } + } else if path.is_dir() { + // Directory - scan .typ files (non-recursive) + println!("Discovering imports in {}...", display_path(path)); + + let entries = match std::fs::read_dir(path) { + Ok(e) => e, + Err(e) => { + eprintln!(" Failed to read directory: {e}"); + ctx.stats.failed += 1; + return; + } + }; + + for entry in entries.flatten() { + let file_path = entry.path(); + if file_path.is_file() && file_path.extension().is_some_and(|e| e == "typ") { + scan_file_for_imports(ctx, &file_path); + } + } + } else { + eprintln!("Warning: discover path does not exist: {}", display_path(path)); + } +} + +/// Scan a single .typ file for @preview and @local imports. +/// @preview imports are cached, @local imports are tracked for later warning. +fn scan_file_for_imports(ctx: &mut GatherContext, path: &Path) { + if let Ok(content) = std::fs::read_to_string(path) { + let mut imports = Vec::new(); + collect_imports(&typst_syntax::parse(&content), &mut imports); + + let source_file = path.file_name() + .map(|s| s.to_string_lossy().to_string()) + .unwrap_or_else(|| path.display().to_string()); + + for spec in imports { + if spec.namespace == "preview" { + cache_preview_with_deps(ctx, &spec); + } else if spec.namespace == "local" { + // Track @local imports (only first occurrence per package name) + ctx.discovered_local.entry(spec.name.to_string()) + .or_insert(source_file.clone()); + } + } + } +} + +fn cache_preview(ctx: &mut GatherContext, name: &str, version_str: &str) { + let Ok(version): Result = version_str.parse() else { + eprintln!("Invalid version '{version_str}' for @preview/{name}"); + ctx.stats.failed += 1; + return; + }; + + let spec = PackageSpec { + namespace: EcoString::from("preview"), + name: EcoString::from(name), + version, + }; + + cache_preview_with_deps(ctx, &spec); +} + +/// Default exclude patterns for local packages (common non-package files). +const DEFAULT_EXCLUDES: &[&str] = &[ + ".git", + ".git/**", + ".github", + ".github/**", + ".gitignore", + ".gitattributes", + ".vscode", + ".vscode/**", + ".idea", + ".idea/**", + "*.bak", + "*.swp", + "*~", +]; + +fn gather_local(ctx: &mut GatherContext, name: &str, src_dir: &Path) { + // Read typst.toml to get version (and validate name) + let manifest_path = src_dir.join("typst.toml"); + let manifest: PackageManifest = match std::fs::read_to_string(&manifest_path) + .map_err(|e| e.to_string()) + .and_then(|s| toml::from_str(&s).map_err(|e| e.to_string())) + { + Ok(m) => m, + Err(e) => { + eprintln!("Error reading typst.toml for @local/{name}: {e}"); + ctx.stats.failed += 1; + return; + } + }; + + // Validate name matches + if manifest.package.name.as_str() != name { + eprintln!( + "Name mismatch for @local/{name}: typst.toml has '{}'", + manifest.package.name + ); + ctx.stats.failed += 1; + return; + } + + let version = manifest.package.version; + let dest_dir = ctx.dest.join(format!("local/{name}/{version}")); + + println!("Copying @local/{name}:{version}..."); + + // Clean slate: remove destination if exists + if dest_dir.exists() { + if let Err(e) = std::fs::remove_dir_all(&dest_dir) { + eprintln!(" Failed to remove existing dir: {e}"); + ctx.stats.failed += 1; + return; + } + } + + // Build exclude pattern matcher from defaults + manifest excludes + let mut builder = GlobSetBuilder::new(); + for pattern in DEFAULT_EXCLUDES { + if let Ok(glob) = Glob::new(pattern) { + builder.add(glob); + } + } + // Add manifest excludes if present + for pattern in &manifest.package.exclude { + if let Ok(glob) = Glob::new(pattern.as_str()) { + builder.add(glob); + } + } + let excludes = builder.build().unwrap_or_else(|_| GlobSetBuilder::new().build().unwrap()); + + // Copy files, respecting exclude patterns + if let Err(e) = copy_filtered(src_dir, &dest_dir, &excludes) { + eprintln!(" Failed to copy: {e}"); + ctx.stats.failed += 1; + return; + } + + println!(" -> {}", display_path(&dest_dir)); + ctx.stats.copied += 1; + + // Mark as processed + let spec = PackageSpec { + namespace: EcoString::from("local"), + name: EcoString::from(name), + version, + }; + ctx.processed.insert(spec.to_string()); + + // Scan for @preview dependencies + scan_deps(ctx, &dest_dir); +} + +/// Copy directory contents, excluding files that match the exclude patterns. +fn copy_filtered( + src: &Path, + dest: &Path, + excludes: &globset::GlobSet, +) -> std::io::Result<()> { + std::fs::create_dir_all(dest)?; + + for entry in WalkDir::new(src).into_iter().filter_map(|e| e.ok()) { + let path = entry.path(); + let relative = path.strip_prefix(src).unwrap_or(path); + + // Check if this path matches any exclude pattern + if excludes.is_match(relative) { + continue; + } + + let dest_path = dest.join(relative); + + if path.is_dir() { + std::fs::create_dir_all(&dest_path)?; + } else if path.is_file() { + if let Some(parent) = dest_path.parent() { + std::fs::create_dir_all(parent)?; + } + std::fs::copy(path, &dest_path)?; + } + } + + Ok(()) +} + +fn cache_preview_with_deps(ctx: &mut GatherContext, spec: &PackageSpec) { + // Skip @preview packages that are configured as @local (use local version instead) + if ctx.configured_local.contains(spec.name.as_str()) { + return; + } + + let key = spec.to_string(); + if !ctx.processed.insert(key) { + return; + } + + let subdir = format!("{}/{}/{}", spec.namespace, spec.name, spec.version); + let cached_path = ctx.storage.package_cache_path().map(|p| p.join(&subdir)); + + if cached_path.as_ref().is_some_and(|p| p.exists()) { + println!("Skipping {spec} (cached)"); + ctx.stats.skipped += 1; + scan_deps(ctx, cached_path.as_ref().unwrap()); + return; + } + + println!("Downloading {spec}..."); + match ctx.storage.prepare_package(spec, &mut ProgressSink) { + Ok(path) => { + println!(" -> {}", display_path(&path)); + ctx.stats.downloaded += 1; + scan_deps(ctx, &path); + } + Err(e) => { + eprintln!(" Failed: {e:?}"); + ctx.stats.failed += 1; + } + } +} + +fn scan_deps(ctx: &mut GatherContext, dir: &Path) { + for spec in find_imports(dir) { + if spec.namespace == "preview" { + cache_preview_with_deps(ctx, &spec); + } + } +} + +/// Display a path relative to the current working directory. +fn display_path(path: &Path) -> String { + if let Ok(cwd) = env::current_dir() { + if let Ok(relative) = path.strip_prefix(&cwd) { + return relative.display().to_string(); + } + } + path.display().to_string() +} + +/// Find all package imports in `.typ` files under a directory. +pub fn find_imports(dir: &Path) -> Vec { + let mut imports = Vec::new(); + for entry in WalkDir::new(dir).into_iter().flatten() { + if entry.path().extension().is_some_and(|e| e == "typ") { + if let Ok(content) = std::fs::read_to_string(entry.path()) { + collect_imports(&typst_syntax::parse(&content), &mut imports); + } + } + } + imports +} + +/// Extract package imports from a Typst syntax tree. +pub fn collect_imports(node: &SyntaxNode, imports: &mut Vec) { + if let Some(import) = node.cast::() { + if let Some(spec) = try_extract_spec(import.source()) { + imports.push(spec); + } + } + if let Some(include) = node.cast::() { + if let Some(spec) = try_extract_spec(include.source()) { + imports.push(spec); + } + } + for child in node.children() { + collect_imports(child, imports); + } +} + +/// Try to extract a PackageSpec from an expression (if it's an `@namespace/name:version` string). +pub fn try_extract_spec(expr: ast::Expr) -> Option { + if let ast::Expr::Str(s) = expr { + let val = s.get(); + if val.starts_with('@') { + return val.parse().ok(); + } + } + None +} + +#[cfg(test)] +mod tests { + use super::*; + + mod config_parsing { + use super::*; + + #[test] + fn empty_config() { + let config = Config::parse("").unwrap(); + assert!(config.destination.is_none()); + assert!(config.discover.is_empty()); + assert!(config.preview.is_empty()); + assert!(config.local.is_empty()); + } + + #[test] + fn destination_only() { + let toml = r#"destination = "/path/to/cache""#; + let config = Config::parse(toml).unwrap(); + assert_eq!(config.destination, Some(PathBuf::from("/path/to/cache"))); + assert!(config.discover.is_empty()); + assert!(config.preview.is_empty()); + assert!(config.local.is_empty()); + } + + #[test] + fn with_discover_string() { + let toml = r#" +destination = "/cache" +discover = "/path/to/templates" +"#; + let config = Config::parse(toml).unwrap(); + assert_eq!(config.destination, Some(PathBuf::from("/cache"))); + assert_eq!(config.discover, vec![PathBuf::from("/path/to/templates")]); + } + + #[test] + fn with_discover_array() { + let toml = r#" +destination = "/cache" +discover = ["/path/to/templates", "template.typ", "other.typ"] +"#; + let config = Config::parse(toml).unwrap(); + assert_eq!(config.destination, Some(PathBuf::from("/cache"))); + assert_eq!( + config.discover, + vec![ + PathBuf::from("/path/to/templates"), + PathBuf::from("template.typ"), + PathBuf::from("other.typ"), + ] + ); + } + + #[test] + fn preview_only() { + let toml = r#" +destination = "/cache" + +[preview] +cetz = "0.4.1" +fletcher = "0.5.3" +"#; + let config = Config::parse(toml).unwrap(); + assert_eq!(config.destination, Some(PathBuf::from("/cache"))); + assert_eq!(config.preview.len(), 2); + assert_eq!(config.preview.get("cetz"), Some(&"0.4.1".to_string())); + assert_eq!(config.preview.get("fletcher"), Some(&"0.5.3".to_string())); + assert!(config.local.is_empty()); + } + + #[test] + fn local_only() { + let toml = r#" +destination = "/cache" + +[local] +my-pkg = "/path/to/pkg" +other = "../relative/path" +"#; + let config = Config::parse(toml).unwrap(); + assert!(config.preview.is_empty()); + assert_eq!(config.local.len(), 2); + assert_eq!(config.local.get("my-pkg"), Some(&"/path/to/pkg".to_string())); + assert_eq!(config.local.get("other"), Some(&"../relative/path".to_string())); + } + + #[test] + fn mixed_config() { + let toml = r#" +destination = "/cache" + +[preview] +cetz = "0.4.1" + +[local] +my-pkg = "/path/to/pkg" +"#; + let config = Config::parse(toml).unwrap(); + assert_eq!(config.destination, Some(PathBuf::from("/cache"))); + assert_eq!(config.preview.len(), 1); + assert_eq!(config.local.len(), 1); + } + + #[test] + fn into_entries() { + let toml = r#" +destination = "/cache" + +[preview] +cetz = "0.4.1" + +[local] +my-pkg = "/path/to/pkg" +"#; + let config = Config::parse(toml).unwrap(); + let entries = config.into_entries(); + assert_eq!(entries.len(), 2); + + let has_preview = entries.iter().any(|e| { + matches!(e, PackageEntry::Preview { name, version } + if name == "cetz" && version == "0.4.1") + }); + let has_local = entries.iter().any(|e| { + matches!(e, PackageEntry::Local { name, dir } + if name == "my-pkg" && dir == Path::new("/path/to/pkg")) + }); + assert!(has_preview); + assert!(has_local); + } + + #[test] + fn invalid_toml() { + let result = Config::parse("not valid toml [[["); + assert!(result.is_err()); + } + + #[test] + fn extra_fields_ignored() { + let toml = r#" +destination = "/cache" + +[preview] +cetz = "0.4.1" + +[unknown_section] +foo = "bar" +"#; + // Should not error on unknown sections + let config = Config::parse(toml).unwrap(); + assert_eq!(config.preview.len(), 1); + } + } + + mod import_parsing { + use super::*; + + fn parse_imports(code: &str) -> Vec { + let mut imports = Vec::new(); + collect_imports(&typst_syntax::parse(code), &mut imports); + imports + } + + #[test] + fn simple_import() { + let imports = parse_imports(r#"#import "@preview/cetz:0.4.1""#); + assert_eq!(imports.len(), 1); + assert_eq!(imports[0].namespace, "preview"); + assert_eq!(imports[0].name, "cetz"); + assert_eq!(imports[0].version.to_string(), "0.4.1"); + } + + #[test] + fn import_with_items() { + let imports = parse_imports(r#"#import "@preview/cetz:0.4.1": canvas, draw"#); + assert_eq!(imports.len(), 1); + assert_eq!(imports[0].name, "cetz"); + } + + #[test] + fn multiple_imports() { + let code = r#" +#import "@preview/cetz:0.4.1" +#import "@preview/fletcher:0.5.3" +"#; + let imports = parse_imports(code); + assert_eq!(imports.len(), 2); + } + + #[test] + fn include_statement() { + let imports = parse_imports(r#"#include "@preview/template:1.0.0""#); + assert_eq!(imports.len(), 1); + assert_eq!(imports[0].name, "template"); + } + + #[test] + fn local_import_ignored_in_extract() { + // Local imports are valid but won't be recursively fetched + let imports = parse_imports(r#"#import "@local/my-pkg:1.0.0""#); + assert_eq!(imports.len(), 1); + assert_eq!(imports[0].namespace, "local"); + } + + #[test] + fn relative_import_ignored() { + let imports = parse_imports(r#"#import "utils.typ""#); + assert_eq!(imports.len(), 0); + } + + #[test] + fn no_imports() { + let imports = parse_imports(r#"= Hello World"#); + assert_eq!(imports.len(), 0); + } + + #[test] + fn nested_in_function() { + let code = r#" +#let setup() = { + import "@preview/cetz:0.4.1" +} +"#; + let imports = parse_imports(code); + assert_eq!(imports.len(), 1); + } + + #[test] + fn invalid_package_spec_ignored() { + // Missing version + let imports = parse_imports(r#"#import "@preview/cetz""#); + assert_eq!(imports.len(), 0); + } + + #[test] + fn complex_document() { + let code = r#" +#import "@preview/cetz:0.4.1": canvas +#import "@preview/fletcher:0.5.3": diagram, node, edge +#import "local-file.typ": helper + += My Document + +#include "@preview/template:1.0.0" + +Some content here. + +#let f() = { + import "@preview/codly:1.2.0" +} +"#; + let imports = parse_imports(code); + assert_eq!(imports.len(), 4); + + let names: Vec<_> = imports.iter().map(|s| s.name.as_str()).collect(); + assert!(names.contains(&"cetz")); + assert!(names.contains(&"fletcher")); + assert!(names.contains(&"template")); + assert!(names.contains(&"codly")); + } + } + + mod stats { + use super::*; + + #[test] + fn default_stats() { + let stats = Stats::default(); + assert_eq!(stats.downloaded, 0); + assert_eq!(stats.copied, 0); + assert_eq!(stats.skipped, 0); + assert_eq!(stats.failed, 0); + } + } + + mod local_override { + use super::*; + + /// When a package is configured in [local], @preview imports of the same + /// package name should be skipped. This handles the case where a local + /// package contains template examples that import from @preview. + #[test] + fn configured_local_contains_check() { + let mut configured_local = HashSet::new(); + configured_local.insert("my-pkg".to_string()); + configured_local.insert("other-pkg".to_string()); + + // These should be skipped (configured as local) + assert!(configured_local.contains("my-pkg")); + assert!(configured_local.contains("other-pkg")); + + // These should NOT be skipped (not configured) + assert!(!configured_local.contains("cetz")); + assert!(!configured_local.contains("fletcher")); + } + } + + mod copy_filtering { + use super::*; + + #[test] + fn default_excludes_match_git() { + let mut builder = GlobSetBuilder::new(); + for pattern in DEFAULT_EXCLUDES { + builder.add(Glob::new(pattern).unwrap()); + } + let excludes = builder.build().unwrap(); + + // Should match .git and contents + assert!(excludes.is_match(".git")); + assert!(excludes.is_match(".git/config")); + assert!(excludes.is_match(".git/objects/pack/foo")); + + // Should match .github + assert!(excludes.is_match(".github")); + assert!(excludes.is_match(".github/workflows/ci.yml")); + + // Should match editor files + assert!(excludes.is_match(".gitignore")); + assert!(excludes.is_match("foo.bak")); + assert!(excludes.is_match("foo.swp")); + assert!(excludes.is_match("foo~")); + + // Should NOT match normal files + assert!(!excludes.is_match("lib.typ")); + assert!(!excludes.is_match("typst.toml")); + assert!(!excludes.is_match("src/main.typ")); + assert!(!excludes.is_match("template/main.typ")); + } + } +} diff --git a/package/typst-gather/src/main.rs b/package/typst-gather/src/main.rs new file mode 100644 index 00000000000..07d951022a9 --- /dev/null +++ b/package/typst-gather/src/main.rs @@ -0,0 +1,87 @@ +use std::collections::HashSet; +use std::path::PathBuf; +use std::process::ExitCode; + +use clap::Parser; +use typst_gather::{gather_packages, Config}; + +#[derive(Parser)] +#[command(version, about = "Gather Typst packages to a local directory")] +struct Args { + /// TOML file specifying packages to gather + spec_file: PathBuf, +} + +fn main() -> ExitCode { + let args = Args::parse(); + + let content = match std::fs::read_to_string(&args.spec_file) { + Ok(c) => c, + Err(e) => { + eprintln!("Error reading spec file: {e}"); + return ExitCode::FAILURE; + } + }; + + let config = match Config::parse(&content) { + Ok(c) => c, + Err(e) => { + eprintln!("Error parsing spec file: {e}"); + return ExitCode::FAILURE; + } + }; + + let dest = match &config.destination { + Some(d) => d.clone(), + None => { + eprintln!("Error: 'destination' field is required in spec file"); + return ExitCode::FAILURE; + } + }; + + // Resolve paths relative to rootdir if specified + let rootdir = config.rootdir.clone(); + let dest = match &rootdir { + Some(root) => root.join(&dest), + None => dest, + }; + let discover: Vec = config + .discover + .iter() + .map(|p| match &rootdir { + Some(root) => root.join(p), + None => p.clone(), + }) + .collect(); + + // Build set of configured local packages + let configured_local: HashSet = config.local.keys().cloned().collect(); + + let entries = config.into_entries(); + let result = gather_packages(&dest, entries, &discover, &configured_local); + + // Check for unconfigured @local imports FIRST (this is an error) + if !result.unconfigured_local.is_empty() { + eprintln!("\nError: Found @local imports not configured in [local] section:"); + for (name, source_file) in &result.unconfigured_local { + eprintln!(" - {name} (in {source_file})"); + } + eprintln!("\nAdd them to your config file:"); + eprintln!(" [local]"); + for (name, _) in &result.unconfigured_local { + eprintln!(" {name} = \"/path/to/{name}\""); + } + return ExitCode::FAILURE; + } + + println!( + "\nDone: {} downloaded, {} copied, {} skipped, {} failed", + result.stats.downloaded, result.stats.copied, result.stats.skipped, result.stats.failed + ); + + if result.stats.failed > 0 { + ExitCode::FAILURE + } else { + ExitCode::SUCCESS + } +} diff --git a/package/typst-gather/tests/integration.rs b/package/typst-gather/tests/integration.rs new file mode 100644 index 00000000000..1d4c09e1198 --- /dev/null +++ b/package/typst-gather/tests/integration.rs @@ -0,0 +1,543 @@ +//! Integration tests for typst-gather. +//! +//! These tests verify the full gathering workflow including: +//! - Local package copying +//! - Dependency scanning from .typ files +//! - Preview package caching (requires network) + +use std::collections::HashSet; +use std::fs; +use std::path::Path; + +use tempfile::TempDir; +use typst_gather::{gather_packages, find_imports, Config, PackageEntry}; + +/// Helper to create a minimal local package with typst.toml +fn create_local_package(dir: &Path, name: &str, version: &str, typ_content: Option<&str>) { + fs::create_dir_all(dir).unwrap(); + + let manifest = format!( + r#"[package] +name = "{name}" +version = "{version}" +entrypoint = "lib.typ" +"# + ); + fs::write(dir.join("typst.toml"), manifest).unwrap(); + + let content = typ_content.unwrap_or("// Empty package\n"); + fs::write(dir.join("lib.typ"), content).unwrap(); +} + +mod local_packages { + use super::*; + + #[test] + fn cache_single_local_package() { + let src_dir = TempDir::new().unwrap(); + let cache_dir = TempDir::new().unwrap(); + + create_local_package(src_dir.path(), "my-pkg", "1.0.0", None); + + let entries = vec![PackageEntry::Local { + name: "my-pkg".to_string(), + dir: src_dir.path().to_path_buf(), + }]; + + let configured_local: HashSet = ["my-pkg".to_string()].into_iter().collect(); + let result = gather_packages(cache_dir.path(), entries, &[], &configured_local); + + assert_eq!(result.stats.copied, 1); + assert_eq!(result.stats.failed, 0); + + // Verify package was copied to correct location + let cached = cache_dir.path().join("local/my-pkg/1.0.0"); + assert!(cached.exists()); + assert!(cached.join("typst.toml").exists()); + assert!(cached.join("lib.typ").exists()); + } + + #[test] + fn cache_local_package_overwrites_existing() { + let src_dir = TempDir::new().unwrap(); + let cache_dir = TempDir::new().unwrap(); + + // Create initial version + create_local_package(src_dir.path(), "my-pkg", "1.0.0", Some("// v1")); + + let entries = vec![PackageEntry::Local { + name: "my-pkg".to_string(), + dir: src_dir.path().to_path_buf(), + }]; + + let configured_local: HashSet = ["my-pkg".to_string()].into_iter().collect(); + gather_packages(cache_dir.path(), entries.clone(), &[], &configured_local); + + // Update source + fs::write(src_dir.path().join("lib.typ"), "// v2").unwrap(); + + // Cache again + let result = gather_packages(cache_dir.path(), entries, &[], &configured_local); + assert_eq!(result.stats.copied, 1); + + // Verify new content + let cached_lib = cache_dir.path().join("local/my-pkg/1.0.0/lib.typ"); + let content = fs::read_to_string(cached_lib).unwrap(); + assert_eq!(content, "// v2"); + } + + #[test] + fn cache_multiple_local_packages() { + let src1 = TempDir::new().unwrap(); + let src2 = TempDir::new().unwrap(); + let cache_dir = TempDir::new().unwrap(); + + create_local_package(src1.path(), "pkg-one", "1.0.0", None); + create_local_package(src2.path(), "pkg-two", "2.0.0", None); + + let entries = vec![ + PackageEntry::Local { + name: "pkg-one".to_string(), + dir: src1.path().to_path_buf(), + }, + PackageEntry::Local { + name: "pkg-two".to_string(), + dir: src2.path().to_path_buf(), + }, + ]; + + let configured_local: HashSet = ["pkg-one".to_string(), "pkg-two".to_string()].into_iter().collect(); + let result = gather_packages(cache_dir.path(), entries, &[], &configured_local); + + assert_eq!(result.stats.copied, 2); + assert!(cache_dir.path().join("local/pkg-one/1.0.0").exists()); + assert!(cache_dir.path().join("local/pkg-two/2.0.0").exists()); + } + + #[test] + fn fail_on_name_mismatch() { + let src_dir = TempDir::new().unwrap(); + let cache_dir = TempDir::new().unwrap(); + + // Create package with different name in manifest + create_local_package(src_dir.path(), "actual-name", "1.0.0", None); + + let entries = vec![PackageEntry::Local { + name: "wrong-name".to_string(), + dir: src_dir.path().to_path_buf(), + }]; + + let configured_local: HashSet = ["wrong-name".to_string()].into_iter().collect(); + let result = gather_packages(cache_dir.path(), entries, &[], &configured_local); + + assert_eq!(result.stats.copied, 0); + assert_eq!(result.stats.failed, 1); + } + + #[test] + fn fail_on_missing_manifest() { + let src_dir = TempDir::new().unwrap(); + let cache_dir = TempDir::new().unwrap(); + + // Create directory without typst.toml + fs::create_dir_all(src_dir.path()).unwrap(); + fs::write(src_dir.path().join("lib.typ"), "// no manifest").unwrap(); + + let entries = vec![PackageEntry::Local { + name: "my-pkg".to_string(), + dir: src_dir.path().to_path_buf(), + }]; + + let configured_local: HashSet = ["my-pkg".to_string()].into_iter().collect(); + let result = gather_packages(cache_dir.path(), entries, &[], &configured_local); + + assert_eq!(result.stats.copied, 0); + assert_eq!(result.stats.failed, 1); + } + + #[test] + fn fail_on_nonexistent_directory() { + let cache_dir = TempDir::new().unwrap(); + + let entries = vec![PackageEntry::Local { + name: "my-pkg".to_string(), + dir: "/nonexistent/path/to/package".into(), + }]; + + let configured_local: HashSet = ["my-pkg".to_string()].into_iter().collect(); + let result = gather_packages(cache_dir.path(), entries, &[], &configured_local); + + assert_eq!(result.stats.copied, 0); + assert_eq!(result.stats.failed, 1); + } + + #[test] + fn preserves_subdirectories() { + let src_dir = TempDir::new().unwrap(); + let cache_dir = TempDir::new().unwrap(); + + create_local_package(src_dir.path(), "my-pkg", "1.0.0", None); + + // Add subdirectory with files + let sub = src_dir.path().join("src/utils"); + fs::create_dir_all(&sub).unwrap(); + fs::write(sub.join("helper.typ"), "// helper").unwrap(); + + let entries = vec![PackageEntry::Local { + name: "my-pkg".to_string(), + dir: src_dir.path().to_path_buf(), + }]; + + let configured_local: HashSet = ["my-pkg".to_string()].into_iter().collect(); + let result = gather_packages(cache_dir.path(), entries, &[], &configured_local); + + assert_eq!(result.stats.copied, 1); + + let cached_helper = cache_dir + .path() + .join("local/my-pkg/1.0.0/src/utils/helper.typ"); + assert!(cached_helper.exists()); + } +} + +mod dependency_scanning { + use super::*; + + #[test] + fn find_imports_in_single_file() { + let dir = TempDir::new().unwrap(); + + let content = r#" +#import "@preview/cetz:0.4.1": canvas +#import "@preview/fletcher:0.5.3" + += Document +"#; + fs::write(dir.path().join("main.typ"), content).unwrap(); + + let imports = find_imports(dir.path()); + + assert_eq!(imports.len(), 2); + let names: Vec<_> = imports.iter().map(|s| s.name.as_str()).collect(); + assert!(names.contains(&"cetz")); + assert!(names.contains(&"fletcher")); + } + + #[test] + fn find_imports_in_nested_files() { + let dir = TempDir::new().unwrap(); + + fs::write( + dir.path().join("main.typ"), + r#"#import "@preview/cetz:0.4.1""#, + ) + .unwrap(); + + let sub = dir.path().join("chapters"); + fs::create_dir_all(&sub).unwrap(); + fs::write(sub.join("intro.typ"), r#"#import "@preview/fletcher:0.5.3""#).unwrap(); + + let imports = find_imports(dir.path()); + + assert_eq!(imports.len(), 2); + } + + #[test] + fn ignore_non_typ_files() { + let dir = TempDir::new().unwrap(); + + fs::write( + dir.path().join("main.typ"), + r#"#import "@preview/cetz:0.4.1""#, + ) + .unwrap(); + fs::write( + dir.path().join("notes.txt"), + r#"#import "@preview/ignored:1.0.0""#, + ) + .unwrap(); + + let imports = find_imports(dir.path()); + + assert_eq!(imports.len(), 1); + assert_eq!(imports[0].name, "cetz"); + } + + #[test] + fn find_includes() { + let dir = TempDir::new().unwrap(); + + let content = r#"#include "@preview/template:1.0.0""#; + fs::write(dir.path().join("main.typ"), content).unwrap(); + + let imports = find_imports(dir.path()); + + assert_eq!(imports.len(), 1); + assert_eq!(imports[0].name, "template"); + } + + #[test] + fn ignore_relative_imports() { + let dir = TempDir::new().unwrap(); + + let content = r#" +#import "@preview/cetz:0.4.1" +#import "utils.typ" +#import "../shared/common.typ" +"#; + fs::write(dir.path().join("main.typ"), content).unwrap(); + + let imports = find_imports(dir.path()); + + assert_eq!(imports.len(), 1); + assert_eq!(imports[0].name, "cetz"); + } + + #[test] + fn empty_directory() { + let dir = TempDir::new().unwrap(); + let imports = find_imports(dir.path()); + assert!(imports.is_empty()); + } +} + +mod config_integration { + use super::*; + + #[test] + fn parse_and_cache_local_from_toml() { + let src_dir = TempDir::new().unwrap(); + let cache_dir = TempDir::new().unwrap(); + + create_local_package(src_dir.path(), "my-pkg", "1.0.0", None); + + let toml = format!( + r#" +destination = "{}" + +[local] +my-pkg = "{}" +"#, + cache_dir.path().display(), + src_dir.path().display() + ); + + let config = Config::parse(&toml).unwrap(); + let dest = config.destination.clone().unwrap(); + let configured_local: HashSet = config.local.keys().cloned().collect(); + let entries = config.into_entries(); + let result = gather_packages(&dest, entries, &[], &configured_local); + + assert_eq!(result.stats.copied, 1); + assert!(cache_dir.path().join("local/my-pkg/1.0.0").exists()); + } + + #[test] + fn empty_config_does_nothing() { + let cache_dir = TempDir::new().unwrap(); + + let toml = format!(r#"destination = "{}""#, cache_dir.path().display()); + let config = Config::parse(&toml).unwrap(); + let dest = config.destination.clone().unwrap(); + let configured_local: HashSet = config.local.keys().cloned().collect(); + let entries = config.into_entries(); + let result = gather_packages(&dest, entries, &[], &configured_local); + + assert_eq!(result.stats.downloaded, 0); + assert_eq!(result.stats.copied, 0); + assert_eq!(result.stats.skipped, 0); + assert_eq!(result.stats.failed, 0); + } + + #[test] + fn missing_destination_returns_none() { + let config = Config::parse("").unwrap(); + assert!(config.destination.is_none()); + } + + #[test] + fn parse_discover_field() { + let toml = r#" +destination = "/cache" +discover = "/path/to/templates" +"#; + let config = Config::parse(toml).unwrap(); + assert_eq!( + config.discover, + vec![std::path::PathBuf::from("/path/to/templates")] + ); + } + + #[test] + fn parse_discover_array() { + let toml = r#" +destination = "/cache" +discover = ["template.typ", "typst-show.typ"] +"#; + let config = Config::parse(toml).unwrap(); + assert_eq!( + config.discover, + vec![ + std::path::PathBuf::from("template.typ"), + std::path::PathBuf::from("typst-show.typ"), + ] + ); + } +} + +mod unconfigured_local { + use super::*; + + #[test] + fn detects_unconfigured_local_imports() { + let cache_dir = TempDir::new().unwrap(); + let discover_dir = TempDir::new().unwrap(); + + // Create a .typ file that imports @local/my-pkg + let content = r#"#import "@local/my-pkg:1.0.0""#; + fs::write(discover_dir.path().join("template.typ"), content).unwrap(); + + // Don't configure my-pkg in the local section + let configured_local: HashSet = HashSet::new(); + let discover = vec![discover_dir.path().to_path_buf()]; + + let result = gather_packages(cache_dir.path(), vec![], &discover, &configured_local); + + // Should have one unconfigured local + assert_eq!(result.unconfigured_local.len(), 1); + assert_eq!(result.unconfigured_local[0].0, "my-pkg"); + } + + #[test] + fn configured_local_not_reported() { + let cache_dir = TempDir::new().unwrap(); + let discover_dir = TempDir::new().unwrap(); + + // Create a .typ file that imports @local/my-pkg + let content = r#"#import "@local/my-pkg:1.0.0""#; + fs::write(discover_dir.path().join("template.typ"), content).unwrap(); + + // Configure my-pkg (even though we don't actually copy it) + let configured_local: HashSet = ["my-pkg".to_string()].into_iter().collect(); + let discover = vec![discover_dir.path().to_path_buf()]; + + let result = gather_packages(cache_dir.path(), vec![], &discover, &configured_local); + + // Should have no unconfigured local + assert!(result.unconfigured_local.is_empty()); + } +} + +/// Tests that require network access. +/// Run with: cargo test -- --ignored +mod network { + use super::*; + + #[test] + #[ignore = "requires network access"] + fn download_preview_package() { + let cache_dir = TempDir::new().unwrap(); + + let entries = vec![PackageEntry::Preview { + name: "example".to_string(), + version: "0.1.0".to_string(), + }]; + + let configured_local = HashSet::new(); + let result = gather_packages(cache_dir.path(), entries, &[], &configured_local); + + assert_eq!(result.stats.downloaded, 1); + assert_eq!(result.stats.failed, 0); + + let cached = cache_dir.path().join("preview/example/0.1.0"); + assert!(cached.exists()); + assert!(cached.join("typst.toml").exists()); + } + + #[test] + #[ignore = "requires network access"] + fn download_package_with_dependencies() { + let cache_dir = TempDir::new().unwrap(); + + // cetz has dependencies that should be auto-downloaded + let entries = vec![PackageEntry::Preview { + name: "cetz".to_string(), + version: "0.3.4".to_string(), + }]; + + let configured_local = HashSet::new(); + let result = gather_packages(cache_dir.path(), entries, &[], &configured_local); + + // Should download cetz plus its dependencies + assert!(result.stats.downloaded >= 1); + assert_eq!(result.stats.failed, 0); + } + + #[test] + #[ignore = "requires network access"] + fn skip_already_cached() { + let cache_dir = TempDir::new().unwrap(); + + let entries = vec![PackageEntry::Preview { + name: "example".to_string(), + version: "0.1.0".to_string(), + }]; + + let configured_local = HashSet::new(); + + // First download + let result1 = gather_packages(cache_dir.path(), entries.clone(), &[], &configured_local); + assert_eq!(result1.stats.downloaded, 1); + + // Second run should skip + let result2 = gather_packages(cache_dir.path(), entries, &[], &configured_local); + assert_eq!(result2.stats.downloaded, 0); + assert_eq!(result2.stats.skipped, 1); + } + + #[test] + #[ignore = "requires network access"] + fn fail_on_nonexistent_package() { + let cache_dir = TempDir::new().unwrap(); + + let entries = vec![PackageEntry::Preview { + name: "this-package-does-not-exist-12345".to_string(), + version: "0.0.0".to_string(), + }]; + + let configured_local = HashSet::new(); + let result = gather_packages(cache_dir.path(), entries, &[], &configured_local); + + assert_eq!(result.stats.downloaded, 0); + assert_eq!(result.stats.failed, 1); + } + + #[test] + #[ignore = "requires network access"] + fn local_package_triggers_preview_deps() { + let src_dir = TempDir::new().unwrap(); + let cache_dir = TempDir::new().unwrap(); + + // Create local package that imports a preview package + let content = r#" +#import "@preview/example:0.1.0" + +#let my-func() = [] +"#; + create_local_package(src_dir.path(), "my-pkg", "1.0.0", Some(content)); + + let entries = vec![PackageEntry::Local { + name: "my-pkg".to_string(), + dir: src_dir.path().to_path_buf(), + }]; + + let configured_local: HashSet = ["my-pkg".to_string()].into_iter().collect(); + let result = gather_packages(cache_dir.path(), entries, &[], &configured_local); + + assert_eq!(result.stats.copied, 1); + assert!(result.stats.downloaded >= 1); // Should have downloaded example + + assert!(cache_dir.path().join("local/my-pkg/1.0.0").exists()); + assert!(cache_dir.path().join("preview/example/0.1.0").exists()); + } +} diff --git a/src/command/call/cmd.ts b/src/command/call/cmd.ts index c55468c3032..018382bdb6d 100644 --- a/src/command/call/cmd.ts +++ b/src/command/call/cmd.ts @@ -1,6 +1,7 @@ import { Command } from "cliffy/command/mod.ts"; import { engineCommand } from "./engine-cmd.ts"; import { buildTsExtensionCommand } from "./build-ts-extension/cmd.ts"; +import { typstGatherCommand } from "./typst-gather/cmd.ts"; export const callCommand = new Command() .name("call") @@ -12,4 +13,5 @@ export const callCommand = new Command() Deno.exit(1); }) .command("engine", engineCommand) - .command("build-ts-extension", buildTsExtensionCommand); + .command("build-ts-extension", buildTsExtensionCommand) + .command("typst-gather", typstGatherCommand); diff --git a/src/command/call/typst-gather/cmd.ts b/src/command/call/typst-gather/cmd.ts new file mode 100644 index 00000000000..104aae5566a --- /dev/null +++ b/src/command/call/typst-gather/cmd.ts @@ -0,0 +1,563 @@ +/* + * cmd.ts + * + * Copyright (C) 2025 Posit Software, PBC + */ + +import { Command } from "cliffy/command/mod.ts"; +import { info } from "../../../deno_ral/log.ts"; + +import { architectureToolsPath } from "../../../core/resources.ts"; +import { execProcess } from "../../../core/process.ts"; +import { dirname, join, relative } from "../../../deno_ral/path.ts"; +import { existsSync } from "../../../deno_ral/fs.ts"; +import { isWindows } from "../../../deno_ral/platform.ts"; +import { expandGlobSync } from "../../../core/deno/expand-glob.ts"; +import { readYaml } from "../../../core/yaml.ts"; + +// Convert path to use forward slashes for TOML compatibility +// TOML treats backslash as escape character, so Windows paths must use forward slashes +function toTomlPath(p: string): string { + return p.replace(/\\/g, "/"); +} + +interface ExtensionYml { + contributes?: { + formats?: { + typst?: { + template?: string; + "template-partials"?: string[]; + }; + }; + }; +} + +interface TypstGatherConfig { + configFile?: string; // Path to config file if one was found + rootdir?: string; + destination: string; + discover: string[]; +} + +async function findExtensionDir(): Promise { + const cwd = Deno.cwd(); + + // Check if we're in an extension directory (has _extension.yml) + if (existsSync(join(cwd, "_extension.yml"))) { + return cwd; + } + + // Check if there's an _extensions directory with a single extension + const extensionsDir = join(cwd, "_extensions"); + if (existsSync(extensionsDir)) { + const extensionDirs: string[] = []; + for (const entry of expandGlobSync("_extensions/**/_extension.yml")) { + extensionDirs.push(dirname(entry.path)); + } + + if (extensionDirs.length === 1) { + return extensionDirs[0]; + } else if (extensionDirs.length > 1) { + console.error("Multiple extension directories found.\n"); + console.error( + "Run this command from within a specific extension directory,", + ); + console.error( + "or create a typst-gather.toml to specify the configuration.", + ); + return null; + } + } + + return null; +} + +function extractTypstFiles(extensionDir: string): string[] { + const extensionYmlPath = join(extensionDir, "_extension.yml"); + + if (!existsSync(extensionYmlPath)) { + return []; + } + + try { + const yml = readYaml(extensionYmlPath) as ExtensionYml; + const typstConfig = yml?.contributes?.formats?.typst; + + if (!typstConfig) { + return []; + } + + const files: string[] = []; + + // Add template if specified + if (typstConfig.template) { + files.push(join(extensionDir, typstConfig.template)); + } + + // Add template-partials if specified + if (typstConfig["template-partials"]) { + for (const partial of typstConfig["template-partials"]) { + files.push(join(extensionDir, partial)); + } + } + + return files; + } catch { + return []; + } +} + +async function resolveConfig( + extensionDir: string | null, +): Promise { + const cwd = Deno.cwd(); + + // First, check for typst-gather.toml in current directory + const configPath = join(cwd, "typst-gather.toml"); + if (existsSync(configPath)) { + info(`Using config: ${configPath}`); + // Return the config file path - rust will parse it directly + // We still parse minimally to validate and show info + const content = Deno.readTextFileSync(configPath); + const config = parseSimpleToml(content); + config.configFile = configPath; + return config; + } + + // No config file - try to auto-detect from _extension.yml + if (!extensionDir) { + console.error( + "No typst-gather.toml found and no extension directory detected.\n", + ); + console.error("Either:"); + console.error(" 1. Create a typst-gather.toml file, or"); + console.error( + " 2. Run from within an extension directory with _extension.yml", + ); + return null; + } + + const typstFiles = extractTypstFiles(extensionDir); + + if (typstFiles.length === 0) { + console.error("No Typst files found in _extension.yml.\n"); + console.error( + "The extension must define 'template' or 'template-partials' under contributes.formats.typst", + ); + return null; + } + + // Default destination is 'typst/packages' directory in extension folder + const destination = join(extensionDir, "typst/packages"); + + // Show paths relative to cwd for cleaner output + const relDest = relative(cwd, destination); + const relFiles = typstFiles.map((f) => relative(cwd, f)); + + info(`Auto-detected from _extension.yml:`); + info(` Destination: ${relDest}`); + info(` Files to scan: ${relFiles.join(", ")}`); + + return { + destination, + discover: typstFiles, + }; +} + +function parseSimpleToml(content: string): TypstGatherConfig { + const lines = content.split("\n"); + let rootdir: string | undefined; + let destination = ""; + const discover: string[] = []; + + for (const line of lines) { + const trimmed = line.trim(); + + // Parse rootdir + const rootdirMatch = trimmed.match(/^rootdir\s*=\s*"([^"]+)"/); + if (rootdirMatch) { + rootdir = rootdirMatch[1]; + continue; + } + + // Parse destination + const destMatch = trimmed.match(/^destination\s*=\s*"([^"]+)"/); + if (destMatch) { + destination = destMatch[1]; + continue; + } + + // Parse discover as string + const discoverStrMatch = trimmed.match(/^discover\s*=\s*"([^"]+)"/); + if (discoverStrMatch) { + discover.push(discoverStrMatch[1]); + continue; + } + + // Parse discover as array (simple single-line parsing) + const discoverArrMatch = trimmed.match(/^discover\s*=\s*\[([^\]]+)\]/); + if (discoverArrMatch) { + const items = discoverArrMatch[1].split(","); + for (const item of items) { + const match = item.trim().match(/"([^"]+)"/); + if (match) { + discover.push(match[1]); + } + } + } + } + + return { rootdir, destination, discover }; +} + +interface DiscoveredImport { + name: string; + version: string; + sourceFile: string; +} + +interface DiscoveryResult { + preview: DiscoveredImport[]; + local: DiscoveredImport[]; + scannedFiles: string[]; +} + +function discoverImportsFromFiles(files: string[]): DiscoveryResult { + const result: DiscoveryResult = { + preview: [], + local: [], + scannedFiles: [], + }; + + // Regex to match @namespace/name:version imports + // Note: #include is for files, not packages, so we only match #import + const importRegex = /#import\s+"@(\w+)\/([^:]+):([^"]+)"/g; + + for (const file of files) { + if (!existsSync(file)) continue; + if (!file.endsWith(".typ")) continue; + + const filename = file.split("/").pop() || file; + result.scannedFiles.push(filename); + + try { + const content = Deno.readTextFileSync(file); + let match; + while ((match = importRegex.exec(content)) !== null) { + const [, namespace, name, version] = match; + const entry = { name, version, sourceFile: filename }; + + if (namespace === "preview") { + result.preview.push(entry); + } else if (namespace === "local") { + result.local.push(entry); + } + } + } catch { + // Skip files that can't be read + } + } + + return result; +} + +function generateConfigContent( + discovery: DiscoveryResult, + rootdir?: string, +): string { + const lines: string[] = []; + + lines.push("# typst-gather configuration"); + lines.push("# Run: quarto call typst-gather"); + lines.push(""); + + if (rootdir) { + lines.push(`rootdir = "${toTomlPath(rootdir)}"`); + } + lines.push('destination = "typst/packages"'); + lines.push(""); + + // Discover section + if (discovery.scannedFiles.length > 0) { + if (discovery.scannedFiles.length === 1) { + lines.push(`discover = "${toTomlPath(discovery.scannedFiles[0])}"`); + } else { + const files = discovery.scannedFiles.map((f) => `"${toTomlPath(f)}"`) + .join(", "); + lines.push(`discover = [${files}]`); + } + } else { + lines.push('# discover = "template.typ" # Add your .typ files here'); + } + + lines.push(""); + + // Preview section (commented out - packages will be auto-discovered) + lines.push("# Preview packages are auto-discovered from imports."); + lines.push("# Uncomment to pin specific versions:"); + lines.push("# [preview]"); + if (discovery.preview.length > 0) { + // Deduplicate + const seen = new Set(); + for (const { name, version } of discovery.preview) { + if (!seen.has(name)) { + seen.add(name); + lines.push(`# ${name} = "${version}"`); + } + } + } else { + lines.push('# cetz = "0.4.1"'); + } + + lines.push(""); + + // Local section + lines.push( + "# Local packages (@local namespace) must be configured manually.", + ); + if (discovery.local.length > 0) { + lines.push("# Found @local imports:"); + const seen = new Set(); + for (const { name, version, sourceFile } of discovery.local) { + if (!seen.has(name)) { + seen.add(name); + lines.push(`# @local/${name}:${version} (in ${sourceFile})`); + } + } + lines.push("[local]"); + seen.clear(); + for (const { name } of discovery.local) { + if (!seen.has(name)) { + seen.add(name); + lines.push(`${name} = "/path/to/${name}" # TODO: set correct path`); + } + } + } else { + lines.push("# [local]"); + lines.push('# my-pkg = "/path/to/my-pkg"'); + } + + lines.push(""); + return lines.join("\n"); +} + +async function initConfig(): Promise { + const configFile = join(Deno.cwd(), "typst-gather.toml"); + + // Check if config already exists + if (existsSync(configFile)) { + console.error("typst-gather.toml already exists"); + console.error("Remove it first or edit it manually."); + Deno.exit(1); + } + + // Find typst files via extension directory structure + const extensionDir = await findExtensionDir(); + + if (!extensionDir) { + console.error("No extension directory found."); + console.error( + "Run this command from a directory containing _extension.yml or _extensions/", + ); + Deno.exit(1); + } + + const typFiles = extractTypstFiles(extensionDir); + + if (typFiles.length === 0) { + info("Warning: No .typ files found in _extension.yml."); + info( + "Edit the generated typst-gather.toml to configure local or pinned dependencies.", + ); + } else { + info(`Found extension: ${extensionDir}`); + } + + // Discover imports from the files + const discovery = discoverImportsFromFiles(typFiles); + + // Calculate relative path from cwd to extension dir for rootdir + const rootdir = relative(Deno.cwd(), extensionDir); + + // Generate config content + const configContent = generateConfigContent(discovery, rootdir); + + // Write config file + try { + Deno.writeTextFileSync(configFile, configContent); + } catch (e) { + console.error(`Error writing typst-gather.toml: ${e}`); + Deno.exit(1); + } + + info("Created typst-gather.toml"); + if (discovery.scannedFiles.length > 0) { + info(` Scanned: ${discovery.scannedFiles.join(", ")}`); + } + if (discovery.preview.length > 0) { + info(` Found ${discovery.preview.length} @preview import(s)`); + } + if (discovery.local.length > 0) { + info( + ` Found ${discovery.local.length} @local import(s) - configure paths in [local] section`, + ); + } + + info(""); + info("Next steps:"); + info(" 1. Review and edit typst-gather.toml"); + if (discovery.local.length > 0) { + info(" 2. Add paths for @local packages in [local] section"); + } + info(" 3. Run: quarto call typst-gather"); +} + +export const typstGatherCommand = new Command() + .name("typst-gather") + .description( + "Gather Typst packages for a format extension.\n\n" + + "This command scans Typst files for @preview imports and downloads " + + "the packages to a local directory for offline use.\n\n" + + "Configuration is determined by:\n" + + " 1. typst-gather.toml in current directory (if present)\n" + + " 2. Auto-detection from _extension.yml (template and template-partials)", + ) + .option( + "--init-config", + "Generate a starter typst-gather.toml in current directory", + ) + .action(async (options: { initConfig?: boolean }) => { + // Handle --init-config + if (options.initConfig) { + await initConfig(); + return; + } + try { + // Find extension directory + const extensionDir = await findExtensionDir(); + + // Resolve configuration + const config = await resolveConfig(extensionDir); + if (!config) { + Deno.exit(1); + } + + if (!config.destination) { + console.error("No destination specified in configuration."); + Deno.exit(1); + } + + if (config.discover.length === 0) { + console.error("No files to discover imports from."); + Deno.exit(1); + } + + // Find typst-gather binary + // First try architecture-specific path, then fall back to PATH + let typstGatherBinary: string; + const binaryName = isWindows ? "typst-gather.exe" : "typst-gather"; + + const archPath = architectureToolsPath(binaryName); + if (existsSync(archPath)) { + typstGatherBinary = archPath; + } else { + // Try to find in PATH or use development location + const quartoRoot = Deno.env.get("QUARTO_ROOT"); + if (quartoRoot) { + const devPath = join( + quartoRoot, + "package/typst-gather/target/release", + binaryName, + ); + if (existsSync(devPath)) { + typstGatherBinary = devPath; + } else { + console.error( + `typst-gather binary not found.\n` + + `Build it with: cd package/typst-gather && cargo build --release`, + ); + Deno.exit(1); + } + } else { + console.error("typst-gather binary not found."); + Deno.exit(1); + } + } + + // Determine config file to use + let configFileToUse: string; + let tempConfig: string | null = null; + + if (config.configFile) { + // Use existing config file directly - rust will parse [local], [preview], etc. + configFileToUse = config.configFile; + } else { + // Create a temporary TOML config file for auto-detected config + tempConfig = Deno.makeTempFileSync({ suffix: ".toml" }); + const discoverArray = config.discover.map((p) => `"${toTomlPath(p)}"`) + .join(", "); + let tomlContent = ""; + if (config.rootdir) { + tomlContent += `rootdir = "${toTomlPath(config.rootdir)}"\n`; + } + tomlContent += `destination = "${toTomlPath(config.destination)}"\n`; + tomlContent += `discover = [${discoverArray}]\n`; + Deno.writeTextFileSync(tempConfig, tomlContent); + configFileToUse = tempConfig; + } + + info(`Running typst-gather...`); + + // Run typst-gather + const result = await execProcess({ + cmd: typstGatherBinary, + args: [configFileToUse], + cwd: Deno.cwd(), + }); + + // Clean up temp file if we created one + if (tempConfig) { + try { + Deno.removeSync(tempConfig); + } catch { + // Ignore cleanup errors + } + } + + if (!result.success) { + // Print any output from the tool + if (result.stdout) { + console.log(result.stdout); + } + if (result.stderr) { + console.error(result.stderr); + } + + // Check for @local imports not configured error and suggest --init-config + // Only suggest if no config file was found + const output = (result.stdout || "") + (result.stderr || ""); + if ( + output.includes("@local imports not configured") && !config.configFile + ) { + console.error(""); + console.error( + "Tip: Run 'quarto call typst-gather --init-config' to generate a config file", + ); + console.error( + " with placeholders for your @local package paths.", + ); + } + + Deno.exit(1); + } + + info("Done!"); + } catch (e) { + if (e instanceof Error) { + console.error(e.message); + } else { + console.error(String(e)); + } + Deno.exit(1); + } + }); diff --git a/src/command/dev-call/cmd.ts b/src/command/dev-call/cmd.ts index b9a07f44b9b..4a2b892915c 100644 --- a/src/command/dev-call/cmd.ts +++ b/src/command/dev-call/cmd.ts @@ -6,6 +6,7 @@ import { validateYamlCommand } from "./validate-yaml/cmd.ts"; import { showAstTraceCommand } from "./show-ast-trace/cmd.ts"; import { makeAstDiagramCommand } from "./make-ast-diagram/cmd.ts"; import { pullGitSubtreeCommand } from "./pull-git-subtree/cmd.ts"; +import { typstGatherCommand } from "./typst-gather/cmd.ts"; type CommandOptionInfo = { name: string; @@ -77,4 +78,5 @@ export const devCallCommand = new Command() .command("build-artifacts", buildJsCommand) .command("show-ast-trace", showAstTraceCommand) .command("make-ast-diagram", makeAstDiagramCommand) - .command("pull-git-subtree", pullGitSubtreeCommand); + .command("pull-git-subtree", pullGitSubtreeCommand) + .command("typst-gather", typstGatherCommand); diff --git a/src/command/dev-call/typst-gather/cmd.ts b/src/command/dev-call/typst-gather/cmd.ts new file mode 100644 index 00000000000..739cb439e85 --- /dev/null +++ b/src/command/dev-call/typst-gather/cmd.ts @@ -0,0 +1,75 @@ +/* + * cmd.ts + * + * Copyright (C) 2025 Posit Software, PBC + */ + +import { Command } from "cliffy/command/mod.ts"; +import { error, info } from "../../../deno_ral/log.ts"; +import { join } from "../../../deno_ral/path.ts"; +import { isWindows } from "../../../deno_ral/platform.ts"; + +export const typstGatherCommand = new Command() + .name("typst-gather") + .hidden() + .description( + "Gather Typst packages for offline/hermetic builds.\n\n" + + "This command runs the typst-gather tool to download @preview packages " + + "and copy @local packages to a local directory for use during Quarto builds.", + ) + .action(async () => { + // Get quarto root directory + const quartoRoot = Deno.env.get("QUARTO_ROOT"); + if (!quartoRoot) { + error( + "QUARTO_ROOT environment variable not set. This command requires a development version of Quarto.", + ); + Deno.exit(1); + } + + // Path to the TOML config file (relative to this source file's location in the repo) + const tomlPath = join( + quartoRoot, + "src/command/dev-call/typst-gather/typst-gather.toml", + ); + + // Path to the typst-gather binary + const binaryName = isWindows ? "typst-gather.exe" : "typst-gather"; + const typstGatherBinary = join( + quartoRoot, + "package/typst-gather/target/release", + binaryName, + ); + + // Check if binary exists + try { + await Deno.stat(typstGatherBinary); + } catch { + error( + `typst-gather binary not found at ${typstGatherBinary}\n` + + "Build it with: cd package/typst-gather && cargo build --release", + ); + Deno.exit(1); + } + + info(`Quarto root: ${quartoRoot}`); + info(`Config: ${tomlPath}`); + info(`Running typst-gather...`); + + // Run typst-gather from the quarto root directory + const command = new Deno.Command(typstGatherBinary, { + args: [tomlPath], + cwd: quartoRoot, + stdout: "inherit", + stderr: "inherit", + }); + + const result = await command.output(); + + if (!result.success) { + error(`typst-gather failed with exit code ${result.code}`); + Deno.exit(result.code); + } + + info("Done!"); + }); diff --git a/src/command/dev-call/typst-gather/typst-gather.toml b/src/command/dev-call/typst-gather/typst-gather.toml new file mode 100644 index 00000000000..5f0945b7eb2 --- /dev/null +++ b/src/command/dev-call/typst-gather/typst-gather.toml @@ -0,0 +1,2 @@ +destination = "src/resources/formats/typst/packages" +discover = ["src/resources/formats/typst/pandoc/quarto"] diff --git a/src/command/render/output-typst.ts b/src/command/render/output-typst.ts index 83a5b3f9cac..7f11880185b 100644 --- a/src/command/render/output-typst.ts +++ b/src/command/render/output-typst.ts @@ -5,7 +5,18 @@ */ import { dirname, join, normalize, relative } from "../../deno_ral/path.ts"; -import { ensureDirSync, safeRemoveSync } from "../../deno_ral/fs.ts"; +import { + copySync, + ensureDirSync, + existsSync, + safeRemoveSync, +} from "../../deno_ral/fs.ts"; +import { + inputExtensionDirs, + readExtensions, +} from "../../extension/extension.ts"; +import { projectScratchPath } from "../../project/project-scratch.ts"; +import { resourcePath } from "../../core/resources.ts"; import { kFontPaths, @@ -28,6 +39,66 @@ import { import { asArray } from "../../core/array.ts"; import { ProjectContext } from "../../project/types.ts"; +// Stage typst packages to .quarto/typst-packages/ +// First stages built-in packages, then extension packages (which can override) +async function stageTypstPackages( + input: string, + projectDir?: string, +): Promise { + if (!projectDir) { + return undefined; + } + + const packageSources: string[] = []; + + // 1. Add built-in packages from quarto resources + const builtinPackages = resourcePath("formats/typst/packages"); + if (existsSync(builtinPackages)) { + packageSources.push(builtinPackages); + } + + // 2. Add packages from extensions (can override built-in) + const extensionDirs = inputExtensionDirs(input, projectDir); + for (const extDir of extensionDirs) { + const extensions = await readExtensions(extDir); + for (const ext of extensions) { + const packagesDir = join(ext.path, "typst/packages"); + if (existsSync(packagesDir)) { + packageSources.push(packagesDir); + } + } + } + + if (packageSources.length === 0) { + return undefined; + } + + // Stage to .quarto/typst/packages/ + const cacheDir = projectScratchPath(projectDir, "typst/packages"); + + // Copy contents of each source directory (merging namespaces like "preview", "local") + for (const source of packageSources) { + for (const entry of Deno.readDirSync(source)) { + const srcPath = join(source, entry.name); + const destPath = join(cacheDir, entry.name); + if (!existsSync(destPath)) { + copySync(srcPath, destPath); + } else if (entry.isDirectory) { + // Merge directory contents (e.g., merge packages within "preview" namespace) + for (const subEntry of Deno.readDirSync(srcPath)) { + const subSrcPath = join(srcPath, subEntry.name); + const subDestPath = join(destPath, subEntry.name); + if (!existsSync(subDestPath)) { + copySync(subSrcPath, subDestPath); + } + } + } + } + } + + return cacheDir; +} + export function useTypstPdfOutputRecipe( format: Format, ) { @@ -58,7 +129,7 @@ export function typstPdfOutputRecipe( // output to the user's requested destination const complete = async () => { // input file is pandoc's output - const input = join(inputDir, output); + const typstInput = join(inputDir, output); // run typst await validateRequiredTypstVersion(); @@ -69,9 +140,15 @@ export function typstPdfOutputRecipe( }; if (project?.dir) { typstOptions.rootDir = project.dir; + + // Stage extension typst packages + const packagePath = await stageTypstPackages(input, project.dir); + if (packagePath) { + typstOptions.packagePath = packagePath; + } } const result = await typstCompile( - input, + typstInput, pdfOutput, typstOptions, ); @@ -81,7 +158,7 @@ export function typstPdfOutputRecipe( // keep typ if requested if (!format.render[kKeepTyp]) { - safeRemoveSync(input); + safeRemoveSync(typstInput); } // copy (or write for stdout) compiled pdf to final output location @@ -101,9 +178,9 @@ export function typstPdfOutputRecipe( // final output needs to either absolute or input dir relative // (however it may be working dir relative when it is passed in) - return normalizeOutputPath(input, finalOutput); + return normalizeOutputPath(typstInput, finalOutput); } else { - return normalizeOutputPath(input, pdfOutput); + return normalizeOutputPath(typstInput, pdfOutput); } }; diff --git a/src/command/render/pandoc.ts b/src/command/render/pandoc.ts index 001113c5311..35b9ac1f919 100644 --- a/src/command/render/pandoc.ts +++ b/src/command/render/pandoc.ts @@ -66,6 +66,7 @@ import { projectIsWebsite, } from "../../project/project-shared.ts"; import { deleteCrossrefMetadata } from "../../project/project-crossrefs.ts"; +import { migrateProjectScratchPath } from "../../project/project-scratch.ts"; import { getPandocArg, @@ -1586,7 +1587,11 @@ async function resolveExtras( } } if (ttf_urls.length || woff_urls.length) { - const font_cache = join(brand!.projectDir, ".quarto", "typst-font-cache"); + const font_cache = migrateProjectScratchPath( + brand!.projectDir, + "typst-font-cache", + "typst/fonts", + ); const url_to_path = (url: string) => url.replace(/^https?:\/\//, ""); const cached = async (url: string) => { const path = url_to_path(url); diff --git a/src/core/typst.ts b/src/core/typst.ts index 09e95cab994..42d9ea97876 100644 --- a/src/core/typst.ts +++ b/src/core/typst.ts @@ -5,7 +5,8 @@ */ import { error, info } from "../deno_ral/log.ts"; -import { basename } from "../deno_ral/path.ts"; +import { basename, join } from "../deno_ral/path.ts"; +import { existsSync } from "../deno_ral/fs.ts"; import * as colors from "fmt/colors"; import { satisfies } from "semver/mod.ts"; @@ -39,6 +40,7 @@ export type TypstCompileOptions = { quiet?: boolean; fontPaths?: string[]; rootDir?: string; + packagePath?: string; }; export async function typstCompile( @@ -58,6 +60,18 @@ export async function typstCompile( if (options.rootDir) { cmd.push("--root", options.rootDir); } + if (options.packagePath) { + // Only set --package-path if local/ subdirectory exists (for @local packages) + const localDir = join(options.packagePath, "local"); + if (existsSync(localDir)) { + cmd.push("--package-path", options.packagePath); + } + // Only set --package-cache-path if preview/ subdirectory exists (for @preview packages) + const previewDir = join(options.packagePath, "preview"); + if (existsSync(previewDir)) { + cmd.push("--package-cache-path", options.packagePath); + } + } cmd.push( input, ...fontPathsArgs(fontPaths), diff --git a/src/format/pdf/format-pdf.ts b/src/format/pdf/format-pdf.ts index 4e80f00d559..16142cab7cc 100644 --- a/src/format/pdf/format-pdf.ts +++ b/src/format/pdf/format-pdf.ts @@ -1063,7 +1063,10 @@ const indexAndSuppressPandocBibliography = ( let currentCiteKey: string | undefined = undefined; return (line: string): string | undefined => { - if (!readingBibliography && line.match(/^\\phantomsection\\label{refs}$/)) { + if ( + !readingBibliography && + line.match(/^(\\protect)?\\phantomsection\\label{refs}$/) + ) { readingBibliography = true; return undefined; } else if (readingBibliography && line.match(/^\\end{CSLReferences}$/)) { diff --git a/src/import_map.json b/src/import_map.json index b778b346c04..684472eb319 100644 --- a/src/import_map.json +++ b/src/import_map.json @@ -57,6 +57,8 @@ "puppeteer": "https://deno.land/x/puppeteer@9.0.2/mod.ts", + "pdfjs-dist": "npm:pdfjs-dist@4.9.155", + "https://deno.land/std@0.196.0/console/unicode_width.ts": "https://deno.land/std@0.224.0/console/unicode_width.ts", "https://deno.land/std@0.161.0/": "https://deno.land/std@0.217.0/", "https://deno.land/std@0.101.0/": "https://deno.land/std@0.217.0/", diff --git a/src/project/project-scratch.ts b/src/project/project-scratch.ts index b85ebc7cfc4..508757b0f32 100644 --- a/src/project/project-scratch.ts +++ b/src/project/project-scratch.ts @@ -5,8 +5,9 @@ */ import { dirname, join } from "../deno_ral/path.ts"; -import { ensureDirSync } from "../deno_ral/fs.ts"; +import { ensureDirSync, existsSync } from "../deno_ral/fs.ts"; import { normalizePath } from "../core/path.ts"; +import { warning } from "../deno_ral/log.ts"; export const kQuartoScratch = ".quarto"; @@ -21,3 +22,29 @@ export function projectScratchPath(dir: string, path = "") { return normalizePath(scratchDir); } } + +// Migrate a scratch path from an old location to a new location. +// If the old path exists and the new path doesn't, moves the old to new. +// Returns the new path (via projectScratchPath which ensures it exists). +export function migrateProjectScratchPath( + dir: string, + oldSubpath: string, + newSubpath: string, +): string { + const scratchDir = join(dir, kQuartoScratch); + const oldPath = join(scratchDir, oldSubpath); + const newPath = join(scratchDir, newSubpath); + + if (existsSync(oldPath) && !existsSync(newPath)) { + // Ensure parent directory of new path exists + ensureDirSync(dirname(newPath)); + try { + Deno.renameSync(oldPath, newPath); + } catch (e) { + // Migration failed - not fatal, cache will be rebuilt + warning(`Failed to migrate ${oldSubpath} to ${newSubpath}: ${e}`); + } + } + + return projectScratchPath(dir, newSubpath); +} diff --git a/src/resources/editor/tools/vs-code.mjs b/src/resources/editor/tools/vs-code.mjs index 86429495d0e..e27ba617f80 100644 --- a/src/resources/editor/tools/vs-code.mjs +++ b/src/resources/editor/tools/vs-code.mjs @@ -8002,7 +8002,8 @@ var require_yaml_intelligence_resources = __commonJS({ ], formats: [ "$html-files", - "$pdf-all" + "$pdf-all", + "typst" ] }, schema: { @@ -8024,7 +8025,8 @@ var require_yaml_intelligence_resources = __commonJS({ ], formats: [ "$html-files", - "$pdf-all" + "$pdf-all", + "typst" ] }, schema: { @@ -8046,7 +8048,8 @@ var require_yaml_intelligence_resources = __commonJS({ ], formats: [ "$html-files", - "$pdf-all" + "$pdf-all", + "typst" ] }, schema: { @@ -13252,6 +13255,29 @@ var require_yaml_intelligence_resources = __commonJS({ } } } + }, + { + id: "marginalia-side-geometry", + object: { + closed: true, + properties: { + far: { + string: { + description: "Distance from page edge to wideblock boundary." + } + }, + width: { + string: { + description: "Width of the margin note column." + } + }, + separation: { + string: { + description: "Gap between margin column and body text." + } + } + } + } } ], "schema/document-about.yml": [ @@ -15363,7 +15389,8 @@ var require_yaml_intelligence_resources = __commonJS({ "$markdown-all", "muse", "$html-files", - "pdf" + "pdf", + "typst" ] }, schema: { @@ -16346,6 +16373,12 @@ var require_yaml_intelligence_resources = __commonJS({ }, { name: "grid", + tags: { + formats: [ + "$html-doc", + "typst" + ] + }, schema: { object: { closed: true, @@ -16366,24 +16399,24 @@ var require_yaml_intelligence_resources = __commonJS({ }, "margin-width": { string: { - description: "The base width of the margin (right) column in an HTML page." + description: "The base width of the margin (right) column. For Typst, this controls the width of the margin note column." } }, "body-width": { string: { - description: "The base width of the body (center) column in an HTML page." + description: "The base width of the body (center) column. For Typst, this is computed as the remainder after other columns." } }, "gutter-width": { string: { - description: "The width of the gutter that appears between columns in an HTML page." + description: "The width of the gutter that appears between columns. For Typst, this is the gap between the text column and margin notes." } } } } }, description: { - short: "Properties of the grid system used to layout Quarto HTML pages." + short: "Properties of the grid system used to layout Quarto HTML and Typst pages." } }, { @@ -18073,7 +18106,8 @@ var require_yaml_intelligence_resources = __commonJS({ }, tags: { formats: [ - "$html-doc" + "$html-doc", + "typst" ] }, default: "document", @@ -23772,6 +23806,10 @@ var require_yaml_intelligence_resources = __commonJS({ short: "Shift heading levels by a positive or negative integer. For example,\nwith shift-heading-level-by: -1, level 2 headings become\nlevel 1 headings.", long: "Shift heading levels by a positive or negative integer. For example,\nwith shift-heading-level-by: -1, level 2 headings become\nlevel 1 headings, and level 3 headings become level 2 headings. Headings\ncannot have a level less than 1, so a heading that would be shifted\nbelow level 1 becomes a regular paragraph. Exception: with a shift of\n-N, a level-N heading at the beginning of the document replaces the\nmetadata title." }, + { + short: "Schema to use for numbering pages, e.g. 1 or\ni, or false to omit page numbering.", + long: 'Schema to use for numbering pages, e.g. 1 or\ni, or false to omit page numbering.\nSee Typst\nNumbering for additional information.' + }, { 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.\nSee ConTeXt\nPage Numbering for additional information.' @@ -24904,10 +24942,16 @@ var require_yaml_intelligence_resources = __commonJS({ "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.", + "Distance from page edge to wideblock boundary.", + "Width of the margin note column.", + "Gap between margin column and body text.", { - short: "Schema to use for numbering pages, e.g. 1 or\ni, or false to omit page numbering.", - long: 'Schema to use for numbering pages, e.g. 1 or\ni, or false to omit page numbering.\nSee Typst\nNumbering for additional information.' - } + short: "Advanced geometry settings for Typst margin layout.", + long: "Fine-grained control over marginalia package geometry. Most users\nshould use margin and grid options instead;\nthese values are computed automatically.\nUser-specified values override the computed defaults." + }, + "Inner (left) margin geometry.", + "Outer (right) margin geometry.", + "Minimum vertical spacing between margin notes (default: 8pt)." ], "schema/external-schemas.yml": [ { @@ -25136,12 +25180,12 @@ var require_yaml_intelligence_resources = __commonJS({ mermaid: "%%" }, "handlers/mermaid/schema.yml": { - _internalId: 218561, + _internalId: 219143, type: "object", description: "be an object", properties: { "mermaid-format": { - _internalId: 218553, + _internalId: 219135, type: "enum", enum: [ "png", @@ -25157,7 +25201,7 @@ var require_yaml_intelligence_resources = __commonJS({ exhaustiveCompletions: true }, theme: { - _internalId: 218560, + _internalId: 219142, type: "anyOf", anyOf: [ { @@ -25240,6 +25284,38 @@ var require_yaml_intelligence_resources = __commonJS({ ] }, description: "The logo image." + }, + { + name: "margin-geometry", + schema: { + object: { + closed: true, + properties: { + inner: { + ref: "marginalia-side-geometry", + description: "Inner (left) margin geometry." + }, + outer: { + ref: "marginalia-side-geometry", + description: "Outer (right) margin geometry." + }, + clearance: { + string: { + description: "Minimum vertical spacing between margin notes (default: 8pt)." + } + } + } + } + }, + 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" + } } ] }; diff --git a/src/resources/editor/tools/yaml/all-schema-definitions.json b/src/resources/editor/tools/yaml/all-schema-definitions.json index e524cb5fc48..59809a8deca 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":"Path to site (defaults to /). Not required if you\nspecify site-url."},"site-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for published website"},"documentation":"Base URL for website source code repository"},"site-path":{"type":"string","description":"be a string","tags":{"description":"Path to site (defaults to `/`). Not required if you specify `site-url`.\n"},"documentation":"The value of the target attribute for repo links"},"repo-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for website source code repository"},"documentation":"The value of the rel 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":"Subdirectory of repository containing website"},"repo-link-rel":{"type":"string","description":"be a string","tags":{"description":"The value of the rel attribute for repo links"},"documentation":"Branch of website source code (defaults to main)"},"repo-subdir":{"type":"string","description":"be a string","tags":{"description":"Subdirectory of repository containing website"},"documentation":"URL to use for the ‘report an issue’ repository action."},"repo-branch":{"type":"string","description":"be a string","tags":{"description":"Branch of website source code (defaults to `main`)"},"documentation":"Links to source repository actions"},"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":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 Google Analytics for this website"},{"_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 Google Analytics for this website"}}],"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":"The Google tracking Id or measurement Id of this website."},"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":"Anonymize the user ip address."},"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":"The version number of Google Analytics to use."},"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":"Enable Plausible Analytics for this website by providing a script\nsnippet or path to snippet file"},"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":"Path to a file containing the Plausible Analytics script snippet"}},"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":"Storage options for Google Analytics data"},"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":"The content of the announcement"}},"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":"Provides an announcement displayed at the top of the page."},"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 icon to display in the announcement"},"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 position of 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 type of announcement. Affects the appearance of the\nannouncement."},"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":"Request cookie consent before enabling scripts that set cookies"},"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 type of consent that should be requested"}},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Provides an announcement displayed at the top of the page."},"documentation":"Whether this announcement may be dismissed by the user."},"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":"Whether to use a dark or light appearance for the consent banner\n(light or dark)."},"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":"The url to the website’s cookie or privacy policy."},"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":"The language to be used when diplaying the cookie consent prompt\n(defaults to document language)."},"policy-url":{"type":"string","description":"be a string","tags":{"description":"The url to the website’s cookie or privacy policy."},"documentation":"The text to display for the cookie preferences link in the website\nfooter."},"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 full text search for website"},"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":"Location for search widget (navbar or\nsidebar)"}},"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 style of the consent banner that is displayed"},"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":"Number of matches to display (defaults to 20)"},"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":"Matches after which to collapse additional results"},"limit":{"type":"number","description":"be a number","tags":{"description":"Number of matches to display (defaults to 20)"},"documentation":"Provide button for copying search link"},"collapse-after":{"type":"number","description":"be a number","tags":{"description":"Matches after which to collapse additional results"},"documentation":"When false, do not merge navbar crumbs into the crumbs in\nsearch.json."},"copy-button":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide button for copying search link"},"documentation":"One or more keys that will act as a shortcut to launch search (single\ncharacters)"},"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":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":"Use external Algolia search index"},{"_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":"Use external Algolia search index"}}],"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":"The name of the index to use when performing a search"},"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":"The Search-Only API key to use to connect to Algolia"},"application-id":{"type":"string","description":"be a string","tags":{"description":"The unique ID used by Algolia to identify your application"},"documentation":"Enable tracking of Algolia analytics events"},"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 the display of the Algolia logo in the search results\nfooter."},"analytics-events":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable tracking of Algolia analytics events"},"documentation":"Field that contains the URL of index entries"},"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 title of index entries"},"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":"Field that contains the text 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 section of index entries"},"text":{"type":"string","description":"be a string","tags":{"description":"Field that contains the text of index entries"},"documentation":"Additional parameters to pass when executing a search"},"section":{"type":"string","description":"be a string","tags":{"description":"Field that contains the section of index entries"},"documentation":"Top navigation options"}},"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 title. Uses the project title if none is specified."}},"patternProperties":{},"closed":true,"tags":{"description":"Use external Algolia search index"},"documentation":"The unique ID used by Algolia to identify your application"}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Provide full text search for website"},"documentation":"Type of search UI (overlay or textbox)"},"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":"Alternate text for the logo image."},"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":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"The navbar’s background 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":"The navbar’s foreground 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":"Include a search box in 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":"Always show the navbar (keeping it pinned)."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search box in the navbar."},"documentation":"Collapse the navbar into a menu when the display becomes narrow."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Always show the navbar (keeping it pinned)."},"documentation":"The responsive breakpoint below which the navbar will collapse into a\nmenu (sm, md, lg (default),\nxl, xxl)."},"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":"List of items for the left side of the navbar."},"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":"List of items for the right side of the navbar."},"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":"The position of the collapsed navbar toggle when in responsive\nmode"},"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":"Collapse tools into the navbar menu when the display becomes\nnarrow."},"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":"Side navigation options"},"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":"The identifier for this 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":"Specification of image that will be displayed to the left of the\ntitle."},"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":"Specification of image that will be displayed in 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":"Alternate text for the logo image."},"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":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"Include a search control in the sidebar."},"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 sidebar tools"},"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 items for the sidebar"},"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 style of sidebar (docked or\nfloating)."},"contents":{"_internalId":780,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"The sidebar’s background color (named or hex color)."},"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":"The sidebar’s foreground 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":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"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":"Alignment of the items within the sidebar (left,\nright, or center)"},"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":"The depth at which the sidebar contents should be collapsed by\ndefault."},"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":"When collapsed, pin the collapsed sidebar to the top of the page."},"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 above sidebar 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":"Markdown to place below sidebar content (text or file path)"},"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":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."},"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":"Markdown to insert below each page’s body."}},"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":"Specification of image that will be displayed in 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":"Alternate text for the logo image."},"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":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"Include a search control in the sidebar."},"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 sidebar tools"},"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 items for the sidebar"},"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 style of sidebar (docked or\nfloating)."},"contents":{"_internalId":780,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"The sidebar’s background color (named or hex color)."},"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":"The sidebar’s foreground 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":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"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":"Alignment of the items within the sidebar (left,\nright, or center)"},"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":"The depth at which the sidebar contents should be collapsed by\ndefault."},"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":"When collapsed, pin the collapsed sidebar to the top of the page."},"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 above sidebar 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":"Markdown to place below sidebar content (text or file path)"},"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":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."},"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":"Markdown to insert below each page’s body."}},"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 sidebar title. Uses the project title if none is specified."},"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 place above margin content (text or file path)"},"body-footer":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert below each page’s body."},"documentation":"Markdown to place below margin content (text or file path)"},"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":"Provide next and previous article links in footer"},"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":"Provide a ‘back to top’ navigation button"},"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":"Whether to show navigation breadcrumbs for pages more than 1 level\ndeep"},"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":"Shared page footer"},"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":"Default site thumbnail image for twitter\n/open-graph"},"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":"Default site thumbnail image alt text for twitter\n/open-graph"},"image":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image for `twitter` /`open-graph`\n"},"documentation":"Publish open graph metadata"},"image-alt":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image alt text for `twitter` /`open-graph`\n"},"documentation":"Publish twitter card metadata"},"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":"A list of other links to appear below the TOC."},"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":"A list of code links to appear with this document."},"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":"A list of input documents that should be treated as drafts"},"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":"How to handle drafts that are encountered."},"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 subtitle"},"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":"Author or authors of the book"}},"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 path to the favicon for this website"},"description":{"type":"string","description":"be a string","tags":{"description":"Description metadata for HTML version of book"},"documentation":"Base URL for published website"},"favicon":{"type":"string","description":"be a string","tags":{"description":"The path to the favicon for this website"},"documentation":"Path to site (defaults to /). Not required if you\nspecify site-url."},"site-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for published website"},"documentation":"Base URL for website source code repository"},"site-path":{"type":"string","description":"be a string","tags":{"description":"Path to site (defaults to `/`). Not required if you specify `site-url`.\n"},"documentation":"The value of the target attribute for repo links"},"repo-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for website source code repository"},"documentation":"The value of the rel 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":"Subdirectory of repository containing website"},"repo-link-rel":{"type":"string","description":"be a string","tags":{"description":"The value of the rel attribute for repo links"},"documentation":"Branch of website source code (defaults to main)"},"repo-subdir":{"type":"string","description":"be a string","tags":{"description":"Subdirectory of repository containing website"},"documentation":"URL to use for the ‘report an issue’ repository action."},"repo-branch":{"type":"string","description":"be a string","tags":{"description":"Branch of website source code (defaults to `main`)"},"documentation":"Links to source repository actions"},"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":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 Google Analytics for this website"},{"_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 Google Analytics for this website"}}],"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":"The Google tracking Id or measurement Id of this website."},"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":"Anonymize the user ip address."},"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":"The version number of Google Analytics to use."},"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":"Enable Plausible Analytics for this website by providing a script\nsnippet or path to snippet file"},"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":"Path to a file containing the Plausible Analytics script snippet"}},"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":"Storage options for Google Analytics data"},"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":"The content of the announcement"}},"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":"Provides an announcement displayed at the top of the page."},"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 icon to display in the announcement"},"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 position of 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 type of announcement. Affects the appearance of the\nannouncement."},"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":"Request cookie consent before enabling scripts that set cookies"},"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 type of consent that should be requested"}},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Provides an announcement displayed at the top of the page."},"documentation":"Whether this announcement may be dismissed by the user."},"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":"Whether to use a dark or light appearance for the consent banner\n(light or dark)."},"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":"The url to the website’s cookie or privacy policy."},"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":"The language to be used when diplaying the cookie consent prompt\n(defaults to document language)."},"policy-url":{"type":"string","description":"be a string","tags":{"description":"The url to the website’s cookie or privacy policy."},"documentation":"The text to display for the cookie preferences link in the website\nfooter."},"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 full text search for website"},"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":"Location for search widget (navbar or\nsidebar)"}},"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 style of the consent banner that is displayed"},"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":"Number of matches to display (defaults to 20)"},"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":"Matches after which to collapse additional results"},"limit":{"type":"number","description":"be a number","tags":{"description":"Number of matches to display (defaults to 20)"},"documentation":"Provide button for copying search link"},"collapse-after":{"type":"number","description":"be a number","tags":{"description":"Matches after which to collapse additional results"},"documentation":"When false, do not merge navbar crumbs into the crumbs in\nsearch.json."},"copy-button":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide button for copying search link"},"documentation":"One or more keys that will act as a shortcut to launch search (single\ncharacters)"},"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":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":"Use external Algolia search index"},{"_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":"Use external Algolia search index"}}],"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":"The name of the index to use when performing a search"},"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":"The Search-Only API key to use to connect to Algolia"},"application-id":{"type":"string","description":"be a string","tags":{"description":"The unique ID used by Algolia to identify your application"},"documentation":"Enable tracking of Algolia analytics events"},"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 the display of the Algolia logo in the search results\nfooter."},"analytics-events":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable tracking of Algolia analytics events"},"documentation":"Field that contains the URL of index entries"},"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 title of index entries"},"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":"Field that contains the text 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 section of index entries"},"text":{"type":"string","description":"be a string","tags":{"description":"Field that contains the text of index entries"},"documentation":"Additional parameters to pass when executing a search"},"section":{"type":"string","description":"be a string","tags":{"description":"Field that contains the section of index entries"},"documentation":"Top navigation options"}},"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 title. Uses the project title if none is specified."}},"patternProperties":{},"closed":true,"tags":{"description":"Use external Algolia search index"},"documentation":"The unique ID used by Algolia to identify your application"}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Provide full text search for website"},"documentation":"Type of search UI (overlay or textbox)"},"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":"Alternate text for the logo image."},"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":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"The navbar’s background 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":"The navbar’s foreground 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":"Include a search box in 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":"Always show the navbar (keeping it pinned)."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search box in the navbar."},"documentation":"Collapse the navbar into a menu when the display becomes narrow."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Always show the navbar (keeping it pinned)."},"documentation":"The responsive breakpoint below which the navbar will collapse into a\nmenu (sm, md, lg (default),\nxl, xxl)."},"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":"List of items for the left side of the navbar."},"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":"List of items for the right side of the navbar."},"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":"The position of the collapsed navbar toggle when in responsive\nmode"},"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":"Collapse tools into the navbar menu when the display becomes\nnarrow."},"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":"Side navigation options"},"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":"The identifier for this 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":"Specification of image that will be displayed to the left of the\ntitle."},"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":"Specification of image that will be displayed in 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":"Alternate text for the logo image."},"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":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"Include a search control in the sidebar."},"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 sidebar tools"},"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 items for the sidebar"},"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 style of sidebar (docked or\nfloating)."},"contents":{"_internalId":780,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"The sidebar’s background color (named or hex color)."},"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":"The sidebar’s foreground 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":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"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":"Alignment of the items within the sidebar (left,\nright, or center)"},"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":"The depth at which the sidebar contents should be collapsed by\ndefault."},"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":"When collapsed, pin the collapsed sidebar to the top of the page."},"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 above sidebar 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":"Markdown to place below sidebar content (text or file path)"},"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":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."},"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":"Markdown to insert below each page’s body."}},"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":"Specification of image that will be displayed in 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":"Alternate text for the logo image."},"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":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"Include a search control in the sidebar."},"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 sidebar tools"},"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 items for the sidebar"},"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 style of sidebar (docked or\nfloating)."},"contents":{"_internalId":780,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"The sidebar’s background color (named or hex color)."},"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":"The sidebar’s foreground 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":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"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":"Alignment of the items within the sidebar (left,\nright, or center)"},"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":"The depth at which the sidebar contents should be collapsed by\ndefault."},"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":"When collapsed, pin the collapsed sidebar to the top of the page."},"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 above sidebar 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":"Markdown to place below sidebar content (text or file path)"},"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":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."},"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":"Markdown to insert below each page’s body."}},"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 sidebar title. Uses the project title if none is specified."},"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 place above margin content (text or file path)"},"body-footer":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert below each page’s body."},"documentation":"Markdown to place below margin content (text or file path)"},"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":"Provide next and previous article links in footer"},"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":"Provide a ‘back to top’ navigation button"},"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":"Whether to show navigation breadcrumbs for pages more than 1 level\ndeep"},"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":"Shared page footer"},"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":"Default site thumbnail image for twitter\n/open-graph"},"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":"Default site thumbnail image alt text for twitter\n/open-graph"},"image":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image for `twitter` /`open-graph`\n"},"documentation":"Publish open graph metadata"},"image-alt":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image alt text for `twitter` /`open-graph`\n"},"documentation":"Publish twitter card metadata"},"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":"A list of other links to appear below the TOC."},"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":"A list of code links to appear with this document."},"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":"A list of input documents that should be treated as drafts"},"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":"How to handle drafts that are encountered."},"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 subtitle"},"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":"Author or authors of the book"},"subtitle":{"type":"string","description":"be a string","tags":{"description":"Book subtitle"},"documentation":"Author or authors of the book"},"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":"Format string for dates in the book"},{"_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":"Format string for dates in the book"}}],"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":"Book abstract"},"date-format":{"type":"string","description":"be a string","tags":{"description":"Format string for dates in the book"},"documentation":"Book part and chapter files"},"abstract":{"type":"string","description":"be a string","tags":{"description":"Book abstract"},"documentation":"Book appendix files"},"chapters":{"_internalId":932,"type":"ref","$ref":"chapter-list","description":"be chapter-list","completions":[],"tags":{"hidden":true,"description":"Book part and chapter files"},"documentation":"Book references file"},"appendices":{"_internalId":937,"type":"ref","$ref":"chapter-list","description":"be chapter-list","completions":[],"tags":{"hidden":true,"description":"Book appendix files"},"documentation":"Base name for single-file output (e.g. PDF, ePub, docx)"},"references":{"type":"string","description":"be a string","tags":{"description":"Book references file"},"documentation":"Cover image (used in HTML and ePub formats)"},"output-file":{"type":"string","description":"be a string","tags":{"description":"Base name for single-file output (e.g. PDF, ePub, docx)"},"documentation":"Alternative text for cover image (used in HTML format)"},"cover-image":{"type":"string","description":"be a string","tags":{"description":"Cover image (used in HTML and ePub formats)"},"documentation":"Sharing buttons to include on navbar or sidebar (one or more of\ntwitter, facebook, linkedin)"},"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":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":"Download buttons for other formats to include on navbar or sidebar\n(one or more of pdf, epub, and\ndocx)"},{"_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":"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":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":"The Digital Object Identifier for this book."},{"_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":"The Digital Object Identifier for this book."}}],"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":"A url to the abstract for this item."},"doi":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"The Digital Object Identifier for this book."},"documentation":"Date the item has been accessed."}},"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":"Short markup, decoration, or annotation to the item (e.g., to\nindicate items included in a review)."},"accessed":{"_internalId":1410,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item has been accessed."},"documentation":"Archive storing the item"},"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":"Collection the item is part of within an archive."},"archive":{"type":"string","description":"be a string","tags":{"description":"Archive storing the item"},"documentation":"Storage location within an archive (e.g. a box and folder\nnumber)."},"archive-collection":{"type":"string","description":"be a string","tags":{"description":"Collection the item is part of within an archive."},"documentation":"Geographic location of the archive."},"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":"Issuing or judicial authority (e.g. “USPTO” for a patent, “Fairfax\nCircuit Court” for a legal case)."},"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":"Date the item was initially available"},"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":"Call number (to locate the item in a library)."},"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":"The person leading the session containing a presentation (e.g. the\norganizer of the container-title of a\nspeech)."},"call-number":{"type":"string","description":"be a string","tags":{"description":"Call number (to locate the item in a library)."},"documentation":"Chapter number (e.g. chapter number in a book; track number on an\nalbum)."},"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":"Identifier of the item in the input data file (analogous to BiTeX\nentrykey)."},"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":"Label identifying the item in in-text citations of label styles\n(e.g. “Ferr78”)."},"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":"Index (starting at 1) of the cited reference in the bibliography\n(generated by the CSL processor)."},"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":"Editor of the collection holding the item (e.g. the series editor for\na book)."},"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":"Number identifying the collection holding the item (e.g. the series\nnumber for a book)","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":"Title of the collection holding the item (e.g. the series title for a\nbook; the lecture series title for a presentation)."},"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":"Person compiling or selecting material for an item from the works of\nvarious persons or bodies (e.g. for an anthology)."},"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":"Composer (e.g. of a musical score)."},"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":"Author of the container holding the item (e.g. the book author for a\nbook chapter)."},"composer":{"_internalId":1464,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Composer (e.g. of a musical score)."},"documentation":"Title of the container holding the item."},"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":"Short/abbreviated form of container-title;"},"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":"A minor contributor to the item; typically cited using “with” before\nthe name when listed in a bibliography."},"container-title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of container-title;","hidden":true},"documentation":"Curator of an exhibit or collection (e.g. in a museum).","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":"Physical (e.g. size) or temporal (e.g. running time) dimensions of\nthe item."},"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":"Director (e.g. of a film)."},"dimensions":{"type":"string","description":"be a string","tags":{"description":"Physical (e.g. size) or temporal (e.g. running time) dimensions of the item."},"documentation":"Minor subdivision of a court with a jurisdiction for a\nlegal item"},"director":{"_internalId":1482,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Director (e.g. of a film)."},"documentation":"(Container) edition holding the item (e.g. “3” when citing a chapter\nin the third edition of a book)."},"division":{"type":"string","description":"be a string","tags":{"description":"Minor subdivision of a court with a `jurisdiction` for a legal item"},"documentation":"The editor of the item."},"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":"Managing editor (“Directeur de la Publication” in French)."},"editor":{"_internalId":1494,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The editor of the item."},"documentation":"Combined editor and translator of a work."},"editorial-director":{"_internalId":1497,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Managing editor (\"Directeur de la Publication\" in French)."},"documentation":"Date the event related to an item took place."},"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":"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":{"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":"Geographic location of the event related to the item\n(e.g. “Amsterdam, The Netherlands”)."},"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":"Executive producer of the item (e.g. of a television series)."},"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":"Number of a preceding note containing the first reference to the\nitem."},"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":"A url to the full text for this item."},"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":"Type, class, or subtype of the item"},"fulltext-url":{"type":"string","description":"be a string","tags":{"description":"A url to the full text for this item."},"documentation":"Guest (e.g. on a TV show or podcast)."},"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":"Host of the item (e.g. of a TV show or podcast)."},"guest":{"_internalId":1526,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Guest (e.g. on a TV show or podcast)."},"documentation":"A value which uniquely identifies this 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":"Illustrator (e.g. of a children’s book or graphic novel)."},"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":"Interviewer (e.g. of an interview)."},"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":"International Standard Book Number (e.g. “978-3-8474-1017-1”)."},"interviewer":{"_internalId":1542,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Interviewer (e.g. of an interview)."},"documentation":"International Standard Serial Number."},"isbn":{"type":"string","description":"be a string","tags":{"description":"International Standard Book Number (e.g. \"978-3-8474-1017-1\")."},"documentation":"Issue number of the item or container holding the 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":"Date the item was issued/published."},"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":"Geographic scope of relevance (e.g. “US” for a US patent; the court\nhearing a legal case)."},"issued":{"_internalId":1560,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item was issued/published."},"documentation":"Keyword(s) or tag(s) attached to the item."},"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":"The language of the item (used only for citation of the item)."},"keyword":{"type":"string","description":"be a string","tags":{"description":"Keyword(s) or tag(s) attached to the item."},"documentation":"The license information applicable to an 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":"A cite-specific pinpointer within the 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":"Description of the item’s format or medium (e.g. “CD”, “DVD”,\n“Album”, etc.)"},"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":"Narrator (e.g. of an audio book)."},"medium":{"type":"string","description":"be a string","tags":{"description":"Description of the item’s format or medium (e.g. \"CD\", \"DVD\", \"Album\", etc.)"},"documentation":"Descriptive text or notes about an item (e.g. in an annotated\nbibliography)."},"narrator":{"_internalId":1576,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Narrator (e.g. of an audio book)."},"documentation":"Number identifying the item (e.g. a report number)."},"note":{"type":"string","description":"be a string","tags":{"description":"Descriptive text or notes about an item (e.g. in an annotated bibliography)."},"documentation":"Total number of pages of the cited item."},"number":{"_internalId":1581,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the item (e.g. a report number)."},"documentation":"Total number of volumes, used when citing multi-volume books and\nsuch."},"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":"Organizer of an event (e.g. organizer of a workshop or\nconference)."},"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":"The original creator of a work."},"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":"Issue date of the original version."},"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":"Original publisher, for items that have been republished by a\ndifferent publisher."},"original-date":{"_internalId":1596,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Issue date of the original version."},"documentation":"Geographic location of the original publisher (e.g. “London,\nUK”)."},"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 original version (e.g. “Война и мир”, the untranslated\nRussian title of “War and Peace”)."},"original-publisher-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the original publisher (e.g. \"London, UK\")."},"documentation":"Range of pages the item (e.g. a journal article) covers in a\ncontainer (e.g. a journal issue)."},"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":"First page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"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":"Last 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":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":"Number of the specific part of the item being cited (e.g. part 2 of a\njournal article)."},"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":"Title of the specific part of an item being cited."},"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":"A url to the pdf for this item."},"part-title":{"type":"string","description":"be a string","tags":{"description":"Title of the specific part of an item being cited."},"documentation":"Performer of an item (e.g. an actor appearing in a film; a muscian\nperforming a piece of music)."},"pdf-url":{"type":"string","description":"be a string","tags":{"description":"A url to the pdf for this item."},"documentation":"PubMed Central reference number."},"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":"PubMed reference number."},"pmcid":{"type":"string","description":"be a string","tags":{"description":"PubMed Central reference number."},"documentation":"Printing number of the item or container holding the item."},"PMCID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"pmid":{"type":"string","description":"be a string","tags":{"description":"PubMed reference number."},"documentation":"Producer (e.g. of a television or radio broadcast)."},"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":"A public url for this item."},"producer":{"_internalId":1639,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Producer (e.g. of a television or radio broadcast)."},"documentation":"The publisher of the item."},"public-url":{"type":"string","description":"be a string","tags":{"description":"A public url for this item."},"documentation":"The geographic location of the publisher."},"publisher":{"type":"string","description":"be a string","tags":{"description":"The publisher of the item."},"documentation":"Recipient (e.g. of a letter)."},"publisher-place":{"type":"string","description":"be a string","tags":{"description":"The geographic location of the publisher."},"documentation":"Author of the item reviewed by the current item."},"recipient":{"_internalId":1648,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Recipient (e.g. of a letter)."},"documentation":"Type of the item being reviewed by the current item (e.g. book,\nfilm)."},"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":"Title of the item reviewed by the current item."},"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":"Scale of e.g. a map or model."},"reviewed-title":{"type":"string","description":"be a string","tags":{"description":"Title of the item reviewed by the current item."},"documentation":"Writer of a script or screenplay (e.g. of a film)."},"scale":{"type":"string","description":"be a string","tags":{"description":"Scale of e.g. a map or model."},"documentation":"Section of the item or container holding the item (e.g. “§2.0.1” for\na law; “politics” for a newspaper article)."},"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":"Creator of a series (e.g. of a television series)."},"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":"Source from whence the item originates (e.g. a library catalog or\ndatabase)."},"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":"Publication status of the item (e.g. “forthcoming”; “in press”;\n“advance online publication”; “retracted”)"},"source":{"type":"string","description":"be a string","tags":{"description":"Source from whence the item originates (e.g. a library catalog or database)."},"documentation":"Date the item (e.g. a manuscript) was submitted for publication."},"status":{"type":"string","description":"be a string","tags":{"description":"Publication status of the item (e.g. \"forthcoming\"; \"in press\"; \"advance online publication\"; \"retracted\")"},"documentation":"Supplement number of the item or container holding the item (e.g. for\nsecondary legal items that are regularly updated between editions)."},"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":"Short/abbreviated form oftitle."},"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":"Translator"},"title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of`title`.","hidden":true},"documentation":"The type\nof the item.","completions":[]},"translator":{"_internalId":1681,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Translator"},"documentation":"Uniform Resource Locator\n(e.g. “https://aem.asm.org/cgi/content/full/74/9/2766”)"},"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":"Version of the item (e.g. “2.0.9” for a software program)."},"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":"Volume number of the item (e.g. “2” when citing volume 2 of a book)\nor the container holding the item."},"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":"Title of the volume of the item or container holding the item."},"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":"Disambiguating year suffix in author-date styles (e.g. “a” in “Doe,\n1999a”)."},"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":"Manuscript configuration"},"year-suffix":{"type":"string","description":"be a string","tags":{"description":"Disambiguating year suffix in author-date styles (e.g. \"a\" in \"Doe, 1999a\")."},"documentation":"internal-schema-hack"}},"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":"Short markup, decoration, or annotation to the item (e.g., to\nindicate items included in a review)."},"accessed":{"_internalId":1410,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item has been accessed."},"documentation":"Archive storing the item"},"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":"Collection the item is part of within an archive."},"archive":{"type":"string","description":"be a string","tags":{"description":"Archive storing the item"},"documentation":"Storage location within an archive (e.g. a box and folder\nnumber)."},"archive-collection":{"type":"string","description":"be a string","tags":{"description":"Collection the item is part of within an archive."},"documentation":"Geographic location of the archive."},"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":"Issuing or judicial authority (e.g. “USPTO” for a patent, “Fairfax\nCircuit Court” for a legal case)."},"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":"Date the item was initially available"},"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":"Call number (to locate the item in a library)."},"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":"The person leading the session containing a presentation (e.g. the\norganizer of the container-title of a\nspeech)."},"call-number":{"type":"string","description":"be a string","tags":{"description":"Call number (to locate the item in a library)."},"documentation":"Chapter number (e.g. chapter number in a book; track number on an\nalbum)."},"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":"Identifier of the item in the input data file (analogous to BiTeX\nentrykey)."},"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":"Label identifying the item in in-text citations of label styles\n(e.g. “Ferr78”)."},"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":"Index (starting at 1) of the cited reference in the bibliography\n(generated by the CSL processor)."},"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":"Editor of the collection holding the item (e.g. the series editor for\na book)."},"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":"Number identifying the collection holding the item (e.g. the series\nnumber for a book)","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":"Title of the collection holding the item (e.g. the series title for a\nbook; the lecture series title for a presentation)."},"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":"Person compiling or selecting material for an item from the works of\nvarious persons or bodies (e.g. for an anthology)."},"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":"Composer (e.g. of a musical score)."},"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":"Author of the container holding the item (e.g. the book author for a\nbook chapter)."},"composer":{"_internalId":1464,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Composer (e.g. of a musical score)."},"documentation":"Title of the container holding the item."},"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":"Short/abbreviated form of container-title;"},"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":"A minor contributor to the item; typically cited using “with” before\nthe name when listed in a bibliography."},"container-title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of container-title;","hidden":true},"documentation":"Curator of an exhibit or collection (e.g. in a museum).","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":"Physical (e.g. size) or temporal (e.g. running time) dimensions of\nthe item."},"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":"Director (e.g. of a film)."},"dimensions":{"type":"string","description":"be a string","tags":{"description":"Physical (e.g. size) or temporal (e.g. running time) dimensions of the item."},"documentation":"Minor subdivision of a court with a jurisdiction for a\nlegal item"},"director":{"_internalId":1482,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Director (e.g. of a film)."},"documentation":"(Container) edition holding the item (e.g. “3” when citing a chapter\nin the third edition of a book)."},"division":{"type":"string","description":"be a string","tags":{"description":"Minor subdivision of a court with a `jurisdiction` for a legal item"},"documentation":"The editor of the item."},"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":"Managing editor (“Directeur de la Publication” in French)."},"editor":{"_internalId":1494,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The editor of the item."},"documentation":"Combined editor and translator of a work."},"editorial-director":{"_internalId":1497,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Managing editor (\"Directeur de la Publication\" in French)."},"documentation":"Date the event related to an item took place."},"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":"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":{"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":"Geographic location of the event related to the item\n(e.g. “Amsterdam, The Netherlands”)."},"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":"Executive producer of the item (e.g. of a television series)."},"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":"Number of a preceding note containing the first reference to the\nitem."},"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":"A url to the full text for this item."},"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":"Type, class, or subtype of the item"},"fulltext-url":{"type":"string","description":"be a string","tags":{"description":"A url to the full text for this item."},"documentation":"Guest (e.g. on a TV show or podcast)."},"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":"Host of the item (e.g. of a TV show or podcast)."},"guest":{"_internalId":1526,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Guest (e.g. on a TV show or podcast)."},"documentation":"A value which uniquely identifies this 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":"Illustrator (e.g. of a children’s book or graphic novel)."},"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":"International Standard Book Number (e.g. “978-3-8474-1017-1”)."},"interviewer":{"_internalId":1542,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Interviewer (e.g. of an interview)."},"documentation":"International Standard Serial Number."},"isbn":{"type":"string","description":"be a string","tags":{"description":"International Standard Book Number (e.g. \"978-3-8474-1017-1\")."},"documentation":"Issue number of the item or container holding the 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":"Date the item was issued/published."},"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":"Geographic scope of relevance (e.g. “US” for a US patent; the court\nhearing a legal case)."},"issued":{"_internalId":1560,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item was issued/published."},"documentation":"Keyword(s) or tag(s) attached to the item."},"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":"The language of the item (used only for citation of the item)."},"keyword":{"type":"string","description":"be a string","tags":{"description":"Keyword(s) or tag(s) attached to the item."},"documentation":"The license information applicable to an 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":"A cite-specific pinpointer within the 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":"Description of the item’s format or medium (e.g. “CD”, “DVD”,\n“Album”, etc.)"},"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":"Narrator (e.g. of an audio book)."},"medium":{"type":"string","description":"be a string","tags":{"description":"Description of the item’s format or medium (e.g. \"CD\", \"DVD\", \"Album\", etc.)"},"documentation":"Descriptive text or notes about an item (e.g. in an annotated\nbibliography)."},"narrator":{"_internalId":1576,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Narrator (e.g. of an audio book)."},"documentation":"Number identifying the item (e.g. a report number)."},"note":{"type":"string","description":"be a string","tags":{"description":"Descriptive text or notes about an item (e.g. in an annotated bibliography)."},"documentation":"Total number of pages of the cited item."},"number":{"_internalId":1581,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the item (e.g. a report number)."},"documentation":"Total number of volumes, used when citing multi-volume books and\nsuch."},"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":"Organizer of an event (e.g. organizer of a workshop or\nconference)."},"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":"The original creator of a work."},"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":"Issue date of the original version."},"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":"Original publisher, for items that have been republished by a\ndifferent publisher."},"original-date":{"_internalId":1596,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Issue date of the original version."},"documentation":"Geographic location of the original publisher (e.g. “London,\nUK”)."},"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 original version (e.g. “Война и мир”, the untranslated\nRussian title of “War and Peace”)."},"original-publisher-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the original publisher (e.g. \"London, UK\")."},"documentation":"Range of pages the item (e.g. a journal article) covers in a\ncontainer (e.g. a journal issue)."},"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":"First page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"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":"Last 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":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":"Number of the specific part of the item being cited (e.g. part 2 of a\njournal article)."},"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":"Title of the specific part of an item being cited."},"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":"A url to the pdf for this item."},"part-title":{"type":"string","description":"be a string","tags":{"description":"Title of the specific part of an item being cited."},"documentation":"Performer of an item (e.g. an actor appearing in a film; a muscian\nperforming a piece of music)."},"pdf-url":{"type":"string","description":"be a string","tags":{"description":"A url to the pdf for this item."},"documentation":"PubMed Central reference number."},"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":"PubMed reference number."},"pmcid":{"type":"string","description":"be a string","tags":{"description":"PubMed Central reference number."},"documentation":"Printing number of the item or container holding the item."},"PMCID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"pmid":{"type":"string","description":"be a string","tags":{"description":"PubMed reference number."},"documentation":"Producer (e.g. of a television or radio broadcast)."},"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":"A public url for this item."},"producer":{"_internalId":1639,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Producer (e.g. of a television or radio broadcast)."},"documentation":"The publisher of the item."},"public-url":{"type":"string","description":"be a string","tags":{"description":"A public url for this item."},"documentation":"The geographic location of the publisher."},"publisher":{"type":"string","description":"be a string","tags":{"description":"The publisher of the item."},"documentation":"Recipient (e.g. of a letter)."},"publisher-place":{"type":"string","description":"be a string","tags":{"description":"The geographic location of the publisher."},"documentation":"Author of the item reviewed by the current item."},"recipient":{"_internalId":1648,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Recipient (e.g. of a letter)."},"documentation":"Type of the item being reviewed by the current item (e.g. book,\nfilm)."},"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":"Title of the item reviewed by the current item."},"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":"Scale of e.g. a map or model."},"reviewed-title":{"type":"string","description":"be a string","tags":{"description":"Title of the item reviewed by the current item."},"documentation":"Writer of a script or screenplay (e.g. of a film)."},"scale":{"type":"string","description":"be a string","tags":{"description":"Scale of e.g. a map or model."},"documentation":"Section of the item or container holding the item (e.g. “§2.0.1” for\na law; “politics” for a newspaper article)."},"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":"Creator of a series (e.g. of a television series)."},"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":"Source from whence the item originates (e.g. a library catalog or\ndatabase)."},"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":"Publication status of the item (e.g. “forthcoming”; “in press”;\n“advance online publication”; “retracted”)"},"source":{"type":"string","description":"be a string","tags":{"description":"Source from whence the item originates (e.g. a library catalog or database)."},"documentation":"Date the item (e.g. a manuscript) was submitted for publication."},"status":{"type":"string","description":"be a string","tags":{"description":"Publication status of the item (e.g. \"forthcoming\"; \"in press\"; \"advance online publication\"; \"retracted\")"},"documentation":"Supplement number of the item or container holding the item (e.g. for\nsecondary legal items that are regularly updated between editions)."},"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":"Short/abbreviated form oftitle."},"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":"Translator"},"title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of`title`.","hidden":true},"documentation":"The type\nof the item.","completions":[]},"translator":{"_internalId":1681,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Translator"},"documentation":"Uniform Resource Locator\n(e.g. “https://aem.asm.org/cgi/content/full/74/9/2766”)"},"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":"Version of the item (e.g. “2.0.9” for a software program)."},"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":"Volume number of the item (e.g. “2” when citing volume 2 of a book)\nor the container holding the item."},"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":"Title of the volume of the item or container holding the item."},"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":"Disambiguating year suffix in author-date styles (e.g. “a” in “Doe,\n1999a”)."},"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":"Manuscript configuration"},"year-suffix":{"type":"string","description":"be a string","tags":{"description":"Disambiguating year suffix in author-date styles (e.g. \"a\" in \"Doe, 1999a\")."},"documentation":"internal-schema-hack"},"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":"Short markup, decoration, or annotation to the item (e.g., to\nindicate items included in a review)."},"accessed":{"_internalId":1410,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item has been accessed."},"documentation":"Archive storing the item"},"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":"Collection the item is part of within an archive."},"archive":{"type":"string","description":"be a string","tags":{"description":"Archive storing the item"},"documentation":"Storage location within an archive (e.g. a box and folder\nnumber)."},"archive-collection":{"type":"string","description":"be a string","tags":{"description":"Collection the item is part of within an archive."},"documentation":"Geographic location of the archive."},"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":"Issuing or judicial authority (e.g. “USPTO” for a patent, “Fairfax\nCircuit Court” for a legal case)."},"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":"Date the item was initially available"},"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":"Call number (to locate the item in a library)."},"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":"The person leading the session containing a presentation (e.g. the\norganizer of the container-title of a\nspeech)."},"call-number":{"type":"string","description":"be a string","tags":{"description":"Call number (to locate the item in a library)."},"documentation":"Chapter number (e.g. chapter number in a book; track number on an\nalbum)."},"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":"Identifier of the item in the input data file (analogous to BiTeX\nentrykey)."},"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":"Label identifying the item in in-text citations of label styles\n(e.g. “Ferr78”)."},"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":"Index (starting at 1) of the cited reference in the bibliography\n(generated by the CSL processor)."},"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":"Editor of the collection holding the item (e.g. the series editor for\na book)."},"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":"Number identifying the collection holding the item (e.g. the series\nnumber for a book)","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":"Title of the collection holding the item (e.g. the series title for a\nbook; the lecture series title for a presentation)."},"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":"Person compiling or selecting material for an item from the works of\nvarious persons or bodies (e.g. for an anthology)."},"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":"Composer (e.g. of a musical score)."},"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":"Author of the container holding the item (e.g. the book author for a\nbook chapter)."},"composer":{"_internalId":1464,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Composer (e.g. of a musical score)."},"documentation":"Title of the container holding the item."},"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":"Short/abbreviated form of container-title;"},"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":"A minor contributor to the item; typically cited using “with” before\nthe name when listed in a bibliography."},"container-title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of container-title;","hidden":true},"documentation":"Curator of an exhibit or collection (e.g. in a museum).","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":"Physical (e.g. size) or temporal (e.g. running time) dimensions of\nthe item."},"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":"Director (e.g. of a film)."},"dimensions":{"type":"string","description":"be a string","tags":{"description":"Physical (e.g. size) or temporal (e.g. running time) dimensions of the item."},"documentation":"Minor subdivision of a court with a jurisdiction for a\nlegal item"},"director":{"_internalId":1482,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Director (e.g. of a film)."},"documentation":"(Container) edition holding the item (e.g. “3” when citing a chapter\nin the third edition of a book)."},"division":{"type":"string","description":"be a string","tags":{"description":"Minor subdivision of a court with a `jurisdiction` for a legal item"},"documentation":"The editor of the item."},"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":"Managing editor (“Directeur de la Publication” in French)."},"editor":{"_internalId":1494,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The editor of the item."},"documentation":"Combined editor and translator of a work."},"editorial-director":{"_internalId":1497,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Managing editor (\"Directeur de la Publication\" in French)."},"documentation":"Date the event related to an item took place."},"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":"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":{"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":"Geographic location of the event related to the item\n(e.g. “Amsterdam, The Netherlands”)."},"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":"Executive producer of the item (e.g. of a television series)."},"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":"Number of a preceding note containing the first reference to the\nitem."},"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":"A url to the full text for this item."},"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":"Type, class, or subtype of the item"},"fulltext-url":{"type":"string","description":"be a string","tags":{"description":"A url to the full text for this item."},"documentation":"Guest (e.g. on a TV show or podcast)."},"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":"Host of the item (e.g. of a TV show or podcast)."},"guest":{"_internalId":1526,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Guest (e.g. on a TV show or podcast)."},"documentation":"A value which uniquely identifies this 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":"Illustrator (e.g. of a children’s book or graphic novel)."},"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":"International Standard Book Number (e.g. “978-3-8474-1017-1”)."},"interviewer":{"_internalId":1542,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Interviewer (e.g. of an interview)."},"documentation":"International Standard Serial Number."},"isbn":{"type":"string","description":"be a string","tags":{"description":"International Standard Book Number (e.g. \"978-3-8474-1017-1\")."},"documentation":"Issue number of the item or container holding the 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":"Date the item was issued/published."},"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":"Geographic scope of relevance (e.g. “US” for a US patent; the court\nhearing a legal case)."},"issued":{"_internalId":1560,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item was issued/published."},"documentation":"Keyword(s) or tag(s) attached to the item."},"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":"The language of the item (used only for citation of the item)."},"keyword":{"type":"string","description":"be a string","tags":{"description":"Keyword(s) or tag(s) attached to the item."},"documentation":"The license information applicable to an 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":"A cite-specific pinpointer within the 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":"Description of the item’s format or medium (e.g. “CD”, “DVD”,\n“Album”, etc.)"},"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":"Narrator (e.g. of an audio book)."},"medium":{"type":"string","description":"be a string","tags":{"description":"Description of the item’s format or medium (e.g. \"CD\", \"DVD\", \"Album\", etc.)"},"documentation":"Descriptive text or notes about an item (e.g. in an annotated\nbibliography)."},"narrator":{"_internalId":1576,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Narrator (e.g. of an audio book)."},"documentation":"Number identifying the item (e.g. a report number)."},"note":{"type":"string","description":"be a string","tags":{"description":"Descriptive text or notes about an item (e.g. in an annotated bibliography)."},"documentation":"Total number of pages of the cited item."},"number":{"_internalId":1581,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the item (e.g. a report number)."},"documentation":"Total number of volumes, used when citing multi-volume books and\nsuch."},"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":"Organizer of an event (e.g. organizer of a workshop or\nconference)."},"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":"The original creator of a work."},"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":"Issue date of the original version."},"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":"Original publisher, for items that have been republished by a\ndifferent publisher."},"original-date":{"_internalId":1596,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Issue date of the original version."},"documentation":"Geographic location of the original publisher (e.g. “London,\nUK”)."},"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 original version (e.g. “Война и мир”, the untranslated\nRussian title of “War and Peace”)."},"original-publisher-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the original publisher (e.g. \"London, UK\")."},"documentation":"Range of pages the item (e.g. a journal article) covers in a\ncontainer (e.g. a journal issue)."},"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":"First page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"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":"Last 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":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":"Number of the specific part of the item being cited (e.g. part 2 of a\njournal article)."},"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":"Title of the specific part of an item being cited."},"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":"A url to the pdf for this item."},"part-title":{"type":"string","description":"be a string","tags":{"description":"Title of the specific part of an item being cited."},"documentation":"Performer of an item (e.g. an actor appearing in a film; a muscian\nperforming a piece of music)."},"pdf-url":{"type":"string","description":"be a string","tags":{"description":"A url to the pdf for this item."},"documentation":"PubMed Central reference number."},"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":"PubMed reference number."},"pmcid":{"type":"string","description":"be a string","tags":{"description":"PubMed Central reference number."},"documentation":"Printing number of the item or container holding the item."},"PMCID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"pmid":{"type":"string","description":"be a string","tags":{"description":"PubMed reference number."},"documentation":"Producer (e.g. of a television or radio broadcast)."},"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":"A public url for this item."},"producer":{"_internalId":1639,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Producer (e.g. of a television or radio broadcast)."},"documentation":"The publisher of the item."},"public-url":{"type":"string","description":"be a string","tags":{"description":"A public url for this item."},"documentation":"The geographic location of the publisher."},"publisher":{"type":"string","description":"be a string","tags":{"description":"The publisher of the item."},"documentation":"Recipient (e.g. of a letter)."},"publisher-place":{"type":"string","description":"be a string","tags":{"description":"The geographic location of the publisher."},"documentation":"Author of the item reviewed by the current item."},"recipient":{"_internalId":1648,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Recipient (e.g. of a letter)."},"documentation":"Type of the item being reviewed by the current item (e.g. book,\nfilm)."},"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":"Title of the item reviewed by the current item."},"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":"Scale of e.g. a map or model."},"reviewed-title":{"type":"string","description":"be a string","tags":{"description":"Title of the item reviewed by the current item."},"documentation":"Writer of a script or screenplay (e.g. of a film)."},"scale":{"type":"string","description":"be a string","tags":{"description":"Scale of e.g. a map or model."},"documentation":"Section of the item or container holding the item (e.g. “§2.0.1” for\na law; “politics” for a newspaper article)."},"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":"Creator of a series (e.g. of a television series)."},"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":"Source from whence the item originates (e.g. a library catalog or\ndatabase)."},"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":"Publication status of the item (e.g. “forthcoming”; “in press”;\n“advance online publication”; “retracted”)"},"source":{"type":"string","description":"be a string","tags":{"description":"Source from whence the item originates (e.g. a library catalog or database)."},"documentation":"Date the item (e.g. a manuscript) was submitted for publication."},"status":{"type":"string","description":"be a string","tags":{"description":"Publication status of the item (e.g. \"forthcoming\"; \"in press\"; \"advance online publication\"; \"retracted\")"},"documentation":"Supplement number of the item or container holding the item (e.g. for\nsecondary legal items that are regularly updated between editions)."},"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":"Short/abbreviated form oftitle."},"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":"Translator"},"title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of`title`.","hidden":true},"documentation":"The type\nof the item.","completions":[]},"translator":{"_internalId":1681,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Translator"},"documentation":"Uniform Resource Locator\n(e.g. “https://aem.asm.org/cgi/content/full/74/9/2766”)"},"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":"Version of the item (e.g. “2.0.9” for a software program)."},"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":"Volume number of the item (e.g. “2” when citing volume 2 of a book)\nor the container holding the item."},"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":"Title of the volume of the item or container holding the item."},"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":"Disambiguating year suffix in author-date styles (e.g. “a” in “Doe,\n1999a”)."},"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":"Manuscript configuration"},"year-suffix":{"type":"string","description":"be a string","tags":{"description":"Disambiguating year suffix in author-date styles (e.g. \"a\" in \"Doe, 1999a\")."},"documentation":"internal-schema-hack"},"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":"Run tests ONLY on these platforms (whitelist)"},"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":"Don’t run tests on these platforms (blacklist)"},"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":"The path to the locally referenced notebook."}},"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 title of the notebook when viewed."},"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 url to use when viewing this notebook."},"url":{"type":"string","description":"be a string","tags":{"description":"The url to use when viewing this notebook."},"documentation":"The url to use when downloading the notebook from the preview"},"download-url":{"type":"string","description":"be a string","tags":{"description":"The url to use when downloading the notebook from the preview"},"documentation":"The bootstrap icon for this code link."}},"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 text for this code link."},"text":{"type":"string","description":"be a string","tags":{"description":"The text for this code link."},"documentation":"The href for this code link."},"href":{"type":"string","description":"be a string","tags":{"description":"The href for this code link."},"documentation":"The rel used in the a tag 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 target 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 input document that will serve as the root document for this\nmanuscript"}},"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 text for this code link."},"text":{"type":"string","description":"be a string","tags":{"description":"The text for this code link."},"documentation":"The href for this code link."},"href":{"type":"string","description":"be a string","tags":{"description":"The href for this code link."},"documentation":"The rel used in the a tag 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 target 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 input document that will serve as the root document for this\nmanuscript"}},"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":"Code links to display for this manuscript."},"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":"The deployed url for this manuscript"},"manuscript-url":{"type":"string","description":"be a string","tags":{"description":"The deployed url for this manuscript"},"documentation":"Whether to generate a MECA bundle 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":"Additional file resources to be copied to output directory"},"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":"Files that specify the execution environment (e.g. renv.lock,\nrequirements.text, etc…)"},{"_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":"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]}},"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":"Metadata for a brand, including the brand name and important\nlinks."},{"_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":"Metadata for a brand, including the brand name and important\nlinks."}}],"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 short, informal, or common 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":"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":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The brand name."},"documentation":"The full, official or legal name of the company or brand."},"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 Mastodon URL."},"mastodon":{"type":"string","description":"be a string","tags":{"description":"The brand's Mastodon URL."},"documentation":"The brand’s Bluesky URL."},"bluesky":{"type":"string","description":"be a string","tags":{"description":"The brand's Bluesky URL."},"documentation":"The brand’s GitHub URL."},"github":{"type":"string","description":"be a string","tags":{"description":"The brand's GitHub URL."},"documentation":"The brand’s LinkedIn URL."},"linkedin":{"type":"string","description":"be a string","tags":{"description":"The brand's LinkedIn URL."},"documentation":"The brand’s Twitter URL."},"twitter":{"type":"string","description":"be a string","tags":{"description":"The brand's Twitter URL."},"documentation":"The brand’s Facebook URL."},"facebook":{"type":"string","description":"be a string","tags":{"description":"The brand's Facebook URL."},"documentation":"A link or path to the brand’s light-colored logo or icon."}},"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":"The brand’s home page or website."}},"patternProperties":{},"$id":"brand-meta","tags":{"description":"Metadata for a brand, including the brand name and important links.\n"},"documentation":"The brand name."},"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 dark-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":"Alternative text for the logo, used for accessibility."}},"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":"Provide definitions and defaults for brand’s logo in various formats\nand sizes."}},"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 link or path to the brand’s small-sized logo or icon."},"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 medium-sized logo."},"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 large- or full-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":"Provide definitions and defaults for brand’s logo in various formats\nand sizes."}},"patternProperties":{},"closed":true,"$id":"brand-logo-single","tags":{"description":"Provide definitions and defaults for brand's logo in various formats and sizes.\n"},"documentation":"A dictionary of named logo resources."},"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 link or path to the brand’s small-sized logo or icon, or a link or\npath to both the light and dark versions."},"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 medium-sized logo, or a link or path to\nboth 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 large- or full-sized logo, or a link or\npath to both 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":"Names of customizeable logos"}},"patternProperties":{},"closed":true,"$id":"brand-logo-unified","tags":{"description":"Provide definitions and defaults for brand's logo in various formats and sizes.\n"},"documentation":"A dictionary of named logo resources."},"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":"Path or brand.yml logo resource name."},"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":"Alternative text for the logo, used for accessibility."},"alt":{"type":"string","description":"be a string","tags":{"description":"Alternative text for the logo, used for accessibility.\n"},"documentation":"Path or brand.yml logo resource name."}},"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":"Alternative text for the logo, used for accessibility."},"alt":{"type":"string","description":"be a string","tags":{"description":"Alternative text for the logo, used for accessibility.\n"},"documentation":"Any of the ways a logo can be specified: string, object, or\nlight/dark object of string or object"}},"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":2169,"type":"anyOf","anyOf":[{"_internalId":2155,"type":"ref","$ref":"logo-specifier","description":"be logo-specifier"},{"_internalId":2168,"type":"object","description":"be an object","properties":{"light":{"_internalId":2162,"type":"ref","$ref":"logo-specifier","description":"be logo-specifier","tags":{"description":"Specification of a light logo\n"},"documentation":"Specification of a dark logo"},"dark":{"_internalId":2167,"type":"ref","$ref":"logo-specifier","description":"be logo-specifier","tags":{"description":"Specification of a dark logo\n"},"documentation":"Any of the ways a logo can be specified: string, object, or\nlight/dark object of string or object"}},"patternProperties":{},"closed":true}],"description":"be at least one of: 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\n"},"documentation":"Specification of a light logo"},"logo-light-dark-specifier-path-optional":{"_internalId":2188,"type":"anyOf","anyOf":[{"_internalId":2174,"type":"ref","$ref":"logo-specifier-path-optional","description":"be logo-specifier-path-optional"},{"_internalId":2187,"type":"object","description":"be an object","properties":{"light":{"_internalId":2181,"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 dark logo"},"dark":{"_internalId":2186,"type":"ref","$ref":"logo-specifier-path-optional","description":"be logo-specifier-path-optional","tags":{"description":"Specification of a dark logo\n"},"documentation":"Any of the ways a logo can be specified: string, object, or\nlight/dark object of string or object"}},"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":"Specification of a light logo"},"normalized-logo-light-dark-specifier":{"_internalId":2201,"type":"object","description":"be an object","properties":{"light":{"_internalId":2195,"type":"ref","$ref":"logo-options","description":"be logo-options","tags":{"description":"Options for a light logo\n"},"documentation":"Options for a dark logo"},"dark":{"_internalId":2200,"type":"ref","$ref":"logo-options","description":"be logo-options","tags":{"description":"Options for a dark logo\n"},"documentation":"The brand’s custom color palette and theme."}},"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":"Options for a light logo"},"brand-color-value":{"type":"string","description":"be a string","$id":"brand-color-value"},"brand-color-single":{"_internalId":2276,"type":"object","description":"be an object","properties":{"palette":{"_internalId":2215,"type":"object","description":"be an object","properties":{},"patternProperties":{},"additionalProperties":{"_internalId":2214,"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 foreground color, used for text."},"foreground":{"_internalId":2220,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The foreground color, used for text."},"documentation":"The background color, used for the page background."},"background":{"_internalId":2225,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The background color, used for the page background."},"documentation":"The primary accent color, i.e. the main theme color. Typically used\nfor hyperlinks, active states, primary action buttons, etc."},"primary":{"_internalId":2230,"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 secondary accent color. Typically used for lighter text or\ndisabled states."},"secondary":{"_internalId":2235,"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 tertiary accent color. Typically an even lighter color, used for\nhover states, accents, and wells."},"tertiary":{"_internalId":2240,"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 color used for positive or successful actions and\ninformation."},"success":{"_internalId":2245,"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 neutral or informational actions and\ninformation."},"info":{"_internalId":2250,"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 warning or cautionary actions and information."},"warning":{"_internalId":2255,"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 errors, dangerous actions, or negative\ninformation."},"danger":{"_internalId":2260,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The color used for errors, dangerous actions, or negative information."},"documentation":"A bright color, used as a high-contrast foreground color on dark\nelements or low-contrast background color on light elements."},"light":{"_internalId":2265,"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 dark color, used as a high-contrast foreground color on light\nelements or high-contrast background color on light elements."},"dark":{"_internalId":2270,"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":"The color used for hyperlinks. If not defined, the\nprimary color is used."},"link":{"_internalId":2275,"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":"A link or path to the brand’s light-colored logo or icon."}},"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. Any number of colors can be\ndefined, each color having a custom name."},"brand-color-light-dark":{"_internalId":2295,"type":"anyOf","anyOf":[{"_internalId":2281,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value"},{"_internalId":2294,"type":"object","description":"be an object","properties":{"light":{"_internalId":2288,"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 dark-colored logo or icon."},"dark":{"_internalId":2293,"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":"The brand’s custom color palette and theme."}},"patternProperties":{},"closed":true}],"description":"be at least one of: brand-color-value, an object","$id":"brand-color-light-dark"},"brand-color-unified":{"_internalId":2366,"type":"object","description":"be an object","properties":{"palette":{"_internalId":2305,"type":"object","description":"be an object","properties":{},"patternProperties":{},"additionalProperties":{"_internalId":2304,"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 foreground color, used for text."},"foreground":{"_internalId":2310,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The foreground color, used for text."},"documentation":"The background color, used for the page background."},"background":{"_internalId":2315,"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 primary accent color, i.e. the main theme color. Typically used\nfor hyperlinks, active states, primary action buttons, etc."},"primary":{"_internalId":2320,"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 secondary accent color. Typically used for lighter text or\ndisabled states."},"secondary":{"_internalId":2325,"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 tertiary accent color. Typically an even lighter color, used for\nhover states, accents, and wells."},"tertiary":{"_internalId":2330,"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 color used for positive or successful actions and\ninformation."},"success":{"_internalId":2335,"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 neutral or informational actions and\ninformation."},"info":{"_internalId":2340,"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 warning or cautionary actions and information."},"warning":{"_internalId":2345,"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 errors, dangerous actions, or negative\ninformation."},"danger":{"_internalId":2350,"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":"A bright color, used as a high-contrast foreground color on dark\nelements or low-contrast background color on light elements."},"light":{"_internalId":2355,"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 dark color, used as a high-contrast foreground color on light\nelements or high-contrast background color on light elements."},"dark":{"_internalId":2360,"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":"The color used for hyperlinks. If not defined, the\nprimary color is used."},"link":{"_internalId":2365,"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":"A color, which may be a named brand color."}},"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. Any number of colors can be\ndefined, each color having a custom name."},"brand-maybe-named-color":{"_internalId":2376,"type":"anyOf","anyOf":[{"_internalId":2371,"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 link or path to the brand’s light-colored logo or icon."},"brand-maybe-named-color-light-dark":{"_internalId":2395,"type":"anyOf","anyOf":[{"_internalId":2381,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},{"_internalId":2394,"type":"object","description":"be an object","properties":{"light":{"_internalId":2388,"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 dark-colored logo or icon."},"dark":{"_internalId":2393,"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 named brand color, taken either from color.theme or\ncolor.palette (in that order)."}},"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":2398,"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":"Typography definitions for the brand."},"brand-typography-single":{"_internalId":2425,"type":"object","description":"be an object","properties":{"fonts":{"_internalId":2406,"type":"array","description":"be an array of values, where each element must be brand-font","items":{"_internalId":2405,"type":"ref","$ref":"brand-font","description":"be brand-font"},"tags":{"description":"Font files and definitions for the brand."},"documentation":"The base font settings for the brand. These are used as the default\nfor all text."},"base":{"_internalId":2409,"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":"Settings for headings, or a string specifying the font family\nonly."},"headings":{"_internalId":2412,"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 monospace text, or a string specifying the font family\nonly."},"monospace":{"_internalId":2415,"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 inline code, or a string specifying the font family\nonly."},"monospace-inline":{"_internalId":2418,"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 code blocks, or a string specifying the font family\nonly."},"monospace-block":{"_internalId":2421,"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 links."},"link":{"_internalId":2424,"type":"ref","$ref":"brand-typography-options-link-single","description":"be brand-typography-options-link-single","tags":{"description":"Settings for links."},"documentation":"Typography definitions for the brand."}},"patternProperties":{},"closed":true,"$id":"brand-typography-single","tags":{"description":"Typography definitions for the brand."},"documentation":"Font files and definitions for the brand."},"brand-typography-unified":{"_internalId":2452,"type":"object","description":"be an object","properties":{"fonts":{"_internalId":2433,"type":"array","description":"be an array of values, where each element must be brand-font","items":{"_internalId":2432,"type":"ref","$ref":"brand-font","description":"be brand-font"},"tags":{"description":"Font files and definitions for the brand."},"documentation":"The base font settings for the brand. These are used as the default\nfor all text."},"base":{"_internalId":2436,"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":"Settings for headings, or a string specifying the font family\nonly."},"headings":{"_internalId":2439,"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 monospace text, or a string specifying the font family\nonly."},"monospace":{"_internalId":2442,"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 inline code, or a string specifying the font family\nonly."},"monospace-inline":{"_internalId":2445,"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 code blocks, or a string specifying the font family\nonly."},"monospace-block":{"_internalId":2448,"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 links."},"link":{"_internalId":2451,"type":"ref","$ref":"brand-typography-options-link-unified","description":"be brand-typography-options-link-unified","tags":{"description":"Settings for links."},"documentation":"Base typographic options."}},"patternProperties":{},"closed":true,"$id":"brand-typography-unified","tags":{"description":"Typography definitions for the brand."},"documentation":"Font files and definitions for the brand."},"brand-typography-options-base":{"_internalId":2470,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2469,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2465,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"line-height":{"_internalId":2468,"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":"Typographic options for headings."},"brand-typography-options-headings-single":{"_internalId":2492,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2491,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"weight":{"_internalId":2481,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"style":{"_internalId":2484,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},"color":{"_internalId":2487,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"line-height":{"_internalId":2490,"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":2514,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2513,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"weight":{"_internalId":2503,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"style":{"_internalId":2506,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},"color":{"_internalId":2509,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"line-height":{"_internalId":2512,"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 monospace elements."},"brand-typography-options-monospace-single":{"_internalId":2535,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2534,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2527,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2530,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"background-color":{"_internalId":2533,"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":2556,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2555,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2548,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2551,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"background-color":{"_internalId":2554,"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 inline monospace elements."},"brand-typography-options-monospace-inline-single":{"_internalId":2577,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2576,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2569,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2572,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"background-color":{"_internalId":2575,"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":2598,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2597,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2590,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2593,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"background-color":{"_internalId":2596,"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":"Line height"},"line-height-number-string":{"_internalId":2605,"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":"Typographic options for block monospace elements."},"brand-typography-options-monospace-block-single":{"_internalId":2629,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2628,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2618,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2621,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"background-color":{"_internalId":2624,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"line-height":{"_internalId":2627,"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":2653,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2652,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2642,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2645,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"background-color":{"_internalId":2648,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"line-height":{"_internalId":2651,"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 inline monospace elements."},"brand-typography-options-link-single":{"_internalId":2672,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2671,"type":"object","description":"be an object","properties":{"weight":{"_internalId":2662,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2665,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"background-color":{"_internalId":2668,"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":2691,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2690,"type":"object","description":"be an object","properties":{"weight":{"_internalId":2681,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2684,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"background-color":{"_internalId":2687,"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":"Names of customizeable typography elements"},"brand-named-typography-elements":{"_internalId":2694,"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":"Font files and definitions for the brand."},"brand-font":{"_internalId":2709,"type":"anyOf","anyOf":[{"_internalId":2699,"type":"ref","$ref":"brand-font-google","description":"be brand-font-google"},{"_internalId":2702,"type":"ref","$ref":"brand-font-bunny","description":"be brand-font-bunny"},{"_internalId":2705,"type":"ref","$ref":"brand-font-file","description":"be brand-font-file"},{"_internalId":2708,"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":"A font weight."},"brand-font-weight":{"_internalId":2712,"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 style."},"brand-font-style":{"_internalId":2715,"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":"The font family name, which must match the name of the font on the\nfoundry website."},"brand-font-common":{"_internalId":2741,"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 weights to include."},"weight":{"_internalId":2730,"type":"anyOf","anyOf":[{"_internalId":2728,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},{"_internalId":2729,"type":"array","description":"be an array of values, where each element must be brand-font-weight","items":{"_internalId":2728,"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 styles to include."},"style":{"_internalId":2737,"type":"anyOf","anyOf":[{"_internalId":2735,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},{"_internalId":2736,"type":"array","description":"be an array of values, where each element must be brand-font-style","items":{"_internalId":2735,"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 display method, determines how a font face is font face is\nshown depending on its download status and readiness for use."},"display":{"_internalId":2740,"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":"A method for providing font files directly, either locally or from an\nonline location."}},"patternProperties":{},"closed":true,"$id":"brand-font-common"},"brand-font-system":{"_internalId":2741,"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 weights to include."},"weight":{"_internalId":2730,"type":"anyOf","anyOf":[{"_internalId":2728,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},{"_internalId":2729,"type":"array","description":"be an array of values, where each element must be brand-font-weight","items":{"_internalId":2728,"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 styles to include."},"style":{"_internalId":2737,"type":"anyOf","anyOf":[{"_internalId":2735,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},{"_internalId":2736,"type":"array","description":"be an array of values, where each element must be brand-font-style","items":{"_internalId":2735,"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 display method, determines how a font face is font face is\nshown depending on its download status and readiness for use."},"display":{"_internalId":2740,"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":"A method for providing font files directly, either locally or from an\nonline location."},"source":{"_internalId":2746,"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":"The font family name, which must match the name of the font on the\nfoundry website."},"brand-font-google":{"_internalId":2741,"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 weights to include."},"weight":{"_internalId":2730,"type":"anyOf","anyOf":[{"_internalId":2728,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},{"_internalId":2729,"type":"array","description":"be an array of values, where each element must be brand-font-weight","items":{"_internalId":2728,"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 styles to include."},"style":{"_internalId":2737,"type":"anyOf","anyOf":[{"_internalId":2735,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},{"_internalId":2736,"type":"array","description":"be an array of values, where each element must be brand-font-style","items":{"_internalId":2735,"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 display method, determines how a font face is font face is\nshown depending on its download status and readiness for use."},"display":{"_internalId":2740,"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":"A method for providing font files directly, either locally or from an\nonline location."},"source":{"_internalId":2754,"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":"The font family name, which must match the name of the font on the\nfoundry website."},"brand-font-bunny":{"_internalId":2741,"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 weights to include."},"weight":{"_internalId":2730,"type":"anyOf","anyOf":[{"_internalId":2728,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},{"_internalId":2729,"type":"array","description":"be an array of values, where each element must be brand-font-weight","items":{"_internalId":2728,"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 styles to include."},"style":{"_internalId":2737,"type":"anyOf","anyOf":[{"_internalId":2735,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},{"_internalId":2736,"type":"array","description":"be an array of values, where each element must be brand-font-style","items":{"_internalId":2735,"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 display method, determines how a font face is font face is\nshown depending on its download status and readiness for use."},"display":{"_internalId":2740,"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":"A method for providing font files directly, either locally or from an\nonline location."},"source":{"_internalId":2762,"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":"The font family name, which must match the name of the font on the\nfoundry website."},"brand-font-file":{"_internalId":2798,"type":"object","description":"be an object","properties":{"source":{"_internalId":2770,"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 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."},"files":{"_internalId":2797,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":2796,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2795,"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":"A locally-installed font family name. When used, the end-user is\nresponsible for ensuring that the font is installed on their system."},"weight":{"_internalId":2791,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"style":{"_internalId":2794,"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 path to the font file. This can be a local path or a URL."}},"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":"The font family name."},"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 path to a brand.yml file, or an object with light and dark paths to\nbrand.yml"},"brand-single":{"_internalId":2820,"type":"object","description":"be an object","properties":{"meta":{"_internalId":2807,"type":"ref","$ref":"brand-meta","description":"be brand-meta"},"logo":{"_internalId":2810,"type":"ref","$ref":"brand-logo-single","description":"be brand-logo-single"},"color":{"_internalId":2813,"type":"ref","$ref":"brand-color-single","description":"be brand-color-single"},"typography":{"_internalId":2816,"type":"ref","$ref":"brand-typography-single","description":"be brand-typography-single"},"defaults":{"_internalId":2819,"type":"ref","$ref":"brand-defaults","description":"be brand-defaults"}},"patternProperties":{},"closed":true,"$id":"brand-single"},"brand-unified":{"_internalId":2838,"type":"object","description":"be an object","properties":{"meta":{"_internalId":2825,"type":"ref","$ref":"brand-meta","description":"be brand-meta"},"logo":{"_internalId":2828,"type":"ref","$ref":"brand-logo-unified","description":"be brand-logo-unified"},"color":{"_internalId":2831,"type":"ref","$ref":"brand-color-unified","description":"be brand-color-unified"},"typography":{"_internalId":2834,"type":"ref","$ref":"brand-typography-unified","description":"be brand-typography-unified"},"defaults":{"_internalId":2837,"type":"ref","$ref":"brand-defaults","description":"be brand-defaults"}},"patternProperties":{},"closed":true,"$id":"brand-unified"},"brand-path-only-light-dark":{"_internalId":2850,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2849,"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":"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-path-bool-light-dark":{"_internalId":2879,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":2875,"type":"object","description":"be an object","properties":{"light":{"_internalId":2866,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2865,"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 dark brand file or an inline dark brand definition."},"dark":{"_internalId":2874,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2873,"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":"Unique label for code cell"}},"patternProperties":{},"closed":true},{"_internalId":2878,"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":"The path to a light brand file or an inline light brand\ndefinition."},"brand-defaults":{"_internalId":2889,"type":"object","description":"be an object","properties":{"bootstrap":{"_internalId":2884,"type":"ref","$ref":"brand-defaults-bootstrap","description":"be brand-defaults-bootstrap"},"quarto":{"_internalId":2887,"type":"object","description":"be an object","properties":{},"patternProperties":{}}},"patternProperties":{},"$id":"brand-defaults"},"brand-defaults-bootstrap":{"_internalId":2908,"type":"object","description":"be an object","properties":{"defaults":{"_internalId":2907,"type":"object","description":"be an object","properties":{},"patternProperties":{},"additionalProperties":{"_internalId":2906,"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"},"quarto-resource-cell-attributes-label":{"type":"string","description":"be a string","documentation":"Classes to apply to cell container","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":"Array of rendering names, e.g. [light, dark]","tags":{"description":"Classes to apply to cell container"},"$id":"quarto-resource-cell-attributes-classes"},"quarto-resource-cell-attributes-renderings":{"_internalId":2917,"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 tags for notebook cell","tags":{"description":"Array of rendering names, e.g. `[light, dark]`"},"$id":"quarto-resource-cell-attributes-renderings"},"quarto-resource-cell-attributes-tags":{"_internalId":2922,"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":"Notebook cell identifier","$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":"nbconvert tag to export cell","$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":"Whether to cache a code chunk.","$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":"A prefix to be used to generate the paths of cache files","$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":"Variable names to be saved in the cache database.","$id":"quarto-resource-cell-cache-cache-path"},"quarto-resource-cell-cache-cache-vars":{"_internalId":2936,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2935,"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":"Variables names that are not created from the current 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":"Whether to lazyLoad() or directly load()\nobjects","$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":"Force rebuild of cache for chunk","$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":"Prevent comment changes from invalidating the cache for a 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":"Explicitly specify cache dependencies for this chunk (one or more\nchunk labels)","$id":"quarto-resource-cell-cache-cache-comments"},"quarto-resource-cell-cache-dependson":{"_internalId":2959,"type":"anyOf","anyOf":[{"_internalId":2952,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2951,"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":2958,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"_internalId":2957,"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":"Detect cache dependencies automatically via usage of global\nvariables","$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":"Title displayed in dashboard card header","$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":"Padding around dashboard card content (default 8px)","$id":"quarto-resource-cell-card-title"},"quarto-resource-cell-card-padding":{"_internalId":2970,"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":"Make dashboard card content expandable (default:\ntrue)","$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":"Percentage or absolute pixel width for dashboard card (defaults to\nevenly spaced across row)","$id":"quarto-resource-cell-card-expandable"},"quarto-resource-cell-card-width":{"_internalId":2979,"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 height for dashboard card (defaults to\nevenly spaced across column)","$id":"quarto-resource-cell-card-width"},"quarto-resource-cell-card-height":{"_internalId":2986,"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":"Context to execute cell within.","$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":"The type of dashboard element being produced by this code cell.","$id":"quarto-resource-cell-card-context"},"quarto-resource-cell-card-content":{"_internalId":2991,"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":"For code cells that produce a valuebox, the color of the\nvaluebox.s","$id":"quarto-resource-cell-card-content"},"quarto-resource-cell-card-color":{"_internalId":2999,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2998,"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":"Evaluate code cells (if false just echos the code into\noutput).","$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":"Include cell source code in rendered output.","$id":"quarto-resource-cell-codeoutput-eval"},"quarto-resource-cell-codeoutput-echo":{"_internalId":3009,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3008,"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":"Collapse code into an HTML <details> tag so the\nuser can display it on-demand.","$id":"quarto-resource-cell-codeoutput-echo"},"quarto-resource-cell-codeoutput-code-fold":{"_internalId":3017,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3016,"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":"Summary text to use for code blocks collapsed using\ncode-fold","$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":"Choose whether to scroll or wrap when code\nlines are too wide for their container.","$id":"quarto-resource-cell-codeoutput-code-summary"},"quarto-resource-cell-codeoutput-code-overflow":{"_internalId":3022,"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":"Include line numbers in code block output (true or\nfalse)","$id":"quarto-resource-cell-codeoutput-code-overflow"},"quarto-resource-cell-codeoutput-code-line-numbers":{"_internalId":3029,"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":"Unique label for code listing (used in cross references)","$id":"quarto-resource-cell-codeoutput-code-line-numbers"},"quarto-resource-cell-codeoutput-lst-label":{"type":"string","description":"be a string","documentation":"Caption for code listing","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":"Whether to reformat R code.","tags":{"description":"Caption for code listing"},"$id":"quarto-resource-cell-codeoutput-lst-cap"},"quarto-resource-cell-codeoutput-tidy":{"_internalId":3041,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3040,"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":"List of options to pass to tidy handler","$id":"quarto-resource-cell-codeoutput-tidy"},"quarto-resource-cell-codeoutput-tidy-opts":{"_internalId":3046,"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":"Collapse all the source and output blocks from one code chunk into a\nsingle block","$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":"Whether to add the prompt characters in R code.","$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 syntax highlight the source 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":"Class name(s) for source code blocks","$id":"quarto-resource-cell-codeoutput-highlight"},"quarto-resource-cell-codeoutput-class-source":{"_internalId":3058,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3057,"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":"Attribute(s) for source code blocks","$id":"quarto-resource-cell-codeoutput-class-source"},"quarto-resource-cell-codeoutput-attr-source":{"_internalId":3064,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3063,"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":"Default width for figures","$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 height 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":"Figure caption","$id":"quarto-resource-cell-figure-fig-height"},"quarto-resource-cell-figure-fig-cap":{"_internalId":3074,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3073,"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 subcaptions","$id":"quarto-resource-cell-figure-fig-cap"},"quarto-resource-cell-figure-fig-subcap":{"_internalId":3086,"type":"anyOf","anyOf":[{"_internalId":3079,"type":"enum","enum":[true],"description":"be 'true'","completions":["true"],"exhaustiveCompletions":true},{"_internalId":3085,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3084,"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":"Hyperlink target for the figure","tags":{"description":"Figure subcaptions"},"$id":"quarto-resource-cell-figure-fig-subcap"},"quarto-resource-cell-figure-fig-link":{"_internalId":3092,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3091,"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":"Figure horizontal alignment (default, left,\nright, or center)","$id":"quarto-resource-cell-figure-fig-link"},"quarto-resource-cell-figure-fig-align":{"_internalId":3099,"type":"anyOf","anyOf":[{"_internalId":3097,"type":"enum","enum":["default","left","right","center"],"description":"be one of: `default`, `left`, `right`, `center`","completions":["default","left","right","center"],"exhaustiveCompletions":true},{"_internalId":3098,"type":"array","description":"be an array of values, where each element must be one of: `default`, `left`, `right`, `center`","items":{"_internalId":3097,"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":"Alternative text to be used in the alt attribute of HTML\nimages.","$id":"quarto-resource-cell-figure-fig-align"},"quarto-resource-cell-figure-fig-alt":{"_internalId":3105,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3104,"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":"LaTeX environment for figure output","$id":"quarto-resource-cell-figure-fig-alt"},"quarto-resource-cell-figure-fig-env":{"_internalId":3111,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3110,"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 figure position arrangement to be used in\n\\begin{figure}[].","$id":"quarto-resource-cell-figure-fig-env"},"quarto-resource-cell-figure-fig-pos":{"_internalId":3123,"type":"anyOf","anyOf":[{"_internalId":3119,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3118,"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":3122,"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":"A short caption (only used in LaTeX output)","$id":"quarto-resource-cell-figure-fig-pos"},"quarto-resource-cell-figure-fig-scap":{"_internalId":3129,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3128,"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":"Default output format for figures (retina,\npng, jpeg, svg, or\npdf)","$id":"quarto-resource-cell-figure-fig-scap"},"quarto-resource-cell-figure-fig-format":{"_internalId":3132,"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 DPI for figures","$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":"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-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":"Width of plot in the output document","$id":"quarto-resource-cell-figure-fig-asp"},"quarto-resource-cell-figure-out-width":{"_internalId":3145,"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":"Height 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":"How plots in chunks should be kept.","$id":"quarto-resource-cell-figure-out-height"},"quarto-resource-cell-figure-fig-keep":{"_internalId":3159,"type":"anyOf","anyOf":[{"_internalId":3152,"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":3158,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"_internalId":3157,"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 to show/arrange the plots","$id":"quarto-resource-cell-figure-fig-keep"},"quarto-resource-cell-figure-fig-show":{"_internalId":3162,"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":"Additional raw LaTeX or HTML options to be applied to figures","$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":"Externalize tikz graphics (pre-compile to PDF)","$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":"sanitize tikz graphics (escape special LaTeX characters).","$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":"Time interval (number of seconds) between animation frames.","$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":"Extra options for animations","$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":"Hook function to create animations in HTML output","$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":"One or more paths of child documents to be knitted and input into the\nmain document.","$id":"quarto-resource-cell-figure-animation-hook"},"quarto-resource-cell-include-child":{"_internalId":3180,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3179,"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":"File containing code to execute for this chunk","$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":"String 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":"Include chunk when extracting code with\nknitr::purl()","$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":"2d-array of widths where the first dimension specifies columns and\nthe second rows.","$id":"quarto-resource-cell-include-purl"},"quarto-resource-cell-layout-layout":{"_internalId":3199,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3198,"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":3197,"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":"Layout output blocks into columns","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 rows","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":"Horizontal alignment for layout content (default,\nleft, right, or center)","tags":{"description":"Layout output blocks into rows"},"$id":"quarto-resource-cell-layout-layout-nrow"},"quarto-resource-cell-layout-layout-align":{"_internalId":3206,"type":"enum","enum":["default","left","center","right"],"description":"be one of: `default`, `left`, `center`, `right`","completions":["default","left","center","right"],"exhaustiveCompletions":true,"documentation":"Vertical alignment for layout content (default,\ntop, center, or bottom)","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":3209,"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 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":3212,"type":"ref","$ref":"page-column","description":"be page-column","documentation":"Page column for figure 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":3215,"type":"ref","$ref":"page-column","description":"be page-column","documentation":"Page column for table 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":3218,"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 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":3221,"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"],"description":"Where to place figure and table captions (`top`, `bottom`, or `margin`)"},"documentation":"Where to place figure captions (top,\nbottom, or margin)","$id":"quarto-resource-cell-pagelayout-cap-location"},"quarto-resource-cell-pagelayout-fig-cap-location":{"_internalId":3224,"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"],"description":"Where to place figure captions (`top`, `bottom`, or `margin`)"},"documentation":"Where to place table captions (top, bottom,\nor margin)","$id":"quarto-resource-cell-pagelayout-fig-cap-location"},"quarto-resource-cell-pagelayout-tbl-cap-location":{"_internalId":3227,"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"],"description":"Where to place table captions (`top`, `bottom`, or `margin`)"},"documentation":"Table caption","$id":"quarto-resource-cell-pagelayout-tbl-cap-location"},"quarto-resource-cell-table-tbl-cap":{"_internalId":3233,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3232,"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 subcaptions","$id":"quarto-resource-cell-table-tbl-cap"},"quarto-resource-cell-table-tbl-subcap":{"_internalId":3245,"type":"anyOf","anyOf":[{"_internalId":3238,"type":"enum","enum":[true],"description":"be 'true'","completions":["true"],"exhaustiveCompletions":true},{"_internalId":3244,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3243,"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":"Apply explicit table column widths","tags":{"description":"Table subcaptions"},"$id":"quarto-resource-cell-table-tbl-subcap"},"quarto-resource-cell-table-tbl-colwidths":{"_internalId":3258,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3252,"type":"enum","enum":["auto"],"description":"be 'auto'","completions":["auto"],"exhaustiveCompletions":true},{"_internalId":3257,"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":"If none, do not process raw HTML table in cell output\nand leave it as-is","$id":"quarto-resource-cell-table-tbl-colwidths"},"quarto-resource-cell-table-html-table-processing":{"_internalId":3261,"type":"enum","enum":["none"],"description":"be 'none'","completions":["none"],"exhaustiveCompletions":true,"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":"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":3273,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3268,"type":"enum","enum":["asis"],"description":"be 'asis'","completions":["asis"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"},{"_internalId":3271,"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 warnings in rendered 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":"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-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":"Catch all for preventing any output (code or results) from being\nincluded in output.","$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":"Panel type for cell output (tabset, input,\nsidebar, fill, center)","$id":"quarto-resource-cell-textoutput-include"},"quarto-resource-cell-textoutput-panel":{"_internalId":3282,"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":"Location of output relative to the code that generated it\n(default, fragment, slide,\ncolumn, or column-location)","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":3285,"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":"Include messages in rendered output.","$id":"quarto-resource-cell-textoutput-output-location"},"quarto-resource-cell-textoutput-message":{"_internalId":3288,"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":"How to display text results","$id":"quarto-resource-cell-textoutput-message"},"quarto-resource-cell-textoutput-results":{"_internalId":3291,"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":"Prefix to be added before each line of text 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 text/console output","$id":"quarto-resource-cell-textoutput-comment"},"quarto-resource-cell-textoutput-class-output":{"_internalId":3299,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3298,"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 text/console output","$id":"quarto-resource-cell-textoutput-class-output"},"quarto-resource-cell-textoutput-attr-output":{"_internalId":3305,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3304,"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 warning output","$id":"quarto-resource-cell-textoutput-attr-output"},"quarto-resource-cell-textoutput-class-warning":{"_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 warning output"},"documentation":"Attribute(s) for warning output","$id":"quarto-resource-cell-textoutput-class-warning"},"quarto-resource-cell-textoutput-attr-warning":{"_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 warning output"},"documentation":"Class name(s) for message output","$id":"quarto-resource-cell-textoutput-attr-warning"},"quarto-resource-cell-textoutput-class-message":{"_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 message output"},"documentation":"Attribute(s) for message output","$id":"quarto-resource-cell-textoutput-class-message"},"quarto-resource-cell-textoutput-attr-message":{"_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 message output"},"documentation":"Class name(s) for error output","$id":"quarto-resource-cell-textoutput-attr-message"},"quarto-resource-cell-textoutput-class-error":{"_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 error output"},"documentation":"Attribute(s) for error output","$id":"quarto-resource-cell-textoutput-class-error"},"quarto-resource-cell-textoutput-attr-error":{"_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 error 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-error"},"quarto-resource-document-about-about":{"_internalId":3350,"type":"anyOf","anyOf":[{"_internalId":3346,"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":3349,"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 title","$id":"quarto-resource-document-about-about"},"quarto-resource-document-attributes-title":{"type":"string","description":"be a string","documentation":"Identifies the subtitle of 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","$id":"quarto-resource-document-attributes-subtitle"},"quarto-resource-document-attributes-date":{"_internalId":3357,"type":"ref","$ref":"date","description":"be date","documentation":"Date format for the document","tags":{"description":"Document date"},"$id":"quarto-resource-document-attributes-date"},"quarto-resource-document-attributes-date-format":{"_internalId":3360,"type":"ref","$ref":"date-format","description":"be date-format","documentation":"Document date modified","tags":{"description":"Date format for the document"},"$id":"quarto-resource-document-attributes-date-format"},"quarto-resource-document-attributes-date-modified":{"_internalId":3363,"type":"ref","$ref":"date","description":"be date","tags":{"formats":["$html-doc"],"description":"Document date modified"},"documentation":"Author or authors of the document","$id":"quarto-resource-document-attributes-date-modified"},"quarto-resource-document-attributes-author":{"_internalId":3374,"type":"anyOf","anyOf":[{"_internalId":3372,"type":"anyOf","anyOf":[{"_internalId":3368,"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":3373,"type":"array","description":"be an array of values, where each element must be at least one of: an object, a string","items":{"_internalId":3372,"type":"anyOf","anyOf":[{"_internalId":3368,"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":"The list of organizations with which contributors are affiliated.","$id":"quarto-resource-document-attributes-author"},"quarto-resource-document-attributes-affiliation":{"_internalId":3385,"type":"anyOf","anyOf":[{"_internalId":3383,"type":"anyOf","anyOf":[{"_internalId":3379,"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":3384,"type":"array","description":"be an array of values, where each element must be at least one of: an object, a string","items":{"_internalId":3383,"type":"anyOf","anyOf":[{"_internalId":3379,"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":"Licensing and copyright information.","$id":"quarto-resource-document-attributes-affiliation"},"quarto-resource-document-attributes-copyright":{"_internalId":3386,"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":"Information concerning the article that identifies or describes\nit.","$id":"quarto-resource-document-attributes-copyright"},"quarto-resource-document-attributes-article":{"_internalId":3388,"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 on the journal in which the article is published.","$id":"quarto-resource-document-attributes-article"},"quarto-resource-document-attributes-journal":{"_internalId":3390,"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":"Author affiliations for the presentation.","$id":"quarto-resource-document-attributes-journal"},"quarto-resource-document-attributes-institute":{"_internalId":3402,"type":"anyOf","anyOf":[{"_internalId":3400,"type":"anyOf","anyOf":[{"_internalId":3396,"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":3401,"type":"array","description":"be an array of values, where each element must be at least one of: an object, a string","items":{"_internalId":3400,"type":"anyOf","anyOf":[{"_internalId":3396,"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":"Summary of document","$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":"Title used to label document abstract","$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":"Additional notes concerning the whole article. Added to the article’s\nfrontmatter via the <notes>\nelement.","$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":"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-notes"},"quarto-resource-document-attributes-tags":{"_internalId":3413,"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":"Displays the document Digital Object Identifier in the header.","$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":"The contents of an acknowledgments footnote after the document\ntitle.","$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":"Order for document when included in a website automatic sidebar\nmenu.","$id":"quarto-resource-document-attributes-thanks"},"quarto-resource-document-attributes-order":{"type":"number","description":"be a number","documentation":"Citation information for the document itself.","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":3427,"type":"anyOf","anyOf":[{"_internalId":3424,"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":"Enable a code copy icon for code blocks.","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":3435,"type":"anyOf","anyOf":[{"_internalId":3432,"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":"Enables hyper-linking of functions within code blocks to their online\ndocumentation.","$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":"The style to use when displaying code annotations","$id":"quarto-resource-document-code-code-link"},"quarto-resource-document-code-code-annotations":{"_internalId":3445,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3444,"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":"Include a code tools menu (for hiding and showing code).","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":3464,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3463,"type":"object","description":"be an object","properties":{"source":{"_internalId":3458,"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":"Show a thick left border on code blocks.","$id":"quarto-resource-document-code-code-tools"},"quarto-resource-document-code-code-block-border-left":{"_internalId":3471,"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 background color for code blocks.","$id":"quarto-resource-document-code-code-block-border-left"},"quarto-resource-document-code-code-block-bg":{"_internalId":3478,"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":"Specifies the coloring style to be used in highlighted source\ncode.","$id":"quarto-resource-document-code-code-block-bg"},"quarto-resource-document-code-highlight-style":{"_internalId":3490,"type":"anyOf","anyOf":[{"_internalId":3487,"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":"KDE language syntax definition file (XML)","$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 files (XML)","$id":"quarto-resource-document-code-syntax-definition"},"quarto-resource-document-code-syntax-definitions":{"_internalId":3497,"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":"Use the listings package for LaTeX code blocks.","$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":"Specify classes to use for all indented code blocks","$id":"quarto-resource-document-code-listings"},"quarto-resource-document-code-indented-code-classes":{"_internalId":3504,"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 color property.","$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 color of hyperlinks in the document.","$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 CSS background-color property on code elements\nand adds extra padding.","$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 the html\nelement.","$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 external links 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 citation 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 linked URLs 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 links in the Table of Contents using color options\nallowed by xcolor","$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":"Add color to link text, automatically enabled if any of\nlinkcolor, filecolor, citecolor,\nurlcolor, or toccolor are set.","$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":"Color for links to other content within the document.","$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":"Configuration for document commenting.","$id":"quarto-resource-document-colors-contrastcolor"},"quarto-resource-document-comments-comments":{"_internalId":3527,"type":"ref","$ref":"document-comments-configuration","description":"be document-comments-configuration","tags":{"formats":["$html-files"],"description":"Configuration for document commenting."},"documentation":"Configuration for cross-reference labels and prefixes.","$id":"quarto-resource-document-comments-comments"},"quarto-resource-document-crossref-crossref":{"_internalId":3673,"type":"anyOf","anyOf":[{"_internalId":3532,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true},{"_internalId":3672,"type":"object","description":"be an object","properties":{"custom":{"_internalId":3560,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":3559,"type":"object","description":"be an object","properties":{"kind":{"_internalId":3541,"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 prefix used in rendered references when referencing this\ntype."},"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 captions when referencing this type. If\nomitted, the field reference-prefix is used."},"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":"If false, use no space between crossref prefixes and numbering."},"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":"The key used to prefix reference labels of this type, such as “fig”,\n“tbl”, “lst”, etc."},"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":"In LaTeX output, the name of the custom environment to be used."},"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 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-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":"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-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 location of the caption relative to the crossreferenceable\ncontent."},"caption-location":{"_internalId":3558,"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":"Use top level sections (H1) in this document as chapters."}},"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 kind of cross reference (currently only “float” is\nsupported)."}},"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 delimiter used between the prefix and the caption."},"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 figure captions."},"fig-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for figure captions."},"documentation":"The title prefix used for table captions."},"tbl-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for table captions."},"documentation":"The title prefix used for equation captions."},"eq-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for equation captions."},"documentation":"The title prefix used for listing captions."},"lst-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for listing captions."},"documentation":"The title prefix used for theorem captions."},"thm-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for theorem captions."},"documentation":"The title prefix used for lemma captions."},"lem-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for lemma captions."},"documentation":"The title prefix used for corollary captions."},"cor-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for corollary captions."},"documentation":"The title prefix used for proposition captions."},"prp-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for proposition captions."},"documentation":"The title prefix used for conjecture captions."},"cnj-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for conjecture captions."},"documentation":"The title prefix used for definition captions."},"def-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for definition captions."},"documentation":"The title prefix used for example captions."},"exm-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for example captions."},"documentation":"The title prefix used for exercise captions."},"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 a figure."},"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 table."},"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 an equation."},"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 section."},"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 listing."},"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 theorem."},"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 lemma."},"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 corollary."},"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 proposition."},"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 conjecture."},"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 definition."},"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 an example."},"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 exercise."},"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 figures."},"fig-labels":{"_internalId":3617,"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 tables."},"tbl-labels":{"_internalId":3620,"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 equations."},"eq-labels":{"_internalId":3623,"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 sections."},"sec-labels":{"_internalId":3626,"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 listings."},"lst-labels":{"_internalId":3629,"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 theorems."},"thm-labels":{"_internalId":3632,"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 lemmas."},"lem-labels":{"_internalId":3635,"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 corollaries."},"cor-labels":{"_internalId":3638,"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 propositions."},"prp-labels":{"_internalId":3641,"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 conjectures."},"cnj-labels":{"_internalId":3644,"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 definitions."},"def-labels":{"_internalId":3647,"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 examples."},"exm-labels":{"_internalId":3650,"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 exercises."},"exr-labels":{"_internalId":3653,"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 figures."},"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 tables."},"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 listings."},"lol-title":{"type":"string","description":"be a string","tags":{"description":"The title used for the list of listings."},"documentation":"The number scheme used for references."},"labels":{"_internalId":3662,"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 sub references."},"subref-labels":{"_internalId":3665,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The number scheme used for sub references."},"documentation":"Whether cross references should be hyper-linked."},"ref-hyperlink":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether cross references should be hyper-linked."},"documentation":"The title used for appendix."},"appendix-title":{"type":"string","description":"be a string","tags":{"description":"The title used for appendix."},"documentation":"The delimiter beween appendix number and title."},"appendix-delim":{"type":"string","description":"be a string","tags":{"description":"The delimiter beween appendix number and title."},"documentation":"Enables a hover popup for cross references that shows the item being\nreferenced."}},"patternProperties":{},"closed":true}],"description":"be at least one of: 'false', an object","documentation":"A custom cross reference type. See Custom\nfor more details.","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":"Logo image(s) (placed on the left side of the navigation bar)","$id":"quarto-resource-document-crossref-crossrefs-hover"},"quarto-resource-document-dashboard-logo":{"_internalId":3678,"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":"Default orientation for dashboard content (default\nrows)","$id":"quarto-resource-document-dashboard-logo"},"quarto-resource-document-dashboard-orientation":{"_internalId":3681,"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":"Use scrolling rather than fill layout (default:\nfalse)","$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":"Make card content expandable (default: true)","$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":"Links to display on the dashboard navigation bar","$id":"quarto-resource-document-dashboard-expandable"},"quarto-resource-document-dashboard-nav-buttons":{"_internalId":3711,"type":"anyOf","anyOf":[{"_internalId":3709,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3708,"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":3710,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":3709,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3708,"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":"Visual editor configuration","$id":"quarto-resource-document-dashboard-nav-buttons"},"quarto-resource-document-editor-editor":{"_internalId":3752,"type":"anyOf","anyOf":[{"_internalId":3716,"type":"enum","enum":["source","visual"],"description":"be one of: `source`, `visual`","completions":["source","visual"],"exhaustiveCompletions":true},{"_internalId":3751,"type":"object","description":"be an object","properties":{"mode":{"_internalId":3721,"type":"enum","enum":["source","visual"],"description":"be one of: `source`, `visual`","completions":["source","visual"],"exhaustiveCompletions":true,"tags":{"description":"Default editing mode for document"},"documentation":"Markdown writing options for visual editor"},"markdown":{"_internalId":3746,"type":"object","description":"be an object","properties":{"wrap":{"_internalId":3731,"type":"anyOf","anyOf":[{"_internalId":3728,"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":"Write standard visual editor markdown from source mode."},"canonical":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Write standard visual editor markdown from source mode."},"documentation":"Reference writing options for visual editor"},"references":{"_internalId":3745,"type":"object","description":"be an object","properties":{"location":{"_internalId":3740,"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":"Write markdown links as references rather than inline."},"links":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Write markdown links as references rather than inline."},"documentation":"Unique prefix for references (none to prevent automatic\nprefixes)"},"prefix":{"type":"string","description":"be a string","tags":{"description":"Unique prefix for references (`none` to prevent automatic prefixes)"},"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":{},"tags":{"description":"Reference writing options for visual editor"},"documentation":"Location to write references (block,\nsection, or document)"}},"patternProperties":{},"tags":{"description":"Markdown writing options for visual editor"},"documentation":"A column number (e.g. 72), sentence, or\nnone"},"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":"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."}},"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":"Default editing mode for document","tags":{"description":"Visual editor configuration"},"$id":"quarto-resource-document-editor-editor"},"quarto-resource-document-editor-zotero":{"_internalId":3763,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3762,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3761,"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 for this publication.","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":3776,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3775,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The identifier value."},"documentation":"The identifier schema (e.g. DOI, ISBN-A,\netc.)"},"schema":{"_internalId":3774,"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":"Creators of this 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":"The identifier value.","$id":"quarto-resource-document-epub-identifier"},"quarto-resource-document-epub-creator":{"_internalId":3779,"type":"ref","$ref":"epub-contributor","description":"be epub-contributor","tags":{"formats":["$epub-all"],"description":"Creators of this publication."},"documentation":"Contributors to this publication.","$id":"quarto-resource-document-epub-creator"},"quarto-resource-document-epub-contributor":{"_internalId":3782,"type":"ref","$ref":"epub-contributor","description":"be epub-contributor","tags":{"formats":["$epub-all"],"description":"Contributors to this publication."},"documentation":"The subject of the publication.","$id":"quarto-resource-document-epub-contributor"},"quarto-resource-document-epub-subject":{"_internalId":3796,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3795,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The subject text."},"documentation":"An EPUB reserved authority value."},"authority":{"type":"string","description":"be a string","tags":{"description":"An EPUB reserved authority value."},"documentation":"The subject term (defined by the schema)."},"term":{"type":"string","description":"be a string","tags":{"description":"The subject term (defined by the schema)."},"documentation":"Text describing the specialized type 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 text.","$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 format 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 relation 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 coverage 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 rights 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":"Identifies the name of a collection to which the EPUB Publication\nbelongs.","$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":"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-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":"Sets the global direction in which content flows (ltr or\nrtl)","$id":"quarto-resource-document-epub-group-position"},"quarto-resource-document-epub-page-progression-direction":{"_internalId":3813,"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":"iBooks specific metadata options.","$id":"quarto-resource-document-epub-page-progression-direction"},"quarto-resource-document-epub-ibooks":{"_internalId":3823,"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":"Whether this book provides embedded fonts in a flowing or fixed\nlayout 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":"The scroll direction for this book (vertical,\nhorizontal, or default)"},"scroll-axis":{"_internalId":3822,"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":"Look in the specified XML file for metadata for the EPUB. The file\nshould contain a series of Dublin\nCore elements."}},"patternProperties":{},"closed":true,"tags":{"formats":["$epub-all"],"description":"iBooks specific metadata options."},"documentation":"What is new in this version of the book.","$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 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-metadata"},"quarto-resource-document-epub-epub-subdirectory":{"_internalId":3832,"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":"Embed the specified fonts in the EPUB","$id":"quarto-resource-document-epub-epub-subdirectory"},"quarto-resource-document-epub-epub-fonts":{"_internalId":3837,"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":"Specify the heading level at which to split the EPUB into separate\nchapter files.","$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":"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-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":"If false, disables the generation of a title page.","$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":"Engine used for executable code blocks.","$id":"quarto-resource-document-epub-epub-title-page"},"quarto-resource-document-execute-engine":{"type":"string","description":"be a string","completions":["jupyter","knitr","julia"],"documentation":"Configures the Jupyter engine.","tags":{"description":"Engine used for executable code blocks."},"$id":"quarto-resource-document-execute-engine"},"quarto-resource-document-execute-jupyter":{"_internalId":3864,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"},{"_internalId":3863,"type":"object","description":"be an object","properties":{"kernelspec":{"_internalId":3862,"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 of the language the kernel implements."},"language":{"type":"string","description":"be a string","tags":{"description":"The name of the language the kernel implements."},"documentation":"The name of the kernel."},"name":{"type":"string","description":"be a string","tags":{"description":"The name of the kernel."},"documentation":"Configures the Julia engine."}},"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 to display in the UI.","tags":{"description":"Configures the Jupyter engine."},"$id":"quarto-resource-document-execute-jupyter"},"quarto-resource-document-execute-julia":{"_internalId":3881,"type":"object","description":"be an object","properties":{"exeflags":{"_internalId":3873,"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":"Environment variables to pass to the Julia worker process."},"env":{"_internalId":3880,"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":"Set Knitr options."}},"patternProperties":{},"documentation":"Arguments to pass to the Julia worker process.","tags":{"description":"Configures the Julia engine."},"$id":"quarto-resource-document-execute-julia"},"quarto-resource-document-execute-knitr":{"_internalId":3895,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3894,"type":"object","description":"be an object","properties":{"opts_knit":{"_internalId":3890,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":"Knit options."},"documentation":"Knitr chunk options."},"opts_chunk":{"_internalId":3893,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":"Knitr chunk options."},"documentation":"Cache results of computations."}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object","documentation":"Knit options.","tags":{"description":"Set Knitr options."},"$id":"quarto-resource-document-execute-knitr"},"quarto-resource-document-execute-cache":{"_internalId":3903,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3902,"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":"Re-use previous computational output when rendering","$id":"quarto-resource-document-execute-cache"},"quarto-resource-document-execute-freeze":{"_internalId":3911,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3910,"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":"Document server","$id":"quarto-resource-document-execute-freeze"},"quarto-resource-document-execute-server":{"_internalId":3935,"type":"anyOf","anyOf":[{"_internalId":3916,"type":"enum","enum":["shiny"],"description":"be 'shiny'","completions":["shiny"],"exhaustiveCompletions":true},{"_internalId":3934,"type":"object","description":"be an object","properties":{"type":{"_internalId":3921,"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":"OJS variables to export to server."},"ojs-export":{"_internalId":3927,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3926,"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":"Server reactive values to import into OJS."},"ojs-import":{"_internalId":3933,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3932,"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":"Run Jupyter kernels within a peristent daemon (to mitigate kernel\nstartup time)."}},"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":"Type of server to run behind the document\n(e.g. shiny)","tags":{"description":"Document server","hidden":true},"$id":"quarto-resource-document-execute-server"},"quarto-resource-document-execute-daemon":{"_internalId":3942,"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":"Restart any running Jupyter daemon before rendering.","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":"Enable code cell execution.","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":"Execute code cell execution in Jupyter notebooks.","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":"Show code-execution related debug information.","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 width for figures generated by Matplotlib or R graphics","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 height 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 format for figures generated by Matplotlib or R graphics\n(retina, png, jpeg,\nsvg, or pdf)","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":3957,"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 DPI for figures generated by Matplotlib or R graphics","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":"The aspect ratio of the plot, i.e., the ratio of height/width.","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":"Whether to make images in this document responsive.","$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 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":"Sets the font used for when displaying code.","$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 main font size for the document.","$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":"Allows font encoding to be specified through fontenc\npackage.","$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":"Font package to use when compiling a PDF with the\npdflatex pdf-engine.","$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":"Options for the package used as fontfamily.","$id":"quarto-resource-document-fonts-fontfamily"},"quarto-resource-document-fonts-fontfamilyoptions":{"_internalId":3979,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3978,"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 sans serif 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 math 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 CJK main 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 main font options for use with xelatex or\nlualatex.","$id":"quarto-resource-document-fonts-CJKmainfont"},"quarto-resource-document-fonts-mainfontoptions":{"_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":"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 sans serif font options for use with xelatex or\nlualatex.","$id":"quarto-resource-document-fonts-mainfontoptions"},"quarto-resource-document-fonts-sansfontoptions":{"_internalId":3997,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3996,"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 monospace font options for use with xelatex or\nlualatex.","$id":"quarto-resource-document-fonts-sansfontoptions"},"quarto-resource-document-fonts-monofontoptions":{"_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 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 math font options for use with xelatex or\nlualatex.","$id":"quarto-resource-document-fonts-monofontoptions"},"quarto-resource-document-fonts-mathfontoptions":{"_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 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":"Adds additional directories to search for fonts when compiling with\nTypst.","$id":"quarto-resource-document-fonts-mathfontoptions"},"quarto-resource-document-fonts-font-paths":{"_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":["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 CJK font options for use with xelatex or\nlualatex.","$id":"quarto-resource-document-fonts-font-paths"},"quarto-resource-document-fonts-CJKoptions":{"_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 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":"Options to pass to the microtype package.","$id":"quarto-resource-document-fonts-CJKoptions"},"quarto-resource-document-fonts-microtypeoptions":{"_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":["$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":"The point size, for example, 10p.","$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 line height, for example, 12p.","$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":"Sets the line height or spacing for text in the document.","$id":"quarto-resource-document-fonts-lineheight"},"quarto-resource-document-fonts-linestretch":{"_internalId":4038,"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":"Adjusts line spacing using the \\setupinterlinespace\ncommand.","$id":"quarto-resource-document-fonts-linestretch"},"quarto-resource-document-fonts-interlinespace":{"_internalId":4044,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4043,"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":"The typeface style for links in the document.","$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":"Set the spacing between paragraphs, for example none,\n`small.","$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":"Enables a hover popup for footnotes that shows the footnote\ncontents.","$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":"Causes links to be printed as footnotes.","$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":"Location for footnotes and references","$id":"quarto-resource-document-footnotes-links-as-notes"},"quarto-resource-document-footnotes-reference-location":{"_internalId":4055,"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"],"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":"Set the indentation of paragraphs with one or more options.","$id":"quarto-resource-document-footnotes-reference-location"},"quarto-resource-document-formatting-indenting":{"_internalId":4061,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","completions":["yes","no","none","small","medium","big","first","next","odd","even","normal"]},{"_internalId":4060,"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":"Adjusts text to the left, right, center, or both margins\n(l, r, c, or b).","$id":"quarto-resource-document-formatting-indenting"},"quarto-resource-document-formatting-adjusting":{"_internalId":4064,"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":"Whether to hyphenate text at line breaks even in words that do not\ncontain hyphens.","$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":"If true, tables are formatted as RST list tables.","$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":"Specify the heading level at which to split the EPUB into separate\nchapter files.","$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":"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-split-level"},"quarto-resource-document-funding-funding":{"_internalId":4173,"type":"anyOf","anyOf":[{"_internalId":4171,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4170,"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":"Open access provisions that apply to a work or the funding\ninformation that provided the open access provisions."},"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":"Unique identifier assigned to an award, contract, or grant."},"awards":{"_internalId":4169,"type":"anyOf","anyOf":[{"_internalId":4167,"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":"The name of this award"},"name":{"type":"string","description":"be a string","tags":{"description":"The name of this award"},"documentation":"The description for this award."},"description":{"type":"string","description":"be a string","tags":{"description":"The description for this award."},"documentation":"Agency or organization that funded the research on which a work was\nbased."},"source":{"_internalId":4108,"type":"anyOf","anyOf":[{"_internalId":4106,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4105,"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":"Abbreviation for country where source of grant is located."},"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":"Individual(s) or institution(s) to whom the award was given (for\nexample, the principal grant holder or the sponsored individual)."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"},{"_internalId":4107,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":4106,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4105,"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":"Abbreviation for country where source of grant is located."},"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":"Individual(s) or institution(s) to whom the award was given (for\nexample, the principal grant holder or the sponsored individual)."}},"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":4137,"type":"anyOf","anyOf":[{"_internalId":4135,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4119,"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 name of an individual that was the recipient of the funding."}},"patternProperties":{},"closed":true},{"_internalId":4124,"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 institution that was the recipient of the funding."}},"patternProperties":{},"closed":true},{"_internalId":4134,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4133,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4131,"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":"Individual(s) responsible for the intellectual content of the work\nreported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4136,"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":4135,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4119,"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 name of an individual that was the recipient of the funding."}},"patternProperties":{},"closed":true},{"_internalId":4124,"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 institution that was the recipient of the funding."}},"patternProperties":{},"closed":true},{"_internalId":4134,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4133,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4131,"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":"Individual(s) responsible for the intellectual content of the work\nreported 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 id of an author or affiliation in the document metadata."},"investigator":{"_internalId":4166,"type":"anyOf","anyOf":[{"_internalId":4164,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4148,"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 name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4153,"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 institution that was responsible for the intellectual content of\nthe work reported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4163,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4162,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4160,"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":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4165,"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":4164,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4148,"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 name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4153,"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 institution that was responsible for the intellectual content of\nthe work reported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4163,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4162,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4160,"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":"Format to write to (e.g. html)"}},"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 id of an author or affiliation in the document metadata."}},"patternProperties":{}},{"_internalId":4168,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":4167,"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":"The name of this award"},"name":{"type":"string","description":"be a string","tags":{"description":"The name of this award"},"documentation":"The description for this award."},"description":{"type":"string","description":"be a string","tags":{"description":"The description for this award."},"documentation":"Agency or organization that funded the research on which a work was\nbased."},"source":{"_internalId":4108,"type":"anyOf","anyOf":[{"_internalId":4106,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4105,"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":"Abbreviation for country where source of grant is located."},"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":"Individual(s) or institution(s) to whom the award was given (for\nexample, the principal grant holder or the sponsored individual)."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"},{"_internalId":4107,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":4106,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4105,"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":"Abbreviation for country where source of grant is located."},"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":"Individual(s) or institution(s) to whom the award was given (for\nexample, the principal grant holder or the sponsored individual)."}},"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":4137,"type":"anyOf","anyOf":[{"_internalId":4135,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4119,"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 name of an individual that was the recipient of the funding."}},"patternProperties":{},"closed":true},{"_internalId":4124,"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 institution that was the recipient of the funding."}},"patternProperties":{},"closed":true},{"_internalId":4134,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4133,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4131,"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":"Individual(s) responsible for the intellectual content of the work\nreported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4136,"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":4135,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4119,"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 name of an individual that was the recipient of the funding."}},"patternProperties":{},"closed":true},{"_internalId":4124,"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 institution that was the recipient of the funding."}},"patternProperties":{},"closed":true},{"_internalId":4134,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4133,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4131,"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":"Individual(s) responsible for the intellectual content of the work\nreported 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 id of an author or affiliation in the document metadata."},"investigator":{"_internalId":4166,"type":"anyOf","anyOf":[{"_internalId":4164,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4148,"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 name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4153,"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 institution that was responsible for the intellectual content of\nthe work reported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4163,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4162,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4160,"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":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4165,"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":4164,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4148,"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 name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4153,"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 institution that was responsible for the intellectual content of\nthe work reported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4163,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4162,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4160,"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":"Format to write to (e.g. html)"}},"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 id of an author or affiliation in the document metadata."}},"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":4172,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":4171,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4170,"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":"Open access provisions that apply to a work or the funding\ninformation that provided the open access provisions."},"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":"Unique identifier assigned to an award, contract, or grant."},"awards":{"_internalId":4169,"type":"anyOf","anyOf":[{"_internalId":4167,"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":"The name of this award"},"name":{"type":"string","description":"be a string","tags":{"description":"The name of this award"},"documentation":"The description for this award."},"description":{"type":"string","description":"be a string","tags":{"description":"The description for this award."},"documentation":"Agency or organization that funded the research on which a work was\nbased."},"source":{"_internalId":4108,"type":"anyOf","anyOf":[{"_internalId":4106,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4105,"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":"Abbreviation for country where source of grant is located."},"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":"Individual(s) or institution(s) to whom the award was given (for\nexample, the principal grant holder or the sponsored individual)."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"},{"_internalId":4107,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":4106,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4105,"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":"Abbreviation for country where source of grant is located."},"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":"Individual(s) or institution(s) to whom the award was given (for\nexample, the principal grant holder or the sponsored individual)."}},"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":4137,"type":"anyOf","anyOf":[{"_internalId":4135,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4119,"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 name of an individual that was the recipient of the funding."}},"patternProperties":{},"closed":true},{"_internalId":4124,"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 institution that was the recipient of the funding."}},"patternProperties":{},"closed":true},{"_internalId":4134,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4133,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4131,"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":"Individual(s) responsible for the intellectual content of the work\nreported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4136,"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":4135,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4119,"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 name of an individual that was the recipient of the funding."}},"patternProperties":{},"closed":true},{"_internalId":4124,"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 institution that was the recipient of the funding."}},"patternProperties":{},"closed":true},{"_internalId":4134,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4133,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4131,"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":"Individual(s) responsible for the intellectual content of the work\nreported 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 id of an author or affiliation in the document metadata."},"investigator":{"_internalId":4166,"type":"anyOf","anyOf":[{"_internalId":4164,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4148,"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 name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4153,"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 institution that was responsible for the intellectual content of\nthe work reported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4163,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4162,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4160,"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":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4165,"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":4164,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4148,"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 name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4153,"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 institution that was responsible for the intellectual content of\nthe work reported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4163,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4162,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4160,"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":"Format to write to (e.g. html)"}},"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 id of an author or affiliation in the document metadata."}},"patternProperties":{}},{"_internalId":4168,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":4167,"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":"The name of this award"},"name":{"type":"string","description":"be a string","tags":{"description":"The name of this award"},"documentation":"The description for this award."},"description":{"type":"string","description":"be a string","tags":{"description":"The description for this award."},"documentation":"Agency or organization that funded the research on which a work was\nbased."},"source":{"_internalId":4108,"type":"anyOf","anyOf":[{"_internalId":4106,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4105,"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":"Abbreviation for country where source of grant is located."},"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":"Individual(s) or institution(s) to whom the award was given (for\nexample, the principal grant holder or the sponsored individual)."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"},{"_internalId":4107,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":4106,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4105,"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":"Abbreviation for country where source of grant is located."},"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":"Individual(s) or institution(s) to whom the award was given (for\nexample, the principal grant holder or the sponsored individual)."}},"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":4137,"type":"anyOf","anyOf":[{"_internalId":4135,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4119,"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 name of an individual that was the recipient of the funding."}},"patternProperties":{},"closed":true},{"_internalId":4124,"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 institution that was the recipient of the funding."}},"patternProperties":{},"closed":true},{"_internalId":4134,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4133,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4131,"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":"Individual(s) responsible for the intellectual content of the work\nreported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4136,"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":4135,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4119,"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 name of an individual that was the recipient of the funding."}},"patternProperties":{},"closed":true},{"_internalId":4124,"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 institution that was the recipient of the funding."}},"patternProperties":{},"closed":true},{"_internalId":4134,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4133,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4131,"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":"Individual(s) responsible for the intellectual content of the work\nreported 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 id of an author or affiliation in the document metadata."},"investigator":{"_internalId":4166,"type":"anyOf","anyOf":[{"_internalId":4164,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4148,"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 name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4153,"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 institution that was responsible for the intellectual content of\nthe work reported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4163,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4162,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4160,"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":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4165,"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":4164,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4148,"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 name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4153,"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 institution that was responsible for the intellectual content of\nthe work reported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4163,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4162,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4160,"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":"Format to write to (e.g. html)"}},"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 id of an author or affiliation in the document metadata."}},"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":"Displayable prose statement that describes the funding for the\nresearch on which a work was based.","$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":"Input file 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-writer"},"quarto-resource-document-hidden-input-file":{"type":"string","description":"be a string","documentation":"Input files 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":4182,"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":"Input files to read from","hidden":true},"$id":"quarto-resource-document-hidden-input-files"},"quarto-resource-document-hidden-defaults":{"_internalId":4187,"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":"Include options from the specified defaults files","hidden":true},"$id":"quarto-resource-document-hidden-defaults"},"quarto-resource-document-hidden-variables":{"_internalId":4188,"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":4190,"type":"object","description":"be an object","properties":{},"patternProperties":{},"documentation":"Headers to include with HTTP requests by Pandoc","tags":{"description":"Pandoc metadata variables","hidden":true},"$id":"quarto-resource-document-hidden-metadata"},"quarto-resource-document-hidden-request-headers":{"_internalId":4194,"type":"ref","$ref":"pandoc-format-request-headers","description":"be pandoc-format-request-headers","documentation":"Display trace debug output.","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":"Exit with error status if there are any warnings.","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":"Print information about command-line arguments to stdout,\nthen exit.","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":"Ignore command-line arguments (for use in wrapper scripts).","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":"Parse each file individually before combining for multifile\ndocuments.","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":"Specify the user data directory to search for pandoc data files.","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":"Level of program output (INFO, ERROR, or\nWARNING)","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":4209,"type":"enum","enum":["ERROR","WARNING","INFO"],"description":"be one of: `ERROR`, `WARNING`, `INFO`","completions":["ERROR","WARNING","INFO"],"exhaustiveCompletions":true,"documentation":"Write log messages in machine-readable JSON format to FILE.","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":"Specify what to do with insertions, deletions, and comments produced\nby the MS Word “Track Changes” feature.","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":4214,"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":"Embed the input file source code in the generated HTML","$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":"Keep hidden source code and output (marked with class\n.hidden)","$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":"Generate HTML output (if necessary) even when targeting markdown.","$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":"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-prefer-html"},"quarto-resource-document-hidden-output-divs":{"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":"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 header.","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":4230,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4229,"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 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-header-includes"},"quarto-resource-document-includes-include-before":{"_internalId":4236,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4235,"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 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-before"},"quarto-resource-document-includes-include-after":{"_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 body (before the `` tag in HTML, or the `\\end{document}` command in LaTeX).","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-include-after"},"quarto-resource-document-includes-include-before-body":{"_internalId":4254,"type":"anyOf","anyOf":[{"_internalId":4252,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4251,"type":"ref","$ref":"smart-include","description":"be smart-include"}],"description":"be at least one of: a string, smart-include"},{"_internalId":4253,"type":"array","description":"be an array of values, where each element must be at least one of: a string, smart-include","items":{"_internalId":4252,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4251,"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 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-body"},"quarto-resource-document-includes-include-after-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 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 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-body"},"quarto-resource-document-includes-include-in-header":{"_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 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":"Path (or glob) to files to publish with this document.","$id":"quarto-resource-document-includes-include-in-header"},"quarto-resource-document-includes-resources":{"_internalId":4284,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4283,"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":"Text to be in a running header.","$id":"quarto-resource-document-includes-resources"},"quarto-resource-document-includes-headertext":{"_internalId":4290,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4289,"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 footer.","$id":"quarto-resource-document-includes-headertext"},"quarto-resource-document-includes-footertext":{"_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":["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":"Whether to include all source documents as file attachments in the\nPDF file.","$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":"The footer for man pages.","$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 header 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":"Include file with YAML metadata","$id":"quarto-resource-document-includes-header"},"quarto-resource-document-includes-metadata-file":{"type":"string","description":"be a string","documentation":"Include files 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":4309,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"documentation":"Identifies the main language of the document (e.g. en or\nen-GB).","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":"YAML file containing custom language translations","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":4318,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4316,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","documentation":"The base script direction for the document (rtl or\nltr).","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":"Use Quarto’s built-in PDF rendering wrapper","$id":"quarto-resource-document-language-shorthands"},"quarto-resource-document-language-dir":{"_internalId":4323,"type":"enum","enum":["rtl","ltr"],"description":"be one of: `rtl`, `ltr`","completions":["rtl","ltr"],"exhaustiveCompletions":true,"documentation":"Enable/disable automatic LaTeX package installation","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":"Minimum 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":"Maximum number of compilation passes.","$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":"Clean intermediates after compilation.","$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":"Program to use 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 makeindex.","$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":"Array of command line options for tlmgr.","$id":"quarto-resource-document-latexmk-latex-makeindex"},"quarto-resource-document-latexmk-latex-makeindex-opts":{"_internalId":4340,"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":"Output directory for intermediates and PDF.","$id":"quarto-resource-document-latexmk-latex-makeindex-opts"},"quarto-resource-document-latexmk-latex-tlmgr-opts":{"_internalId":4345,"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":"Set to false to prevent an installation of TinyTex from\nbeing used to compile PDF documents.","$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":"Array of paths LaTeX should search for inputs.","$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":"The document class.","$id":"quarto-resource-document-latexmk-latex-tinytex"},"quarto-resource-document-latexmk-latex-input-paths":{"_internalId":4354,"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":"Options for the document class,","$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":"Control the \\pagestyle{} for the document.","$id":"quarto-resource-document-layout-documentclass"},"quarto-resource-document-layout-classoption":{"_internalId":4362,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4361,"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 paper size for the document.","$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 brand mode to use for rendering the document, light\nor dark.","$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 options for margins and text layout for this document.","$id":"quarto-resource-document-layout-papersize"},"quarto-resource-document-layout-brand-mode":{"_internalId":4369,"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 page layout to use for this document (article,\nfull, or custom)","$id":"quarto-resource-document-layout-brand-mode"},"quarto-resource-document-layout-layout":{"_internalId":4375,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4374,"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":"Target page width for output (used to compute columns widths for\nlayout divs)","$id":"quarto-resource-document-layout-layout"},"quarto-resource-document-layout-page-layout":{"_internalId":4378,"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":"Properties of the grid system used to layout Quarto HTML pages.","$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":"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-width"},"quarto-resource-document-layout-grid":{"_internalId":4394,"type":"object","description":"be an object","properties":{"content-mode":{"_internalId":4385,"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 margin (right) 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 base width of the body (center) column in an HTML page."},"margin-width":{"type":"string","description":"be a string","tags":{"description":"The base width of the margin (right) column in an HTML page."},"documentation":"The width of the gutter that appears between columns in an HTML\npage."},"body-width":{"type":"string","description":"be a string","tags":{"description":"The base width of the body (center) column in an HTML page."},"documentation":"The layout of the appendix for this document (none,\nplain, or default)"},"gutter-width":{"type":"string","description":"be a string","tags":{"description":"The width of the gutter that appears between columns in an HTML page."},"documentation":"Controls the formats which are provided in the citation section of\nthe appendix (false, display, or\nbibtex)."}},"patternProperties":{},"closed":true,"documentation":"The base width of the sidebar (left) column in an HTML page.","tags":{"description":{"short":"Properties of the grid system used to layout Quarto HTML pages."}},"$id":"quarto-resource-document-layout-grid"},"quarto-resource-document-layout-appendix-style":{"_internalId":4400,"type":"anyOf","anyOf":[{"_internalId":4399,"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 title block for this document (none,\nplain, or default).","$id":"quarto-resource-document-layout-appendix-style"},"quarto-resource-document-layout-appendix-cite-as":{"_internalId":4412,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4411,"type":"anyOf","anyOf":[{"_internalId":4409,"type":"enum","enum":["display","bibtex"],"description":"be one of: `display`, `bibtex`","completions":["display","bibtex"],"exhaustiveCompletions":true},{"_internalId":4410,"type":"array","description":"be an array of values, where each element must be one of: `display`, `bibtex`","items":{"_internalId":4409,"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":"Apply a banner style treatment to the title block.","$id":"quarto-resource-document-layout-appendix-cite-as"},"quarto-resource-document-layout-title-block-style":{"_internalId":4418,"type":"anyOf","anyOf":[{"_internalId":4417,"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":"Sets the color of text elements in a banner style title block.","$id":"quarto-resource-document-layout-title-block-style"},"quarto-resource-document-layout-title-block-banner":{"_internalId":4425,"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":"Enables or disables the display of categories in 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":"Adds a css max-width to the body Element.","$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 left 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 right 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 top 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 bottom 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":"Options for the geometry 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":"Additional non-color options for the hyperref package.","$id":"quarto-resource-document-layout-margin-bottom"},"quarto-resource-document-layout-geometry":{"_internalId":4445,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4444,"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":"Whether to use document class settings for indentation.","$id":"quarto-resource-document-layout-geometry"},"quarto-resource-document-layout-hyperrefoptions":{"_internalId":4451,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4450,"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":"Make \\paragraph and \\subparagraph\nfree-standing rather than run-in.","$id":"quarto-resource-document-layout-hyperrefoptions"},"quarto-resource-document-layout-indent":{"_internalId":4458,"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":"Directory containing reveal.js files.","$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 s5 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 Slidy 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":"The base url for Slideous 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":"Enable or disable lightbox treatment for images in this document. See\nLightbox\nFigures for more details.","$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":"Set this to auto if you’d like any image to be given\nlightbox treatment.","$id":"quarto-resource-document-library-slideous-url"},"quarto-resource-document-lightbox-lightbox":{"_internalId":4498,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4475,"type":"enum","enum":["auto"],"description":"be 'auto'","completions":["auto"],"exhaustiveCompletions":true},{"_internalId":4497,"type":"object","description":"be an object","properties":{"match":{"_internalId":4482,"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":"The position of the title and description when displaying a lightbox.\nOne of top, bottom, left,\nright. Defaults to bottom."},"effect":{"_internalId":4487,"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":"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."},"desc-position":{"_internalId":4492,"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":"A class name to apply to the lightbox to allow css targeting. This\nwill replace the lightbox class with your custom class name."},"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":"Show a special icon next to links that leave the current site."},"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":"Open external links in a new browser window or tab (rather than\nnavigating the current tab)."}},"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 effect that should be used when opening and closing the lightbox.\nOne of fade, zoom, none. Defaults\nto zoom.","$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":"A regular expression that can be used to determine whether a link is\nan internal link.","$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":"Controls whether links to other rendered formats are displayed in\nHTML output.","$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 title for the link.","$id":"quarto-resource-document-links-link-external-filter"},"quarto-resource-document-links-format-links":{"_internalId":4536,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4535,"type":"anyOf","anyOf":[{"_internalId":4533,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4523,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The title for the link."},"documentation":"The icon for the link."},"href":{"type":"string","description":"be a string","tags":{"description":"The href for the link."},"documentation":"The format that this link represents."},"icon":{"type":"string","description":"be a string","tags":{"description":"The icon for the link."},"documentation":"The title for this link."}},"patternProperties":{},"required":["text","href"]},{"_internalId":4532,"type":"object","description":"be an object","properties":{"format":{"type":"string","description":"be a string","tags":{"description":"The format that this link represents."},"documentation":"The icon for this link."},"text":{"type":"string","description":"be a string","tags":{"description":"The title for this link."},"documentation":"Controls the display of links to notebooks that provided embedded\ncontent or are created from documents."},"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 Other Links section."}},"patternProperties":{},"required":["text","format"]}],"description":"be at least one of: a string, an object, an object"},{"_internalId":4534,"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":4533,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4523,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The title for the link."},"documentation":"The icon for the link."},"href":{"type":"string","description":"be a string","tags":{"description":"The href for the link."},"documentation":"The format that this link represents."},"icon":{"type":"string","description":"be a string","tags":{"description":"The icon for the link."},"documentation":"The title for this link."}},"patternProperties":{},"required":["text","href"]},{"_internalId":4532,"type":"object","description":"be an object","properties":{"format":{"type":"string","description":"be a string","tags":{"description":"The format that this link represents."},"documentation":"The icon for this link."},"text":{"type":"string","description":"be a string","tags":{"description":"The title for this link."},"documentation":"Controls the display of links to notebooks that provided embedded\ncontent or are created from documents."},"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 Other 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 href for the link.","$id":"quarto-resource-document-links-format-links"},"quarto-resource-document-links-notebook-links":{"_internalId":4544,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4543,"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":"A list of links that should be displayed below the table of contents\nin an Code Links section.","$id":"quarto-resource-document-links-notebook-links"},"quarto-resource-document-links-other-links":{"_internalId":4553,"type":"anyOf","anyOf":[{"_internalId":4549,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true},{"_internalId":4552,"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":"Controls whether referenced notebooks are embedded in JATS output as\nsubarticles.","$id":"quarto-resource-document-links-other-links"},"quarto-resource-document-links-code-links":{"_internalId":4562,"type":"anyOf","anyOf":[{"_internalId":4558,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true},{"_internalId":4561,"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":"Configures the HTML viewer for notebooks that provide embedded\ncontent.","$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":"The style of document to render. Setting this to\nnotebook will create additional notebook style\naffordances.","$id":"quarto-resource-document-links-notebook-subarticles"},"quarto-resource-document-links-notebook-view":{"_internalId":4581,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4580,"type":"anyOf","anyOf":[{"_internalId":4578,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4577,"type":"ref","$ref":"notebook-view-schema","description":"be notebook-view-schema"}],"description":"be at least one of: a string, notebook-view-schema"},{"_internalId":4579,"type":"array","description":"be an array of values, where each element must be at least one of: a string, notebook-view-schema","items":{"_internalId":4578,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4577,"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":"Options for controlling the display and behavior of Notebook\npreviews.","$id":"quarto-resource-document-links-notebook-view"},"quarto-resource-document-links-notebook-view-style":{"_internalId":4584,"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":"Whether to show a back button in the notebook preview.","$id":"quarto-resource-document-links-notebook-view-style"},"quarto-resource-document-links-notebook-preview-options":{"_internalId":4589,"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":"Automatically generate the contents of a page from a list of Quarto\ndocuments or other custom data."}},"patternProperties":{},"tags":{"formats":["$html-doc"],"description":"Options for controlling the display and behavior of Notebook previews."},"documentation":"Include a canonical link tag in website pages","$id":"quarto-resource-document-links-notebook-preview-options"},"quarto-resource-document-links-canonical-url":{"_internalId":4596,"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":"Mermaid diagram options","$id":"quarto-resource-document-links-canonical-url"},"quarto-resource-document-listing-listing":{"_internalId":4613,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4612,"type":"anyOf","anyOf":[{"_internalId":4610,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4609,"type":"ref","$ref":"website-listing","description":"be website-listing"}],"description":"be at least one of: a string, website-listing"},{"_internalId":4611,"type":"array","description":"be an array of values, where each element must be at least one of: a string, website-listing","items":{"_internalId":4610,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4609,"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":"The mermaid built-in theme to use.","$id":"quarto-resource-document-listing-listing"},"quarto-resource-document-mermaid-mermaid":{"_internalId":4619,"type":"object","description":"be an object","properties":{"theme":{"_internalId":4618,"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 subject"}},"patternProperties":{},"tags":{"formats":["$html-files"],"description":"Mermaid diagram options"},"documentation":"List of keywords to be included in the document metadata.","$id":"quarto-resource-document-mermaid-mermaid"},"quarto-resource-document-metadata-keywords":{"_internalId":4625,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4624,"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 description. Some applications show this as\nComments 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 category.","$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 copyright for this document, if any.","$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 year for this copyright","$id":"quarto-resource-document-metadata-category"},"quarto-resource-document-metadata-copyright":{"_internalId":4662,"type":"anyOf","anyOf":[{"_internalId":4659,"type":"object","description":"be an object","properties":{"year":{"_internalId":4646,"type":"anyOf","anyOf":[{"_internalId":4644,"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":4645,"type":"array","description":"be an array of values, where each element must be at least one of: a string, a number","items":{"_internalId":4644,"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 holder of the copyright."},"holder":{"_internalId":4652,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"The holder of the copyright."},"documentation":"The text to display for the license."},{"_internalId":4651,"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 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]}},"statement":{"_internalId":4658,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"The text to display for the license."},"documentation":"The type of the license."},{"_internalId":4657,"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 type of 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":4680,"type":"anyOf","anyOf":[{"_internalId":4678,"type":"anyOf","anyOf":[{"_internalId":4675,"type":"object","description":"be an object","properties":{"type":{"type":"string","description":"be a string","tags":{"description":"The type of the license."},"documentation":"The text to display for the license."},"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":"Sets the title metadata for the document"}},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string"},{"_internalId":4679,"type":"array","description":"be an array of values, where each element must be at least one of: an object, a string","items":{"_internalId":4678,"type":"anyOf","anyOf":[{"_internalId":4675,"type":"object","description":"be an object","properties":{"type":{"type":"string","description":"be a string","tags":{"description":"The type of the license."},"documentation":"The text to display for the license."},"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":"Sets the title metadata for the document"}},"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":"A URL to 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":"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-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 description 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 author 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":"Sets the date 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":"Number section headings","$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 depth to which sections should be numbered.","$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":"The numbering depth for sections. (Use number-depth\ninstead).","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":"Offset for section headings in output (offsets are 0 by default)","$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":"Schema to use for numbering sections, e.g. 1.A.1","$id":"quarto-resource-document-numbering-secnumdepth"},"quarto-resource-document-numbering-number-offset":{"_internalId":4704,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"_internalId":4703,"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":"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-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-pagenumbering":{"_internalId":4714,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4713,"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":"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-pagenumbering"},"quarto-resource-document-numbering-top-level-division":{"_internalId":4717,"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":"Use the specified file as a style reference in producing a docx,\npptx, or odt file.","$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":"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-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":"Theme name, theme scss file, or a mix of both.","$id":"quarto-resource-document-options-reference-doc"},"quarto-resource-document-options-brand":{"_internalId":4724,"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":4749,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4733,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}},{"_internalId":4748,"type":"object","description":"be an object","properties":{"light":{"_internalId":4741,"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 dark theme name, theme scss file, or a mix of both."},{"_internalId":4740,"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 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]}},"dark":{"_internalId":4747,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"The dark theme name, theme scss file, or a mix of both."},"documentation":"Disables the built in html features like theming, anchor sections,\ncode block behavior, and more."},{"_internalId":4746,"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":"Disables the built in html features like theming, anchor sections,\ncode block behavior, and more."}}],"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 light 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":"Enables inclusion of Pandoc default CSS for this 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":"One or more CSS style sheets.","$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 hover over a section title to see an anchor link.","$id":"quarto-resource-document-options-document-css"},"quarto-resource-document-options-css":{"_internalId":4761,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4760,"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 tabsets to present content.","$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 smooth scrolling within the page.","$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 setting dark mode based on the\nprefers-color-scheme media query.","$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":"Method use to render math in HTML output","$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":"Wrap sections in <section> tags and attach\nidentifiers to the enclosing <section> rather than\nthe heading itself.","$id":"quarto-resource-document-options-respect-user-color-scheme"},"quarto-resource-document-options-html-math-method":{"_internalId":4783,"type":"anyOf","anyOf":[{"_internalId":4774,"type":"ref","$ref":"math-methods","description":"be math-methods"},{"_internalId":4782,"type":"object","description":"be an object","properties":{"method":{"_internalId":4779,"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":"Specify a prefix to be added to all identifiers and internal\nlinks.","$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":"Method for obfuscating mailto: links in HTML documents.","$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 <q> tags for quotes in HTML.","$id":"quarto-resource-document-options-identifier-prefix"},"quarto-resource-document-options-email-obfuscation":{"_internalId":4790,"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 specified engine when producing PDF output.","$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 the given string as a command-line argument to the\npdf-engine.","$id":"quarto-resource-document-options-html-q-tags"},"quarto-resource-document-options-pdf-engine":{"_internalId":4795,"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":"Pass multiple command-line arguments to the\npdf-engine.","$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":"Whether to produce a Beamer article from this presentation.","$id":"quarto-resource-document-options-pdf-engine-opt"},"quarto-resource-document-options-pdf-engine-opts":{"_internalId":4802,"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":"Add an extra Beamer option using \\setbeameroption{}.","$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 aspect ratio for this presentation.","$id":"quarto-resource-document-options-beamerarticle"},"quarto-resource-document-options-beameroption":{"_internalId":4810,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4809,"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 logo image.","$id":"quarto-resource-document-options-beameroption"},"quarto-resource-document-options-aspectratio":{"_internalId":4813,"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 image for the title slide.","$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":"Controls navigation symbols for the presentation (empty,\nframe, vertical, or\nhorizontal)","$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":"Whether to enable title pages for new sections.","$id":"quarto-resource-document-options-titlegraphic"},"quarto-resource-document-options-navigation":{"_internalId":4820,"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 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 color theme options for this presentation, passed to\n\\usecolortheme.","$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 for this presentation, passed to\n\\usefonttheme.","$id":"quarto-resource-document-options-colortheme"},"quarto-resource-document-options-colorthemeoptions":{"_internalId":4830,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4829,"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 font theme options for this presentation, passed to\n\\usefonttheme.","$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 for this presentation, passed to\n\\useinnertheme.","$id":"quarto-resource-document-options-fonttheme"},"quarto-resource-document-options-fontthemeoptions":{"_internalId":4838,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4837,"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 inner theme options for this presentation, passed to\n\\useinnertheme.","$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 for this presentation, passed to\n\\useoutertheme.","$id":"quarto-resource-document-options-innertheme"},"quarto-resource-document-options-innerthemeoptions":{"_internalId":4846,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4845,"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 outer theme options for this presentation, passed to\n\\useoutertheme.","$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":"Options passed to LaTeX Beamer themes inside\n\\usetheme.","$id":"quarto-resource-document-options-outertheme"},"quarto-resource-document-options-outerthemeoptions":{"_internalId":4854,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4853,"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 section number in man pages.","$id":"quarto-resource-document-options-outerthemeoptions"},"quarto-resource-document-options-themeoptions":{"_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":"Options passed to LaTeX Beamer themes inside `\\usetheme`."},"documentation":"Enable and disable extensions for markdown output (e.g. “+emoji”)","$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":"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-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":"Determines which ipynb cell output formats are rendered\n(none, all, or best).","$id":"quarto-resource-document-options-variant"},"quarto-resource-document-options-markdown-headings":{"_internalId":4867,"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":"semver version range for required quarto version","$id":"quarto-resource-document-options-markdown-headings"},"quarto-resource-document-options-ipynb-output":{"_internalId":4870,"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":"The mode to use when previewing this document.","$id":"quarto-resource-document-options-ipynb-output"},"quarto-resource-document-options-quarto-required":{"type":"string","description":"be a string","documentation":"Adds the necessary setup to the document preamble to generate PDF/A\nof the type specified.","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 ICC\nprofile to use in the PDF, e.g. default.cmyk.","$id":"quarto-resource-document-options-preview-mode"},"quarto-resource-document-pdfa-pdfa":{"_internalId":4881,"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":"When used in conjunction with pdfa, specifies the output\nintent for the colors.","$id":"quarto-resource-document-pdfa-pdfa"},"quarto-resource-document-pdfa-pdfaiccprofile":{"_internalId":4887,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4886,"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":"Document bibliography (BibTeX or CSL). May be a single file or a list\nof files","$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":"Citation Style Language file to use for formatting references.","$id":"quarto-resource-document-pdfa-pdfaintent"},"quarto-resource-document-references-bibliography":{"_internalId":4895,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4894,"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":"Enables a hover popup for citation that shows the reference\ninformation.","$id":"quarto-resource-document-references-bibliography"},"quarto-resource-document-references-csl":{"type":"string","description":"be a string","documentation":"Where citation information should be displayed (document\nor margin)","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":"Method used to format citations (citeproc,\nnatbib, or biblatex).","$id":"quarto-resource-document-references-citations-hover"},"quarto-resource-document-references-citation-location":{"_internalId":4902,"type":"enum","enum":["document","margin"],"description":"be one of: `document`, `margin`","completions":["document","margin"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"Where citation information should be displayed (`document` or `margin`)"},"documentation":"Turn on built-in citation processing","$id":"quarto-resource-document-references-citation-location"},"quarto-resource-document-references-cite-method":{"_internalId":4905,"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":"A list of options for 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":"One or more options to provide for natbib when\ngenerating a bibliography.","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":4913,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4912,"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. \\bibliographystyle{dinat}) when using\nnatbib or biblatex.","$id":"quarto-resource-document-references-biblatexoptions"},"quarto-resource-document-references-natbiboptions":{"_internalId":4919,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4918,"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 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-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 title to use when using natbib or\nbiblatex.","$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":"Controls whether to output bibliography configuration for\nnatbib or biblatex when cite method is not\nciteproc.","$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":"JSON file containing abbreviations of journals that should be used in\nformatted bibliographies.","$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, 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-config"},"quarto-resource-document-references-citation-abbreviations":{"type":"string","description":"be a string","documentation":"If true, DOIs, PMCIDs, PMID, and URLs in bibliographies will be\nrendered as hyperlinks.","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":"Places footnote references or superscripted numerical citations after\nfollowing punctuation.","$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":"Format to read from","$id":"quarto-resource-document-references-notes-after-punctuation"},"quarto-resource-document-render-from":{"type":"string","description":"be a string","documentation":"Output file to write to","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":"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-reader"},"quarto-resource-document-render-output-file":{"_internalId":4940,"type":"ref","$ref":"pandoc-format-output-file","description":"be pandoc-format-output-file","documentation":"Use the specified file as a custom template for the generated\ndocument.","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":"Include the specified files as partials accessible to the template\nfor the generated content.","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":4950,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4949,"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":"Produce a standalone HTML file with no external dependencies","$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":"Embed math libraries (e.g. MathJax) within\nself-contained output.","$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 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-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":"Specify Lua scripts that implement shortcode handlers","$id":"quarto-resource-document-render-self-contained-math"},"quarto-resource-document-render-filters":{"_internalId":4959,"type":"ref","$ref":"pandoc-format-filters","description":"be pandoc-format-filters","documentation":"Keep the markdown file generated by 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":4962,"type":"ref","$ref":"pandoc-shortcodes","description":"be pandoc-shortcodes","documentation":"Keep the notebook file generated from executing code.","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":"Filters to pre-process ipynb files before rendering to markdown","$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":"Specify which nodes should be run interactively (displaying output\nfrom expressions)","$id":"quarto-resource-document-render-keep-ipynb"},"quarto-resource-document-render-ipynb-filters":{"_internalId":4971,"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":"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-ipynb-filters"},"quarto-resource-document-render-ipynb-shell-interactivity":{"_internalId":4974,"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 typst 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":"Keep the intermediate tex file used during render.","$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":"Extract images and other media contained in or linked from the source\ndocument to the path DIR.","$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":"List of paths to search for images and other resources.","$id":"quarto-resource-document-render-keep-tex"},"quarto-resource-document-render-extract-media":{"type":"string","description":"be a string","documentation":"Specify a default extension to use when image paths/URLs have no\nextension.","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":4987,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"documentation":"Specifies a custom abbreviations file, with abbreviations one to a\nline.","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 the default dpi (dots per inch) value for conversion from\npixels to inch/ centimeters and vice versa.","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, do not process tables in HTML input.","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":"If none, ignore any divs with\nhtml-pre-tag-processing=parse enabled.","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":4996,"type":"enum","enum":["none"],"description":"be 'none'","completions":["none"],"exhaustiveCompletions":true,"documentation":"CSS property translation","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":4999,"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 true, attempt to use rsvg-convert to\nconvert SVG images to PDF.","$id":"quarto-resource-document-render-html-pre-tag-processing"},"quarto-resource-document-render-css-property-processing":{"_internalId":5002,"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":"Logo image (placed in bottom right corner of 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":"Footer to include on all slides","$id":"quarto-resource-document-render-use-rsvg-convert"},"quarto-resource-document-reveal-content-logo":{"_internalId":5007,"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":"Allow content that overflows slides vertically to scroll","$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":"Use a smaller default font for slide content","$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":"Location of output relative to the code that generated it\n(default, fragment, slide,\ncolumn, or column-location)","$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":"Flags if the presentation is running in an embedded mode","$id":"quarto-resource-document-reveal-content-smaller"},"quarto-resource-document-reveal-content-output-location":{"_internalId":5016,"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":"The display mode that will be used to show slides","$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":"For slides with a single top-level image, automatically stretch it to\nfill the slide.","$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’ width 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":"The ‘normal’ height of the presentation","$id":"quarto-resource-document-reveal-layout-auto-stretch"},"quarto-resource-document-reveal-layout-width":{"_internalId":5029,"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":"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-width"},"quarto-resource-document-reveal-layout-height":{"_internalId":5036,"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":"Horizontal margin (e.g. 5cm)","$id":"quarto-resource-document-reveal-layout-height"},"quarto-resource-document-reveal-layout-margin":{"_internalId":5056,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"_internalId":5055,"type":"object","description":"be an object","properties":{"x":{"type":"string","description":"be a string","tags":{"description":"Horizontal margin (e.g. 5cm)"},"documentation":"Top margin (e.g. 5cm)"},"y":{"type":"string","description":"be a string","tags":{"description":"Vertical margin (e.g. 5cm)"},"documentation":"Bottom margin (e.g. 5cm)"},"top":{"type":"string","description":"be a string","tags":{"description":"Top margin (e.g. 5cm)"},"documentation":"Left margin (e.g. 5cm)"},"bottom":{"type":"string","description":"be a string","tags":{"description":"Bottom margin (e.g. 5cm)"},"documentation":"Right margin (e.g. 5cm)"},"left":{"type":"string","description":"be a string","tags":{"description":"Left margin (e.g. 5cm)"},"documentation":"Bounds for smallest possible scale to apply to content"},"right":{"type":"string","description":"be a string","tags":{"description":"Right margin (e.g. 5cm)"},"documentation":"Bounds for largest possible scale to apply to content"}},"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":"Vertical 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":"Vertical centering of slides","$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":"Disables the default reveal.js slide layout (scaling and\ncentering)","$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":"Sets the maximum height for source code blocks that appear in the\npresentation.","$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":"Open links in an iframe preview overlay (true,\nfalse, or auto)","$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":"Autoplay embedded media (null, true, or\nfalse). Default is null (only when\nautoplay attribute is specified)","$id":"quarto-resource-document-reveal-layout-code-block-height"},"quarto-resource-document-reveal-media-preview-links":{"_internalId":5074,"type":"anyOf","anyOf":[{"_internalId":5071,"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":"Global override for preloading lazy-loaded iframes\n(null, true, or false).","$id":"quarto-resource-document-reveal-media-preview-links"},"quarto-resource-document-reveal-media-auto-play-media":{"_internalId":5077,"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","$id":"quarto-resource-document-reveal-media-auto-play-media"},"quarto-resource-document-reveal-media-preload-iframes":{"_internalId":5080,"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":"Number of slides away from the current slide to pre-load resources\nfor (on mobile devices).","$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 image","$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":"Parallax background size (e.g. ‘2100px 900px’)","$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 horizontally 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":"Number of pixels to move the parallax background vertically per\nslide.","$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":"Display a presentation progress bar","$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":"Push each slide change to the browser history","$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":"Navigation progression (linear, vertical,\nor grid)","$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 touch navigation on devices with touch input","$id":"quarto-resource-document-reveal-navigation-history"},"quarto-resource-document-reveal-navigation-navigation-mode":{"_internalId":5099,"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 keyboard shortcuts for navigation","$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 slide navigation via mouse wheel","$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":"Hide cursor if inactive","$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":"Time before the cursor is hidden (in ms)","$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":"Loop the presentation","$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":"Randomize the order of slides each time the presentation loads","$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":"Show arrow controls for navigating through slides (true,\nfalse, or auto).","$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":"Location for navigation controls (edges or\nbottom-right)","$id":"quarto-resource-document-reveal-navigation-shuffle"},"quarto-resource-document-reveal-navigation-controls":{"_internalId":5121,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5120,"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":"Help the user learn the controls by providing visual hints.","$id":"quarto-resource-document-reveal-navigation-controls"},"quarto-resource-document-reveal-navigation-controls-layout":{"_internalId":5124,"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":"Visibility rule for backwards navigation arrows (faded,\nhidden, or visible).","$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":"Automatically progress all slides at the specified interval","$id":"quarto-resource-document-reveal-navigation-controls-tutorial"},"quarto-resource-document-reveal-navigation-controls-back-arrows":{"_internalId":5129,"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":"Stop auto-sliding after user input","$id":"quarto-resource-document-reveal-navigation-controls-back-arrows"},"quarto-resource-document-reveal-navigation-auto-slide":{"_internalId":5137,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"_internalId":5136,"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":"Navigation method to use when auto sliding (defaults to\nnavigateNext)","$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":"Expected average seconds per slide (used by pacing timer in speaker\nview)","$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":"Flags whether it should be possible to pause the presentation\n(blackout)","$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":"Show a help overlay when the ? key is pressed","$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":"Add the current slide to the URL hash","$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":"URL hash type (number or title)","$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":"Use 1 based indexing for hash links to match slide number","$id":"quarto-resource-document-reveal-navigation-hash"},"quarto-resource-document-reveal-navigation-hash-type":{"_internalId":5152,"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":"Monitor the hash and change slides accordingly","$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":"Include the current fragment in the URL","$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":"Play a subtle sound when changing slides","$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":"Deactivate jump to slide feature.","$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":"Slides that are too tall to fit within a single page will expand onto\nmultiple pages","$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":"Prints each fragment on a separate slide","$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":"Offset used to reduce the height of content within exported PDF\npages.","$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":"Enable the slide overview mode","$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":"Configuration for revealjs menu.","$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":"Side of the presentation where the menu will be shown\n(left or right)","$id":"quarto-resource-document-reveal-tools-overview"},"quarto-resource-document-reveal-tools-menu":{"_internalId":5187,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5186,"type":"object","description":"be an object","properties":{"side":{"_internalId":5179,"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":"Add slide numbers to menu items"},"width":{"type":"string","description":"be a string","completions":["normal","wide","third","half","full"],"tags":{"description":"Width of the menu"},"documentation":"For slides with no title, attempt to use the start of the text\ncontent as the title instead."},"numbers":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Add slide numbers to menu items"},"documentation":"Configuration for revealjs chalkboard."},"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":"Visual theme for drawing surface (chalkboard or\nwhiteboard)"}},"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":"Width of the menu","$id":"quarto-resource-document-reveal-tools-menu"},"quarto-resource-document-reveal-tools-chalkboard":{"_internalId":5210,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5209,"type":"object","description":"be an object","properties":{"theme":{"_internalId":5196,"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":"The drawing width of the chalk. Defaults to 7. Larger values draw\nthicker lines."},"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":"Optional file name for pre-recorded drawings (download drawings using\nthe D key)"},"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":"Configuration option to prevent changes to existing drawings"},"src":{"type":"string","description":"be a string","tags":{"description":"Optional file name for pre-recorded drawings (download drawings using the `D` key)\n"},"documentation":"Add chalkboard buttons at the bottom of the slide"},"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":"Gives the duration (in ms) of the transition for a slide change, so\nthat the notes canvas is drawn after the transition is completed."},"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":"Configuration for reveal presentation multiplexing."},"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":"Multiplex token server (defaults to Reveal-hosted 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 boardmarker. Defaults to 3. Larger values\ndraw thicker lines.","$id":"quarto-resource-document-reveal-tools-chalkboard"},"quarto-resource-document-reveal-tools-multiplex":{"_internalId":5224,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5223,"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":"Secret provided by multiplex token server"},"id":{"type":"string","description":"be a string","tags":{"description":"Unique presentation id provided by multiplex token server"},"documentation":"Control the scroll view feature of Revealjs"},"secret":{"type":"string","description":"be a string","tags":{"description":"Secret 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."}},"patternProperties":{}}],"description":"be at least one of: `true` or `false`, an object","tags":{"formats":["revealjs"],"description":"Configuration for reveal presentation multiplexing."},"documentation":"Unique presentation id provided by multiplex token server","$id":"quarto-resource-document-reveal-tools-multiplex"},"quarto-resource-document-reveal-tools-scroll-view":{"_internalId":5250,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5249,"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":"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."},"progress":{"_internalId":5240,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5239,"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":"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."},"snap":{"_internalId":5243,"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":"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."},"layout":{"_internalId":5246,"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":"Transition style for slides"},"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":"Slide transition speed (default, fast, or\nslow)"}},"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":"Show the scrollbar while scrolling, hide while idle (default\nauto). Set to ‘true’ to always show, false to\nalways hide.","$id":"quarto-resource-document-reveal-tools-scroll-view"},"quarto-resource-document-reveal-transitions-transition":{"_internalId":5253,"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 full page slide backgrounds","$id":"quarto-resource-document-reveal-transitions-transition"},"quarto-resource-document-reveal-transitions-transition-speed":{"_internalId":5256,"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":"Turns fragments on and off globally","$id":"quarto-resource-document-reveal-transitions-transition-speed"},"quarto-resource-document-reveal-transitions-background-transition":{"_internalId":5259,"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":"Globally enable/disable auto-animate (enabled by default)","$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":"Default CSS easing function for auto-animation","$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":"Duration (in seconds) of auto-animate transition","$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":"Auto-animate unmatched elements.","$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":"CSS properties that can be auto-animated (positional styles like top,\nleft, etc. are always animated).","$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":"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-unmatched"},"quarto-resource-document-reveal-transitions-auto-animate-styles":{"_internalId":5275,"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":5274,"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":"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-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":"Display the page number of the current slide","$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":"Contexts in which the slide number appears (all,\nprint, or speaker)","$id":"quarto-resource-document-slides-slide-level"},"quarto-resource-document-slides-slide-number":{"_internalId":5287,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5286,"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":"Additional attributes for the title slide of a reveal.js\npresentation.","$id":"quarto-resource-document-slides-slide-number"},"quarto-resource-document-slides-show-slide-number":{"_internalId":5290,"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":"CSS color for title slide background","$id":"quarto-resource-document-slides-show-slide-number"},"quarto-resource-document-slides-title-slide-attributes":{"_internalId":5305,"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 size (defaults to cover)"},"data-background-image":{"type":"string","description":"be a string","tags":{"description":"URL or path to the background image."},"documentation":"CSS background position (defaults to center)"},"data-background-size":{"type":"string","description":"be a string","tags":{"description":"CSS background size (defaults to `cover`)"},"documentation":"CSS background repeat (defaults to no-repeat)"},"data-background-position":{"type":"string","description":"be a string","tags":{"description":"CSS background position (defaults to `center`)"},"documentation":"Opacity of the background image on a 0-1 scale. 0 is transparent and\n1 is fully opaque."},"data-background-repeat":{"type":"string","description":"be a string","tags":{"description":"CSS background repeat (defaults to `no-repeat`)"},"documentation":"The title slide style. Use pandoc to select the Pandoc\ndefault title slide style."},"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":"Vertical centering of title slide"}},"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":"URL or path to the background image.","$id":"quarto-resource-document-slides-title-slide-attributes"},"quarto-resource-document-slides-title-slide-style":{"_internalId":5308,"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":"Make speaker notes visible to all viewers","$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":"Change the presentation direction to be RTL","$id":"quarto-resource-document-slides-center-title-slide"},"quarto-resource-document-slides-show-notes":{"_internalId":5318,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5317,"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":"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-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":"Determine how text is wrapped in the output (auto,\nnone, or preserve).","$id":"quarto-resource-document-slides-rtl"},"quarto-resource-document-tables-df-print":{"_internalId":5323,"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":"For text formats, specify length of lines in characters. For\ntypst, number of columns for body text.","$id":"quarto-resource-document-tables-df-print"},"quarto-resource-document-text-wrap":{"_internalId":5326,"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":"Specify the number of spaces per tab (default is 4).","$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":"Preserve tabs within code instead of converting them to spaces.","$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":"Manually specify line endings (lf, crlf, or\nnative).","$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":"Strip out HTML comments in source, rather than passing them on to\noutput.","$id":"quarto-resource-document-text-preserve-tabs"},"quarto-resource-document-text-eol":{"_internalId":5335,"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":"Use only ASCII characters in output.","$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":"Include an automatically generated table of contents","$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":"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"},"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":"Specify the number of section levels to include in the table of\ncontents. The default is 3","$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":"Location for table of contents (body, left,\nright (default), left-body,\nright-body).","$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":"The title used for the table of contents.","$id":"quarto-resource-document-toc-toc-depth"},"quarto-resource-document-toc-toc-location":{"_internalId":5348,"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":"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-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 figures in the document.","$id":"quarto-resource-document-toc-toc-title"},"quarto-resource-document-toc-toc-expand":{"_internalId":5357,"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":"Print a list of tables in the document.","$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 this document from being included in\nsearches.","$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":"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-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":5375,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5374,"type":"anyOf","anyOf":[{"_internalId":5372,"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 path to a preview image for this document."},{"_internalId":5373,"type":"array","description":"be an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","items":{"_internalId":5372,"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 path to a 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":"Links to source repository actions","$id":"quarto-resource-document-website-repo-actions"},"quarto-resource-document-website-aliases":{"_internalId":5380,"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 height of the preview image for this document.","$id":"quarto-resource-document-website-aliases"},"quarto-resource-document-website-image":{"_internalId":5387,"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 width of the 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 alt text for preview image on this page.","$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":"If true, the preview image will only load when it comes into\nview.","$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 configuration.","$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":"Project type (default, website,\nbook, or manuscript)","$id":"quarto-resource-document-website-image-lazy-loading"},"quarto-resource-project-project":{"_internalId":5460,"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":"Working directory for computations"},"render":{"_internalId":5408,"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":"Output directory"},"execute-dir":{"_internalId":5411,"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":"HTML library (JS/CSS/etc.) 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":"Additional file resources to be copied to output directory"},"resources":{"_internalId":5423,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"Additional file resources to be copied to output directory"},"documentation":"Options for quarto preview"},{"_internalId":5422,"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":"Options for quarto preview"}}],"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":5428,"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 pre-render step"},"preview":{"_internalId":5433,"type":"ref","$ref":"project-preview","description":"be project-preview","tags":{"description":"Options for `quarto preview`"},"documentation":"Scripts to run as a post-render step"},"pre-render":{"_internalId":5441,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":5440,"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":"Array of paths used to detect the project type within a directory"},"post-render":{"_internalId":5449,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":5448,"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":"Website configuration."},"detect":{"_internalId":5459,"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":5458,"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 configuration."}},"patternProperties":{},"closed":true,"documentation":"Files to render (defaults to all files)","tags":{"description":"Project configuration."},"$id":"quarto-resource-project-project"},"quarto-resource-project-website":{"_internalId":5463,"type":"ref","$ref":"base-website","description":"be base-website","documentation":"Book title","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 path to the favicon for this website"},"description":{"type":"string","description":"be a string","tags":{"description":"Description metadata for HTML version of book"},"documentation":"Base URL for published website"},"favicon":{"type":"string","description":"be a string","tags":{"description":"The path to the favicon for this website"},"documentation":"Path to site (defaults to /). Not required if you\nspecify site-url."},"site-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for published website"},"documentation":"Base URL for website source code repository"},"site-path":{"type":"string","description":"be a string","tags":{"description":"Path to site (defaults to `/`). Not required if you specify `site-url`.\n"},"documentation":"The value of the target attribute for repo links"},"repo-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for website source code repository"},"documentation":"The value of the rel 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":"Subdirectory of repository containing website"},"repo-link-rel":{"type":"string","description":"be a string","tags":{"description":"The value of the rel attribute for repo links"},"documentation":"Branch of website source code (defaults to main)"},"repo-subdir":{"type":"string","description":"be a string","tags":{"description":"Subdirectory of repository containing website"},"documentation":"URL to use for the ‘report an issue’ repository action."},"repo-branch":{"type":"string","description":"be a string","tags":{"description":"Branch of website source code (defaults to `main`)"},"documentation":"Links to source repository actions"},"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":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 Google Analytics for this website"},{"_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 Google Analytics for this website"}}],"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":"The Google tracking Id or measurement Id of this website."},"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":"Anonymize the user ip address."},"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":"The version number of Google Analytics to use."},"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":"Enable Plausible Analytics for this website by providing a script\nsnippet or path to snippet file"},"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":"Path to a file containing the Plausible Analytics script snippet"}},"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":"Storage options for Google Analytics data"},"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":"The content of the announcement"}},"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":"Provides an announcement displayed at the top of the page."},"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 icon to display in the announcement"},"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 position of 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 type of announcement. Affects the appearance of the\nannouncement."},"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":"Request cookie consent before enabling scripts that set cookies"},"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 type of consent that should be requested"}},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Provides an announcement displayed at the top of the page."},"documentation":"Whether this announcement may be dismissed by the user."},"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":"Whether to use a dark or light appearance for the consent banner\n(light or dark)."},"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":"The url to the website’s cookie or privacy policy."},"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":"The language to be used when diplaying the cookie consent prompt\n(defaults to document language)."},"policy-url":{"type":"string","description":"be a string","tags":{"description":"The url to the website’s cookie or privacy policy."},"documentation":"The text to display for the cookie preferences link in the website\nfooter."},"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 full text search for website"},"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":"Location for search widget (navbar or\nsidebar)"}},"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 style of the consent banner that is displayed"},"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":"Number of matches to display (defaults to 20)"},"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":"Matches after which to collapse additional results"},"limit":{"type":"number","description":"be a number","tags":{"description":"Number of matches to display (defaults to 20)"},"documentation":"Provide button for copying search link"},"collapse-after":{"type":"number","description":"be a number","tags":{"description":"Matches after which to collapse additional results"},"documentation":"When false, do not merge navbar crumbs into the crumbs in\nsearch.json."},"copy-button":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide button for copying search link"},"documentation":"One or more keys that will act as a shortcut to launch search (single\ncharacters)"},"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":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":"Use external Algolia search index"},{"_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":"Use external Algolia search index"}}],"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":"The name of the index to use when performing a search"},"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":"The Search-Only API key to use to connect to Algolia"},"application-id":{"type":"string","description":"be a string","tags":{"description":"The unique ID used by Algolia to identify your application"},"documentation":"Enable tracking of Algolia analytics events"},"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 the display of the Algolia logo in the search results\nfooter."},"analytics-events":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable tracking of Algolia analytics events"},"documentation":"Field that contains the URL of index entries"},"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 title of index entries"},"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":"Field that contains the text 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 section of index entries"},"text":{"type":"string","description":"be a string","tags":{"description":"Field that contains the text of index entries"},"documentation":"Additional parameters to pass when executing a search"},"section":{"type":"string","description":"be a string","tags":{"description":"Field that contains the section of index entries"},"documentation":"Top navigation options"}},"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 title. Uses the project title if none is specified."}},"patternProperties":{},"closed":true,"tags":{"description":"Use external Algolia search index"},"documentation":"The unique ID used by Algolia to identify your application"}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Provide full text search for website"},"documentation":"Type of search UI (overlay or textbox)"},"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":"Alternate text for the logo image."},"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":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"The navbar’s background 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":"The navbar’s foreground 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":"Include a search box in 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":"Always show the navbar (keeping it pinned)."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search box in the navbar."},"documentation":"Collapse the navbar into a menu when the display becomes narrow."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Always show the navbar (keeping it pinned)."},"documentation":"The responsive breakpoint below which the navbar will collapse into a\nmenu (sm, md, lg (default),\nxl, xxl)."},"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":"List of items for the left side of the navbar."},"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":"List of items for the right side of the navbar."},"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":"The position of the collapsed navbar toggle when in responsive\nmode"},"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":"Collapse tools into the navbar menu when the display becomes\nnarrow."},"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":"Side navigation options"},"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":"The identifier for this 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":"Specification of image that will be displayed to the left of the\ntitle."},"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":"Specification of image that will be displayed in 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":"Alternate text for the logo image."},"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":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"Include a search control in the sidebar."},"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 sidebar tools"},"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 items for the sidebar"},"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 style of sidebar (docked or\nfloating)."},"contents":{"_internalId":780,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"The sidebar’s background color (named or hex color)."},"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":"The sidebar’s foreground 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":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"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":"Alignment of the items within the sidebar (left,\nright, or center)"},"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":"The depth at which the sidebar contents should be collapsed by\ndefault."},"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":"When collapsed, pin the collapsed sidebar to the top of the page."},"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 above sidebar 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":"Markdown to place below sidebar content (text or file path)"},"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":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."},"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":"Markdown to insert below each page’s body."}},"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":"Specification of image that will be displayed in 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":"Alternate text for the logo image."},"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":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"Include a search control in the sidebar."},"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 sidebar tools"},"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 items for the sidebar"},"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 style of sidebar (docked or\nfloating)."},"contents":{"_internalId":780,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"The sidebar’s background color (named or hex color)."},"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":"The sidebar’s foreground 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":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"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":"Alignment of the items within the sidebar (left,\nright, or center)"},"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":"The depth at which the sidebar contents should be collapsed by\ndefault."},"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":"When collapsed, pin the collapsed sidebar to the top of the page."},"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 above sidebar 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":"Markdown to place below sidebar content (text or file path)"},"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":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."},"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":"Markdown to insert below each page’s body."}},"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 sidebar title. Uses the project title if none is specified."},"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 place above margin content (text or file path)"},"body-footer":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert below each page’s body."},"documentation":"Markdown to place below margin content (text or file path)"},"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":"Provide next and previous article links in footer"},"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":"Provide a ‘back to top’ navigation button"},"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":"Whether to show navigation breadcrumbs for pages more than 1 level\ndeep"},"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":"Shared page footer"},"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":"Default site thumbnail image for twitter\n/open-graph"},"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":"Default site thumbnail image alt text for twitter\n/open-graph"},"image":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image for `twitter` /`open-graph`\n"},"documentation":"Publish open graph metadata"},"image-alt":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image alt text for `twitter` /`open-graph`\n"},"documentation":"Publish twitter card metadata"},"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":"A list of other links to appear below the TOC."},"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":"A list of code links to appear with this document."},"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":"A list of input documents that should be treated as drafts"},"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":"How to handle drafts that are encountered."},"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 subtitle"},"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":"Author or authors of the book"},"subtitle":{"type":"string","description":"be a string","tags":{"description":"Book subtitle"},"documentation":"Author or authors of the book"},"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":"Format string for dates in the book"},{"_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":"Format string for dates in the book"}}],"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":"Book abstract"},"date-format":{"type":"string","description":"be a string","tags":{"description":"Format string for dates in the book"},"documentation":"Book part and chapter files"},"abstract":{"type":"string","description":"be a string","tags":{"description":"Book abstract"},"documentation":"Book appendix files"},"chapters":{"_internalId":932,"type":"ref","$ref":"chapter-list","description":"be chapter-list","completions":[],"tags":{"hidden":true,"description":"Book part and chapter files"},"documentation":"Book references file"},"appendices":{"_internalId":937,"type":"ref","$ref":"chapter-list","description":"be chapter-list","completions":[],"tags":{"hidden":true,"description":"Book appendix files"},"documentation":"Base name for single-file output (e.g. PDF, ePub, docx)"},"references":{"type":"string","description":"be a string","tags":{"description":"Book references file"},"documentation":"Cover image (used in HTML and ePub formats)"},"output-file":{"type":"string","description":"be a string","tags":{"description":"Base name for single-file output (e.g. PDF, ePub, docx)"},"documentation":"Alternative text for cover image (used in HTML format)"},"cover-image":{"type":"string","description":"be a string","tags":{"description":"Cover image (used in HTML and ePub formats)"},"documentation":"Sharing buttons to include on navbar or sidebar (one or more of\ntwitter, facebook, linkedin)"},"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":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":"Download buttons for other formats to include on navbar or sidebar\n(one or more of pdf, epub, and\ndocx)"},{"_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":"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":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":"The Digital Object Identifier for this book."},{"_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":"The Digital Object Identifier for this book."}}],"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":"A url to the abstract for this item."},"doi":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"The Digital Object Identifier for this book."},"documentation":"Date the item has been accessed."},"abstract-url":{"type":"string","description":"be a string","tags":{"description":"A url to the abstract for this item."},"documentation":"Short markup, decoration, or annotation to the item (e.g., to\nindicate items included in a review)."},"accessed":{"_internalId":1410,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item has been accessed."},"documentation":"Archive storing the item"},"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":"Collection the item is part of within an archive."},"archive":{"type":"string","description":"be a string","tags":{"description":"Archive storing the item"},"documentation":"Storage location within an archive (e.g. a box and folder\nnumber)."},"archive-collection":{"type":"string","description":"be a string","tags":{"description":"Collection the item is part of within an archive."},"documentation":"Geographic location of the archive."},"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":"Issuing or judicial authority (e.g. “USPTO” for a patent, “Fairfax\nCircuit Court” for a legal case)."},"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":"Date the item was initially available"},"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":"Call number (to locate the item in a library)."},"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":"The person leading the session containing a presentation (e.g. the\norganizer of the container-title of a\nspeech)."},"call-number":{"type":"string","description":"be a string","tags":{"description":"Call number (to locate the item in a library)."},"documentation":"Chapter number (e.g. chapter number in a book; track number on an\nalbum)."},"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":"Identifier of the item in the input data file (analogous to BiTeX\nentrykey)."},"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":"Label identifying the item in in-text citations of label styles\n(e.g. “Ferr78”)."},"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":"Index (starting at 1) of the cited reference in the bibliography\n(generated by the CSL processor)."},"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":"Editor of the collection holding the item (e.g. the series editor for\na book)."},"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":"Number identifying the collection holding the item (e.g. the series\nnumber for a book)","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":"Title of the collection holding the item (e.g. the series title for a\nbook; the lecture series title for a presentation)."},"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":"Person compiling or selecting material for an item from the works of\nvarious persons or bodies (e.g. for an anthology)."},"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":"Composer (e.g. of a musical score)."},"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":"Author of the container holding the item (e.g. the book author for a\nbook chapter)."},"composer":{"_internalId":1464,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Composer (e.g. of a musical score)."},"documentation":"Title of the container holding the item."},"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":"Short/abbreviated form of container-title;"},"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":"A minor contributor to the item; typically cited using “with” before\nthe name when listed in a bibliography."},"container-title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of container-title;","hidden":true},"documentation":"Curator of an exhibit or collection (e.g. in a museum).","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":"Physical (e.g. size) or temporal (e.g. running time) dimensions of\nthe item."},"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":"Director (e.g. of a film)."},"dimensions":{"type":"string","description":"be a string","tags":{"description":"Physical (e.g. size) or temporal (e.g. running time) dimensions of the item."},"documentation":"Minor subdivision of a court with a jurisdiction for a\nlegal item"},"director":{"_internalId":1482,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Director (e.g. of a film)."},"documentation":"(Container) edition holding the item (e.g. “3” when citing a chapter\nin the third edition of a book)."},"division":{"type":"string","description":"be a string","tags":{"description":"Minor subdivision of a court with a `jurisdiction` for a legal item"},"documentation":"The editor of the item."},"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":"Managing editor (“Directeur de la Publication” in French)."},"editor":{"_internalId":1494,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The editor of the item."},"documentation":"Combined editor and translator of a work."},"editorial-director":{"_internalId":1497,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Managing editor (\"Directeur de la Publication\" in French)."},"documentation":"Date the event related to an item took place."},"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":"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":{"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":"Geographic location of the event related to the item\n(e.g. “Amsterdam, The Netherlands”)."},"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":"Executive producer of the item (e.g. of a television series)."},"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":"Number of a preceding note containing the first reference to the\nitem."},"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":"A url to the full text for this item."},"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":"Type, class, or subtype of the item"},"fulltext-url":{"type":"string","description":"be a string","tags":{"description":"A url to the full text for this item."},"documentation":"Guest (e.g. on a TV show or podcast)."},"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":"Host of the item (e.g. of a TV show or podcast)."},"guest":{"_internalId":1526,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Guest (e.g. on a TV show or podcast)."},"documentation":"A value which uniquely identifies this 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":"Illustrator (e.g. of a children’s book or graphic novel)."},"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":"Interviewer (e.g. of an interview)."},"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":"International Standard Book Number (e.g. “978-3-8474-1017-1”)."},"interviewer":{"_internalId":1542,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Interviewer (e.g. of an interview)."},"documentation":"International Standard Serial Number."},"isbn":{"type":"string","description":"be a string","tags":{"description":"International Standard Book Number (e.g. \"978-3-8474-1017-1\")."},"documentation":"Issue number of the item or container holding the 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":"Date the item was issued/published."},"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":"Geographic scope of relevance (e.g. “US” for a US patent; the court\nhearing a legal case)."},"issued":{"_internalId":1560,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item was issued/published."},"documentation":"Keyword(s) or tag(s) attached to the item."},"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":"The language of the item (used only for citation of the item)."},"keyword":{"type":"string","description":"be a string","tags":{"description":"Keyword(s) or tag(s) attached to the item."},"documentation":"The license information applicable to an 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":"A cite-specific pinpointer within the 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":"Description of the item’s format or medium (e.g. “CD”, “DVD”,\n“Album”, etc.)"},"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":"Narrator (e.g. of an audio book)."},"medium":{"type":"string","description":"be a string","tags":{"description":"Description of the item’s format or medium (e.g. \"CD\", \"DVD\", \"Album\", etc.)"},"documentation":"Descriptive text or notes about an item (e.g. in an annotated\nbibliography)."},"narrator":{"_internalId":1576,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Narrator (e.g. of an audio book)."},"documentation":"Number identifying the item (e.g. a report number)."},"note":{"type":"string","description":"be a string","tags":{"description":"Descriptive text or notes about an item (e.g. in an annotated bibliography)."},"documentation":"Total number of pages of the cited item."},"number":{"_internalId":1581,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the item (e.g. a report number)."},"documentation":"Total number of volumes, used when citing multi-volume books and\nsuch."},"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":"Organizer of an event (e.g. organizer of a workshop or\nconference)."},"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":"The original creator of a work."},"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":"Issue date of the original version."},"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":"Original publisher, for items that have been republished by a\ndifferent publisher."},"original-date":{"_internalId":1596,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Issue date of the original version."},"documentation":"Geographic location of the original publisher (e.g. “London,\nUK”)."},"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 original version (e.g. “Война и мир”, the untranslated\nRussian title of “War and Peace”)."},"original-publisher-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the original publisher (e.g. \"London, UK\")."},"documentation":"Range of pages the item (e.g. a journal article) covers in a\ncontainer (e.g. a journal issue)."},"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":"First page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"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":"Last 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":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":"Number of the specific part of the item being cited (e.g. part 2 of a\njournal article)."},"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":"Title of the specific part of an item being cited."},"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":"A url to the pdf for this item."},"part-title":{"type":"string","description":"be a string","tags":{"description":"Title of the specific part of an item being cited."},"documentation":"Performer of an item (e.g. an actor appearing in a film; a muscian\nperforming a piece of music)."},"pdf-url":{"type":"string","description":"be a string","tags":{"description":"A url to the pdf for this item."},"documentation":"PubMed Central reference number."},"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":"PubMed reference number."},"pmcid":{"type":"string","description":"be a string","tags":{"description":"PubMed Central reference number."},"documentation":"Printing number of the item or container holding the item."},"PMCID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"pmid":{"type":"string","description":"be a string","tags":{"description":"PubMed reference number."},"documentation":"Producer (e.g. of a television or radio broadcast)."},"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":"A public url for this item."},"producer":{"_internalId":1639,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Producer (e.g. of a television or radio broadcast)."},"documentation":"The publisher of the item."},"public-url":{"type":"string","description":"be a string","tags":{"description":"A public url for this item."},"documentation":"The geographic location of the publisher."},"publisher":{"type":"string","description":"be a string","tags":{"description":"The publisher of the item."},"documentation":"Recipient (e.g. of a letter)."},"publisher-place":{"type":"string","description":"be a string","tags":{"description":"The geographic location of the publisher."},"documentation":"Author of the item reviewed by the current item."},"recipient":{"_internalId":1648,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Recipient (e.g. of a letter)."},"documentation":"Type of the item being reviewed by the current item (e.g. book,\nfilm)."},"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":"Title of the item reviewed by the current item."},"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":"Scale of e.g. a map or model."},"reviewed-title":{"type":"string","description":"be a string","tags":{"description":"Title of the item reviewed by the current item."},"documentation":"Writer of a script or screenplay (e.g. of a film)."},"scale":{"type":"string","description":"be a string","tags":{"description":"Scale of e.g. a map or model."},"documentation":"Section of the item or container holding the item (e.g. “§2.0.1” for\na law; “politics” for a newspaper article)."},"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":"Creator of a series (e.g. of a television series)."},"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":"Source from whence the item originates (e.g. a library catalog or\ndatabase)."},"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":"Publication status of the item (e.g. “forthcoming”; “in press”;\n“advance online publication”; “retracted”)"},"source":{"type":"string","description":"be a string","tags":{"description":"Source from whence the item originates (e.g. a library catalog or database)."},"documentation":"Date the item (e.g. a manuscript) was submitted for publication."},"status":{"type":"string","description":"be a string","tags":{"description":"Publication status of the item (e.g. \"forthcoming\"; \"in press\"; \"advance online publication\"; \"retracted\")"},"documentation":"Supplement number of the item or container holding the item (e.g. for\nsecondary legal items that are regularly updated between editions)."},"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":"Short/abbreviated form oftitle."},"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":"Translator"},"title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of`title`.","hidden":true},"documentation":"The type\nof the item.","completions":[]},"translator":{"_internalId":1681,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Translator"},"documentation":"Uniform Resource Locator\n(e.g. “https://aem.asm.org/cgi/content/full/74/9/2766”)"},"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":"Version of the item (e.g. “2.0.9” for a software program)."},"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":"Volume number of the item (e.g. “2” when citing volume 2 of a book)\nor the container holding the item."},"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":"Title of the volume of the item or container holding the item."},"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":"Disambiguating year suffix in author-date styles (e.g. “a” in “Doe,\n1999a”)."},"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":"Manuscript configuration"},"year-suffix":{"type":"string","description":"be a string","tags":{"description":"Disambiguating year suffix in author-date styles (e.g. \"a\" in \"Doe, 1999a\")."},"documentation":"internal-schema-hack"}},"patternProperties":{},"closed":true,"tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true,"description":"Book configuration."},"documentation":"Description metadata for HTML version of book","$id":"quarto-resource-project-book"},"quarto-resource-project-manuscript":{"_internalId":5473,"type":"ref","$ref":"manuscript-schema","description":"be manuscript-schema","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":"Manuscript configuration"},"$id":"quarto-resource-project-manuscript"},"quarto-resource-project-type":{"_internalId":5476,"type":"enum","enum":["cd93424f-d5ba-4e95-91c6-1890eab59fc7"],"description":"be 'cd93424f-d5ba-4e95-91c6-1890eab59fc7'","completions":["cd93424f-d5ba-4e95-91c6-1890eab59fc7"],"exhaustiveCompletions":true,"documentation":"When defined, run axe-core accessibility tests on the document.","tags":{"description":"internal-schema-hack","hidden":true},"$id":"quarto-resource-project-type"},"quarto-resource-project-engines":{"_internalId":5487,"type":"array","description":"be an array of values, where each element must be at least one of: a string, external-engine","items":{"_internalId":5486,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":5485,"type":"ref","$ref":"external-engine","description":"be external-engine"}],"description":"be at least one of: a string, external-engine"},"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":"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":5498,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5497,"type":"object","description":"be an object","properties":{"output":{"_internalId":5496,"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 configuration."}},"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":"The logo image.","$id":"quarto-resource-document-a11y-axe"},"quarto-resource-document-typst-logo":{"_internalId":5501,"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":"Project type (default, website,\nbook, or manuscript)","$id":"quarto-resource-document-typst-logo"},"front-matter-execute":{"_internalId":5525,"type":"object","description":"be an object","properties":{"eval":{"_internalId":5502,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":5503,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":5504,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":5505,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":5506,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":5507,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"engine":{"_internalId":5508,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":5509,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":5510,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":5511,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":5512,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":5513,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":5514,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":5515,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":5516,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":5517,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":5518,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":5519,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"keep-md":{"_internalId":5520,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":5521,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":5522,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":5523,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":5524,"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":212226,"type":"anyOf","anyOf":[{"_internalId":212222,"type":"anyOf","anyOf":[{"_internalId":212142,"type":"string","pattern":"^(.+-)?ansi([-+].+)?$","description":"be 'ansi'","completions":["ansi"]},{"_internalId":212143,"type":"string","pattern":"^(.+-)?asciidoc([-+].+)?$","description":"be 'asciidoc'","completions":["asciidoc"]},{"_internalId":212144,"type":"string","pattern":"^(.+-)?asciidoc_legacy([-+].+)?$","description":"be 'asciidoc_legacy'","completions":["asciidoc_legacy"]},{"_internalId":212145,"type":"string","pattern":"^(.+-)?asciidoctor([-+].+)?$","description":"be 'asciidoctor'","completions":["asciidoctor"]},{"_internalId":212146,"type":"string","pattern":"^(.+-)?bbcode([-+].+)?$","description":"be 'bbcode'","completions":["bbcode"]},{"_internalId":212147,"type":"string","pattern":"^(.+-)?bbcode_fluxbb([-+].+)?$","description":"be 'bbcode_fluxbb'","completions":["bbcode_fluxbb"]},{"_internalId":212148,"type":"string","pattern":"^(.+-)?bbcode_hubzilla([-+].+)?$","description":"be 'bbcode_hubzilla'","completions":["bbcode_hubzilla"]},{"_internalId":212149,"type":"string","pattern":"^(.+-)?bbcode_phpbb([-+].+)?$","description":"be 'bbcode_phpbb'","completions":["bbcode_phpbb"]},{"_internalId":212150,"type":"string","pattern":"^(.+-)?bbcode_steam([-+].+)?$","description":"be 'bbcode_steam'","completions":["bbcode_steam"]},{"_internalId":212151,"type":"string","pattern":"^(.+-)?bbcode_xenforo([-+].+)?$","description":"be 'bbcode_xenforo'","completions":["bbcode_xenforo"]},{"_internalId":212152,"type":"string","pattern":"^(.+-)?beamer([-+].+)?$","description":"be 'beamer'","completions":["beamer"]},{"_internalId":212153,"type":"string","pattern":"^(.+-)?biblatex([-+].+)?$","description":"be 'biblatex'","completions":["biblatex"]},{"_internalId":212154,"type":"string","pattern":"^(.+-)?bibtex([-+].+)?$","description":"be 'bibtex'","completions":["bibtex"]},{"_internalId":212155,"type":"string","pattern":"^(.+-)?chunkedhtml([-+].+)?$","description":"be 'chunkedhtml'","completions":["chunkedhtml"]},{"_internalId":212156,"type":"string","pattern":"^(.+-)?commonmark([-+].+)?$","description":"be 'commonmark'","completions":["commonmark"]},{"_internalId":212157,"type":"string","pattern":"^(.+-)?commonmark_x([-+].+)?$","description":"be 'commonmark_x'","completions":["commonmark_x"]},{"_internalId":212158,"type":"string","pattern":"^(.+-)?context([-+].+)?$","description":"be 'context'","completions":["context"]},{"_internalId":212159,"type":"string","pattern":"^(.+-)?csljson([-+].+)?$","description":"be 'csljson'","completions":["csljson"]},{"_internalId":212160,"type":"string","pattern":"^(.+-)?djot([-+].+)?$","description":"be 'djot'","completions":["djot"]},{"_internalId":212161,"type":"string","pattern":"^(.+-)?docbook([-+].+)?$","description":"be 'docbook'","completions":["docbook"]},{"_internalId":212162,"type":"string","pattern":"^(.+-)?docbook4([-+].+)?$","description":"be 'docbook4'"},{"_internalId":212163,"type":"string","pattern":"^(.+-)?docbook5([-+].+)?$","description":"be 'docbook5'"},{"_internalId":212164,"type":"string","pattern":"^(.+-)?docx([-+].+)?$","description":"be 'docx'","completions":["docx"]},{"_internalId":212165,"type":"string","pattern":"^(.+-)?dokuwiki([-+].+)?$","description":"be 'dokuwiki'","completions":["dokuwiki"]},{"_internalId":212166,"type":"string","pattern":"^(.+-)?dzslides([-+].+)?$","description":"be 'dzslides'","completions":["dzslides"]},{"_internalId":212167,"type":"string","pattern":"^(.+-)?epub([-+].+)?$","description":"be 'epub'","completions":["epub"]},{"_internalId":212168,"type":"string","pattern":"^(.+-)?epub2([-+].+)?$","description":"be 'epub2'"},{"_internalId":212169,"type":"string","pattern":"^(.+-)?epub3([-+].+)?$","description":"be 'epub3'"},{"_internalId":212170,"type":"string","pattern":"^(.+-)?fb2([-+].+)?$","description":"be 'fb2'","completions":["fb2"]},{"_internalId":212171,"type":"string","pattern":"^(.+-)?gfm([-+].+)?$","description":"be 'gfm'","completions":["gfm"]},{"_internalId":212172,"type":"string","pattern":"^(.+-)?haddock([-+].+)?$","description":"be 'haddock'","completions":["haddock"]},{"_internalId":212173,"type":"string","pattern":"^(.+-)?html([-+].+)?$","description":"be 'html'","completions":["html"]},{"_internalId":212174,"type":"string","pattern":"^(.+-)?html4([-+].+)?$","description":"be 'html4'"},{"_internalId":212175,"type":"string","pattern":"^(.+-)?html5([-+].+)?$","description":"be 'html5'"},{"_internalId":212176,"type":"string","pattern":"^(.+-)?icml([-+].+)?$","description":"be 'icml'","completions":["icml"]},{"_internalId":212177,"type":"string","pattern":"^(.+-)?ipynb([-+].+)?$","description":"be 'ipynb'","completions":["ipynb"]},{"_internalId":212178,"type":"string","pattern":"^(.+-)?jats([-+].+)?$","description":"be 'jats'","completions":["jats"]},{"_internalId":212179,"type":"string","pattern":"^(.+-)?jats_archiving([-+].+)?$","description":"be 'jats_archiving'","completions":["jats_archiving"]},{"_internalId":212180,"type":"string","pattern":"^(.+-)?jats_articleauthoring([-+].+)?$","description":"be 'jats_articleauthoring'","completions":["jats_articleauthoring"]},{"_internalId":212181,"type":"string","pattern":"^(.+-)?jats_publishing([-+].+)?$","description":"be 'jats_publishing'","completions":["jats_publishing"]},{"_internalId":212182,"type":"string","pattern":"^(.+-)?jira([-+].+)?$","description":"be 'jira'","completions":["jira"]},{"_internalId":212183,"type":"string","pattern":"^(.+-)?json([-+].+)?$","description":"be 'json'","completions":["json"]},{"_internalId":212184,"type":"string","pattern":"^(.+-)?latex([-+].+)?$","description":"be 'latex'","completions":["latex"]},{"_internalId":212185,"type":"string","pattern":"^(.+-)?man([-+].+)?$","description":"be 'man'","completions":["man"]},{"_internalId":212186,"type":"string","pattern":"^(.+-)?markdown([-+].+)?$","description":"be 'markdown'","completions":["markdown"]},{"_internalId":212187,"type":"string","pattern":"^(.+-)?markdown_github([-+].+)?$","description":"be 'markdown_github'","completions":["markdown_github"]},{"_internalId":212188,"type":"string","pattern":"^(.+-)?markdown_mmd([-+].+)?$","description":"be 'markdown_mmd'","completions":["markdown_mmd"]},{"_internalId":212189,"type":"string","pattern":"^(.+-)?markdown_phpextra([-+].+)?$","description":"be 'markdown_phpextra'","completions":["markdown_phpextra"]},{"_internalId":212190,"type":"string","pattern":"^(.+-)?markdown_strict([-+].+)?$","description":"be 'markdown_strict'","completions":["markdown_strict"]},{"_internalId":212191,"type":"string","pattern":"^(.+-)?markua([-+].+)?$","description":"be 'markua'","completions":["markua"]},{"_internalId":212192,"type":"string","pattern":"^(.+-)?mediawiki([-+].+)?$","description":"be 'mediawiki'","completions":["mediawiki"]},{"_internalId":212193,"type":"string","pattern":"^(.+-)?ms([-+].+)?$","description":"be 'ms'","completions":["ms"]},{"_internalId":212194,"type":"string","pattern":"^(.+-)?muse([-+].+)?$","description":"be 'muse'","completions":["muse"]},{"_internalId":212195,"type":"string","pattern":"^(.+-)?native([-+].+)?$","description":"be 'native'","completions":["native"]},{"_internalId":212196,"type":"string","pattern":"^(.+-)?odt([-+].+)?$","description":"be 'odt'","completions":["odt"]},{"_internalId":212197,"type":"string","pattern":"^(.+-)?opendocument([-+].+)?$","description":"be 'opendocument'","completions":["opendocument"]},{"_internalId":212198,"type":"string","pattern":"^(.+-)?opml([-+].+)?$","description":"be 'opml'","completions":["opml"]},{"_internalId":212199,"type":"string","pattern":"^(.+-)?org([-+].+)?$","description":"be 'org'","completions":["org"]},{"_internalId":212200,"type":"string","pattern":"^(.+-)?pdf([-+].+)?$","description":"be 'pdf'","completions":["pdf"]},{"_internalId":212201,"type":"string","pattern":"^(.+-)?plain([-+].+)?$","description":"be 'plain'","completions":["plain"]},{"_internalId":212202,"type":"string","pattern":"^(.+-)?pptx([-+].+)?$","description":"be 'pptx'","completions":["pptx"]},{"_internalId":212203,"type":"string","pattern":"^(.+-)?revealjs([-+].+)?$","description":"be 'revealjs'","completions":["revealjs"]},{"_internalId":212204,"type":"string","pattern":"^(.+-)?rst([-+].+)?$","description":"be 'rst'","completions":["rst"]},{"_internalId":212205,"type":"string","pattern":"^(.+-)?rtf([-+].+)?$","description":"be 'rtf'","completions":["rtf"]},{"_internalId":212206,"type":"string","pattern":"^(.+-)?s5([-+].+)?$","description":"be 's5'","completions":["s5"]},{"_internalId":212207,"type":"string","pattern":"^(.+-)?slideous([-+].+)?$","description":"be 'slideous'","completions":["slideous"]},{"_internalId":212208,"type":"string","pattern":"^(.+-)?slidy([-+].+)?$","description":"be 'slidy'","completions":["slidy"]},{"_internalId":212209,"type":"string","pattern":"^(.+-)?tei([-+].+)?$","description":"be 'tei'","completions":["tei"]},{"_internalId":212210,"type":"string","pattern":"^(.+-)?texinfo([-+].+)?$","description":"be 'texinfo'","completions":["texinfo"]},{"_internalId":212211,"type":"string","pattern":"^(.+-)?textile([-+].+)?$","description":"be 'textile'","completions":["textile"]},{"_internalId":212212,"type":"string","pattern":"^(.+-)?typst([-+].+)?$","description":"be 'typst'","completions":["typst"]},{"_internalId":212213,"type":"string","pattern":"^(.+-)?vimdoc([-+].+)?$","description":"be 'vimdoc'","completions":["vimdoc"]},{"_internalId":212214,"type":"string","pattern":"^(.+-)?xml([-+].+)?$","description":"be 'xml'","completions":["xml"]},{"_internalId":212215,"type":"string","pattern":"^(.+-)?xwiki([-+].+)?$","description":"be 'xwiki'","completions":["xwiki"]},{"_internalId":212216,"type":"string","pattern":"^(.+-)?zimwiki([-+].+)?$","description":"be 'zimwiki'","completions":["zimwiki"]},{"_internalId":212217,"type":"string","pattern":"^(.+-)?md([-+].+)?$","description":"be 'md'","completions":["md"]},{"_internalId":212218,"type":"string","pattern":"^(.+-)?hugo([-+].+)?$","description":"be 'hugo'","completions":["hugo"]},{"_internalId":212219,"type":"string","pattern":"^(.+-)?dashboard([-+].+)?$","description":"be 'dashboard'","completions":["dashboard"]},{"_internalId":212220,"type":"string","pattern":"^(.+-)?email([-+].+)?$","description":"be 'email'","completions":["email"]},{"_internalId":212221,"type":"string","pattern":"^.+.lua$","description":"be a string that satisfies regex \"^.+.lua$\""}],"description":"be the name of a pandoc-supported output format"},{"_internalId":212223,"type":"object","description":"be an object","properties":{},"patternProperties":{},"propertyNames":{"_internalId":212221,"type":"string","pattern":"^.+.lua$","description":"be a string that satisfies regex \"^.+.lua$\""}},{"_internalId":212225,"type":"allOf","allOf":[{"_internalId":212224,"type":"object","description":"be an object","properties":{},"patternProperties":{"^(.+-)?ansi([-+].+)?$":{"_internalId":8126,"type":"anyOf","anyOf":[{"_internalId":8124,"type":"object","description":"be an object","properties":{"eval":{"_internalId":8028,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":8029,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":8030,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":8031,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":8032,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":8033,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":8034,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":8035,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":8036,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":8037,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":8038,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":8039,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":8040,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":8041,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":8042,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":8043,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":8044,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":8045,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":8046,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":8047,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":8048,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":8049,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":8050,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":8051,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":8052,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":8053,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":8054,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":8055,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":8056,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":8057,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":8058,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":8059,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":8060,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":8061,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":8062,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":8062,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":8063,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":8064,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":8065,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":8066,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":8067,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":8068,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":8069,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":8070,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":8071,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":8072,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":8073,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":8074,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":8075,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":8076,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":8077,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":8078,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":8079,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":8080,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":8081,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":8082,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":8083,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":8084,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":8085,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":8086,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":8087,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":8088,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":8089,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":8090,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":8091,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":8092,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":8093,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":8094,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":8095,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":8096,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":8097,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":8098,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":8099,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":8099,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":8100,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":8101,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":8102,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":8103,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":8104,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":8105,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":8106,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":8107,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":8108,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":8109,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":8110,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":8111,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":8112,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":8113,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":8114,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":8115,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":8116,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":8117,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":8118,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":8119,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":8120,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":8121,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":8122,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":8122,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":8123,"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,grid,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":8125,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?asciidoc([-+].+)?$":{"_internalId":10728,"type":"anyOf","anyOf":[{"_internalId":10726,"type":"object","description":"be an object","properties":{"eval":{"_internalId":10628,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":10629,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":10630,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":10631,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":10632,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":10633,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":10634,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":10635,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":10636,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":10637,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":10638,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"order":{"_internalId":10639,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":10640,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":10641,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":10642,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":10643,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":10644,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":10645,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":10646,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":10647,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":10648,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":10649,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":10650,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":10651,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":10652,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":10653,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":10654,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":10655,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":10656,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":10657,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":10658,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":10659,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":10660,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":10661,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":10662,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":10663,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":10663,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":10664,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":10665,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":10666,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":10667,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":10668,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":10669,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":10670,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":10671,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":10672,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":10673,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":10674,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":10675,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":10676,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":10677,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":10678,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":10679,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":10680,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":10681,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":10682,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":10683,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":10684,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":10685,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":10686,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":10687,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":10688,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":10689,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":10690,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":10691,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"keywords":{"_internalId":10692,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"number-sections":{"_internalId":10693,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":10694,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":10695,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":10696,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":10697,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":10698,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":10699,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":10700,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":10701,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":10701,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":10702,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":10703,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":10704,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":10705,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":10706,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":10707,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":10708,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":10709,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":10710,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":10711,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":10712,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":10713,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":10714,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":10715,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":10716,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":10717,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":10718,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":10719,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":10720,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":10721,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":10722,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":10723,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":10724,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":10724,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":10725,"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,grid,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":10727,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?asciidoc_legacy([-+].+)?$":{"_internalId":13328,"type":"anyOf","anyOf":[{"_internalId":13326,"type":"object","description":"be an object","properties":{"eval":{"_internalId":13230,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":13231,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":13232,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":13233,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":13234,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":13235,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":13236,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":13237,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":13238,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":13239,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":13240,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":13241,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":13242,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":13243,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":13244,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":13245,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":13246,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":13247,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":13248,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":13249,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":13250,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":13251,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":13252,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":13253,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":13254,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":13255,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":13256,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":13257,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":13258,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":13259,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":13260,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":13261,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":13262,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":13263,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":13264,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":13264,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":13265,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":13266,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":13267,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":13268,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":13269,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":13270,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":13271,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":13272,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":13273,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":13274,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":13275,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":13276,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":13277,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":13278,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":13279,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":13280,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":13281,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":13282,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":13283,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":13284,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":13285,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":13286,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":13287,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":13288,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":13289,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":13290,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":13291,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":13292,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":13293,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":13294,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":13295,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":13296,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":13297,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":13298,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":13299,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":13300,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":13301,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":13301,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":13302,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":13303,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":13304,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":13305,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":13306,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":13307,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":13308,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":13309,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":13310,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":13311,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":13312,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":13313,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":13314,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":13315,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":13316,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":13317,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":13318,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":13319,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":13320,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":13321,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":13322,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":13323,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":13324,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":13324,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":13325,"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,grid,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":13327,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?asciidoctor([-+].+)?$":{"_internalId":15930,"type":"anyOf","anyOf":[{"_internalId":15928,"type":"object","description":"be an object","properties":{"eval":{"_internalId":15830,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":15831,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":15832,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":15833,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":15834,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":15835,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":15836,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":15837,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":15838,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":15839,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":15840,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"order":{"_internalId":15841,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":15842,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":15843,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":15844,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":15845,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":15846,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":15847,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":15848,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":15849,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":15850,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":15851,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":15852,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":15853,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":15854,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":15855,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":15856,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":15857,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":15858,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":15859,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":15860,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":15861,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":15862,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":15863,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":15864,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":15865,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":15865,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":15866,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":15867,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":15868,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":15869,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":15870,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":15871,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":15872,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":15873,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":15874,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":15875,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":15876,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":15877,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":15878,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":15879,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":15880,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":15881,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":15882,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":15883,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":15884,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":15885,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":15886,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":15887,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":15888,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":15889,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":15890,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":15891,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":15892,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":15893,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"keywords":{"_internalId":15894,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"number-sections":{"_internalId":15895,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":15896,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":15897,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":15898,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":15899,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":15900,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":15901,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":15902,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":15903,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":15903,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":15904,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":15905,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":15906,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":15907,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":15908,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":15909,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":15910,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":15911,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":15912,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":15913,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":15914,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":15915,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":15916,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":15917,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":15918,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":15919,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":15920,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":15921,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":15922,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":15923,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":15924,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":15925,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":15926,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":15926,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":15927,"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,grid,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":15929,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode([-+].+)?$":{"_internalId":18530,"type":"anyOf","anyOf":[{"_internalId":18528,"type":"object","description":"be an object","properties":{"eval":{"_internalId":18432,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":18433,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":18434,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":18435,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":18436,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":18437,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":18438,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":18439,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":18440,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":18441,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":18442,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":18443,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":18444,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":18445,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":18446,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":18447,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":18448,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":18449,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":18450,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":18451,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":18452,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":18453,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":18454,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":18455,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":18456,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":18457,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":18458,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":18459,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":18460,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":18461,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":18462,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":18463,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":18464,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":18465,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":18466,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":18466,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":18467,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":18468,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":18469,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":18470,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":18471,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":18472,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":18473,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":18474,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":18475,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":18476,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":18477,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":18478,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":18479,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":18480,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":18481,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":18482,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":18483,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":18484,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":18485,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":18486,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":18487,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":18488,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":18489,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":18490,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":18491,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":18492,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":18493,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":18494,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":18495,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":18496,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":18497,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":18498,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":18499,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":18500,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":18501,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":18502,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":18503,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":18503,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":18504,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":18505,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":18506,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":18507,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":18508,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":18509,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":18510,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":18511,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":18512,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":18513,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":18514,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":18515,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":18516,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":18517,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":18518,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":18519,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":18520,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":18521,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":18522,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":18523,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":18524,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":18525,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":18526,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":18526,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":18527,"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,grid,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":18529,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode_fluxbb([-+].+)?$":{"_internalId":21130,"type":"anyOf","anyOf":[{"_internalId":21128,"type":"object","description":"be an object","properties":{"eval":{"_internalId":21032,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":21033,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":21034,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":21035,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":21036,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":21037,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":21038,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":21039,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":21040,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":21041,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":21042,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":21043,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":21044,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":21045,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":21046,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":21047,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":21048,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":21049,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":21050,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":21051,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":21052,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":21053,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":21054,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":21055,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":21056,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":21057,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":21058,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":21059,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":21060,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":21061,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":21062,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":21063,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":21064,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":21065,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":21066,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":21066,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":21067,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":21068,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":21069,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":21070,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":21071,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":21072,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":21073,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":21074,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":21075,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":21076,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":21077,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":21078,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":21079,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":21080,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":21081,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":21082,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":21083,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":21084,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":21085,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":21086,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":21087,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":21088,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":21089,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":21090,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":21091,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":21092,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":21093,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":21094,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":21095,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":21096,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":21097,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":21098,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":21099,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":21100,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":21101,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":21102,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":21103,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":21103,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":21104,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":21105,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":21106,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":21107,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":21108,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":21109,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":21110,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":21111,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":21112,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":21113,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":21114,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":21115,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":21116,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":21117,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":21118,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":21119,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":21120,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":21121,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":21122,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":21123,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":21124,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":21125,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":21126,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":21126,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":21127,"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,grid,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":21129,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode_hubzilla([-+].+)?$":{"_internalId":23730,"type":"anyOf","anyOf":[{"_internalId":23728,"type":"object","description":"be an object","properties":{"eval":{"_internalId":23632,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":23633,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":23634,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":23635,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":23636,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":23637,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":23638,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":23639,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":23640,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":23641,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":23642,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":23643,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":23644,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":23645,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":23646,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":23647,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":23648,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":23649,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":23650,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":23651,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":23652,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":23653,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":23654,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":23655,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":23656,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":23657,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":23658,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":23659,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":23660,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":23661,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":23662,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":23663,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":23664,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":23665,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":23666,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":23666,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":23667,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":23668,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":23669,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":23670,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":23671,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":23672,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":23673,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":23674,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":23675,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":23676,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":23677,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":23678,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":23679,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":23680,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":23681,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":23682,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":23683,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":23684,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":23685,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":23686,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":23687,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":23688,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":23689,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":23690,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":23691,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":23692,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":23693,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":23694,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":23695,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":23696,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":23697,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":23698,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":23699,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":23700,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":23701,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":23702,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":23703,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":23703,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":23704,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":23705,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":23706,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":23707,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":23708,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":23709,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":23710,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":23711,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":23712,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":23713,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":23714,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":23715,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":23716,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":23717,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":23718,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":23719,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":23720,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":23721,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":23722,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":23723,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":23724,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":23725,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":23726,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":23726,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":23727,"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,grid,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":23729,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode_phpbb([-+].+)?$":{"_internalId":26330,"type":"anyOf","anyOf":[{"_internalId":26328,"type":"object","description":"be an object","properties":{"eval":{"_internalId":26232,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":26233,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":26234,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":26235,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":26236,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":26237,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":26238,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":26239,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":26240,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":26241,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":26242,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":26243,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":26244,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":26245,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":26246,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":26247,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":26248,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":26249,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":26250,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":26251,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":26252,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":26253,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":26254,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":26255,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":26256,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":26257,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":26258,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":26259,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":26260,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":26261,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":26262,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":26263,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":26264,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":26265,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":26266,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":26266,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":26267,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":26268,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":26269,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":26270,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":26271,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":26272,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":26273,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":26274,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":26275,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":26276,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":26277,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":26278,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":26279,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":26280,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":26281,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":26282,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":26283,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":26284,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":26285,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":26286,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":26287,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":26288,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":26289,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":26290,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":26291,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":26292,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":26293,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":26294,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":26295,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":26296,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":26297,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":26298,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":26299,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":26300,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":26301,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":26302,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":26303,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":26303,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":26304,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":26305,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":26306,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":26307,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":26308,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":26309,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":26310,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":26311,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":26312,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":26313,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":26314,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":26315,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":26316,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":26317,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":26318,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":26319,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":26320,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":26321,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":26322,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":26323,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":26324,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":26325,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":26326,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":26326,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":26327,"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,grid,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":26329,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode_steam([-+].+)?$":{"_internalId":28930,"type":"anyOf","anyOf":[{"_internalId":28928,"type":"object","description":"be an object","properties":{"eval":{"_internalId":28832,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":28833,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":28834,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":28835,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":28836,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":28837,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":28838,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":28839,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":28840,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":28841,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":28842,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":28843,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":28844,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":28845,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":28846,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":28847,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":28848,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":28849,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":28850,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":28851,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":28852,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":28853,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":28854,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":28855,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":28856,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":28857,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":28858,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":28859,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":28860,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":28861,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":28862,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":28863,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":28864,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":28865,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":28866,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":28866,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":28867,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":28868,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":28869,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":28870,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":28871,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":28872,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":28873,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":28874,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":28875,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":28876,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":28877,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":28878,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":28879,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":28880,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":28881,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":28882,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":28883,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":28884,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":28885,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":28886,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":28887,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":28888,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":28889,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":28890,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":28891,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":28892,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":28893,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":28894,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":28895,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":28896,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":28897,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":28898,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":28899,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":28900,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":28901,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":28902,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":28903,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":28903,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":28904,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":28905,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":28906,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":28907,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":28908,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":28909,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":28910,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":28911,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":28912,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":28913,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":28914,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":28915,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":28916,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":28917,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":28918,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":28919,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":28920,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":28921,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":28922,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":28923,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":28924,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":28925,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":28926,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":28926,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":28927,"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,grid,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":28929,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode_xenforo([-+].+)?$":{"_internalId":31530,"type":"anyOf","anyOf":[{"_internalId":31528,"type":"object","description":"be an object","properties":{"eval":{"_internalId":31432,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":31433,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":31434,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":31435,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":31436,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":31437,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":31438,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":31439,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":31440,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":31441,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":31442,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":31443,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":31444,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":31445,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":31446,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":31447,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":31448,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":31449,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":31450,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":31451,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":31452,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":31453,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":31454,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":31455,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":31456,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":31457,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":31458,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":31459,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":31460,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":31461,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":31462,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":31463,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":31464,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":31465,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":31466,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":31466,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":31467,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":31468,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":31469,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":31470,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":31471,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":31472,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":31473,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":31474,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":31475,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":31476,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":31477,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":31478,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":31479,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":31480,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":31481,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":31482,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":31483,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":31484,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":31485,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":31486,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":31487,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":31488,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":31489,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":31490,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":31491,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":31492,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":31493,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":31494,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":31495,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":31496,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":31497,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":31498,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":31499,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":31500,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":31501,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":31502,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":31503,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":31503,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":31504,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":31505,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":31506,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":31507,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":31508,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":31509,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":31510,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":31511,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":31512,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":31513,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":31514,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":31515,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":31516,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":31517,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":31518,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":31519,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":31520,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":31521,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":31522,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":31523,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":31524,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":31525,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":31526,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":31526,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":31527,"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,grid,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":31529,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?beamer([-+].+)?$":{"_internalId":34235,"type":"anyOf","anyOf":[{"_internalId":34233,"type":"object","description":"be an object","properties":{"eval":{"_internalId":34032,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":34033,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-line-numbers":{"_internalId":34034,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":34035,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-env":{"_internalId":34036,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":34037,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"cap-location":{"_internalId":34038,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":34039,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":34040,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":34041,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":34042,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":34043,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":34044,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":34045,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":34046,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":34047,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":34048,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":34049,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":34050,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":34051,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"abstract":{"_internalId":34052,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"thanks":{"_internalId":34053,"type":"ref","$ref":"quarto-resource-document-attributes-thanks","description":"quarto-resource-document-attributes-thanks"},"order":{"_internalId":34054,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":34055,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":34056,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-block-border-left":{"_internalId":34057,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":34058,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"highlight-style":{"_internalId":34059,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":34060,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":34061,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"listings":{"_internalId":34062,"type":"ref","$ref":"quarto-resource-document-code-listings","description":"quarto-resource-document-code-listings"},"indented-code-classes":{"_internalId":34063,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"linkcolor":{"_internalId":34064,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"filecolor":{"_internalId":34065,"type":"ref","$ref":"quarto-resource-document-colors-filecolor","description":"quarto-resource-document-colors-filecolor"},"citecolor":{"_internalId":34066,"type":"ref","$ref":"quarto-resource-document-colors-citecolor","description":"quarto-resource-document-colors-citecolor"},"urlcolor":{"_internalId":34067,"type":"ref","$ref":"quarto-resource-document-colors-urlcolor","description":"quarto-resource-document-colors-urlcolor"},"toccolor":{"_internalId":34068,"type":"ref","$ref":"quarto-resource-document-colors-toccolor","description":"quarto-resource-document-colors-toccolor"},"colorlinks":{"_internalId":34069,"type":"ref","$ref":"quarto-resource-document-colors-colorlinks","description":"quarto-resource-document-colors-colorlinks"},"crossref":{"_internalId":34070,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":34071,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":34072,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":34073,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":34074,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":34075,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":34076,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":34077,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":34078,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":34079,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":34080,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":34081,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":34082,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":34083,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":34084,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":34085,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":34086,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":34087,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":34088,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":34089,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"mainfont":{"_internalId":34090,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":34091,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":34092,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"fontenc":{"_internalId":34093,"type":"ref","$ref":"quarto-resource-document-fonts-fontenc","description":"quarto-resource-document-fonts-fontenc"},"fontfamily":{"_internalId":34094,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamily","description":"quarto-resource-document-fonts-fontfamily"},"fontfamilyoptions":{"_internalId":34095,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamilyoptions","description":"quarto-resource-document-fonts-fontfamilyoptions"},"sansfont":{"_internalId":34096,"type":"ref","$ref":"quarto-resource-document-fonts-sansfont","description":"quarto-resource-document-fonts-sansfont"},"mathfont":{"_internalId":34097,"type":"ref","$ref":"quarto-resource-document-fonts-mathfont","description":"quarto-resource-document-fonts-mathfont"},"CJKmainfont":{"_internalId":34098,"type":"ref","$ref":"quarto-resource-document-fonts-CJKmainfont","description":"quarto-resource-document-fonts-CJKmainfont"},"mainfontoptions":{"_internalId":34099,"type":"ref","$ref":"quarto-resource-document-fonts-mainfontoptions","description":"quarto-resource-document-fonts-mainfontoptions"},"sansfontoptions":{"_internalId":34100,"type":"ref","$ref":"quarto-resource-document-fonts-sansfontoptions","description":"quarto-resource-document-fonts-sansfontoptions"},"monofontoptions":{"_internalId":34101,"type":"ref","$ref":"quarto-resource-document-fonts-monofontoptions","description":"quarto-resource-document-fonts-monofontoptions"},"mathfontoptions":{"_internalId":34102,"type":"ref","$ref":"quarto-resource-document-fonts-mathfontoptions","description":"quarto-resource-document-fonts-mathfontoptions"},"CJKoptions":{"_internalId":34103,"type":"ref","$ref":"quarto-resource-document-fonts-CJKoptions","description":"quarto-resource-document-fonts-CJKoptions"},"microtypeoptions":{"_internalId":34104,"type":"ref","$ref":"quarto-resource-document-fonts-microtypeoptions","description":"quarto-resource-document-fonts-microtypeoptions"},"linestretch":{"_internalId":34105,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"links-as-notes":{"_internalId":34106,"type":"ref","$ref":"quarto-resource-document-footnotes-links-as-notes","description":"quarto-resource-document-footnotes-links-as-notes"},"funding":{"_internalId":34107,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":34108,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":34108,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":34109,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":34110,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":34111,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":34112,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":34113,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":34114,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":34115,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":34116,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":34117,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":34118,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":34119,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":34120,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":34121,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":34122,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":34123,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":34124,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":34125,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":34126,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":34127,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":34128,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":34129,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":34130,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":34131,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":34132,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":34133,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":34134,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"shorthands":{"_internalId":34135,"type":"ref","$ref":"quarto-resource-document-language-shorthands","description":"quarto-resource-document-language-shorthands"},"dir":{"_internalId":34136,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"latex-auto-mk":{"_internalId":34137,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-mk","description":"quarto-resource-document-latexmk-latex-auto-mk"},"latex-auto-install":{"_internalId":34138,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-install","description":"quarto-resource-document-latexmk-latex-auto-install"},"latex-min-runs":{"_internalId":34139,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-min-runs","description":"quarto-resource-document-latexmk-latex-min-runs"},"latex-max-runs":{"_internalId":34140,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-max-runs","description":"quarto-resource-document-latexmk-latex-max-runs"},"latex-clean":{"_internalId":34141,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-clean","description":"quarto-resource-document-latexmk-latex-clean"},"latex-makeindex":{"_internalId":34142,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex","description":"quarto-resource-document-latexmk-latex-makeindex"},"latex-makeindex-opts":{"_internalId":34143,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex-opts","description":"quarto-resource-document-latexmk-latex-makeindex-opts"},"latex-tlmgr-opts":{"_internalId":34144,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tlmgr-opts","description":"quarto-resource-document-latexmk-latex-tlmgr-opts"},"latex-output-dir":{"_internalId":34145,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-output-dir","description":"quarto-resource-document-latexmk-latex-output-dir"},"latex-tinytex":{"_internalId":34146,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tinytex","description":"quarto-resource-document-latexmk-latex-tinytex"},"latex-input-paths":{"_internalId":34147,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-input-paths","description":"quarto-resource-document-latexmk-latex-input-paths"},"documentclass":{"_internalId":34148,"type":"ref","$ref":"quarto-resource-document-layout-documentclass","description":"quarto-resource-document-layout-documentclass"},"classoption":{"_internalId":34149,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"pagestyle":{"_internalId":34150,"type":"ref","$ref":"quarto-resource-document-layout-pagestyle","description":"quarto-resource-document-layout-pagestyle"},"papersize":{"_internalId":34151,"type":"ref","$ref":"quarto-resource-document-layout-papersize","description":"quarto-resource-document-layout-papersize"},"grid":{"_internalId":34152,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"margin-left":{"_internalId":34153,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":34154,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":34155,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":34156,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"geometry":{"_internalId":34157,"type":"ref","$ref":"quarto-resource-document-layout-geometry","description":"quarto-resource-document-layout-geometry"},"hyperrefoptions":{"_internalId":34158,"type":"ref","$ref":"quarto-resource-document-layout-hyperrefoptions","description":"quarto-resource-document-layout-hyperrefoptions"},"indent":{"_internalId":34159,"type":"ref","$ref":"quarto-resource-document-layout-indent","description":"quarto-resource-document-layout-indent"},"block-headings":{"_internalId":34160,"type":"ref","$ref":"quarto-resource-document-layout-block-headings","description":"quarto-resource-document-layout-block-headings"},"keywords":{"_internalId":34161,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":34162,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"title-meta":{"_internalId":34163,"type":"ref","$ref":"quarto-resource-document-metadata-title-meta","description":"quarto-resource-document-metadata-title-meta"},"author-meta":{"_internalId":34164,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":34165,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":34166,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":34167,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"secnumdepth":{"_internalId":34168,"type":"ref","$ref":"quarto-resource-document-numbering-secnumdepth","description":"quarto-resource-document-numbering-secnumdepth"},"shift-heading-level-by":{"_internalId":34169,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":34170,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":34171,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":34172,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"pdf-engine":{"_internalId":34173,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":34174,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":34175,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"beameroption":{"_internalId":34176,"type":"ref","$ref":"quarto-resource-document-options-beameroption","description":"quarto-resource-document-options-beameroption"},"aspectratio":{"_internalId":34177,"type":"ref","$ref":"quarto-resource-document-options-aspectratio","description":"quarto-resource-document-options-aspectratio"},"logo":{"_internalId":34178,"type":"ref","$ref":"quarto-resource-document-options-logo","description":"quarto-resource-document-options-logo"},"titlegraphic":{"_internalId":34179,"type":"ref","$ref":"quarto-resource-document-options-titlegraphic","description":"quarto-resource-document-options-titlegraphic"},"navigation":{"_internalId":34180,"type":"ref","$ref":"quarto-resource-document-options-navigation","description":"quarto-resource-document-options-navigation"},"section-titles":{"_internalId":34181,"type":"ref","$ref":"quarto-resource-document-options-section-titles","description":"quarto-resource-document-options-section-titles"},"colortheme":{"_internalId":34182,"type":"ref","$ref":"quarto-resource-document-options-colortheme","description":"quarto-resource-document-options-colortheme"},"colorthemeoptions":{"_internalId":34183,"type":"ref","$ref":"quarto-resource-document-options-colorthemeoptions","description":"quarto-resource-document-options-colorthemeoptions"},"fonttheme":{"_internalId":34184,"type":"ref","$ref":"quarto-resource-document-options-fonttheme","description":"quarto-resource-document-options-fonttheme"},"fontthemeoptions":{"_internalId":34185,"type":"ref","$ref":"quarto-resource-document-options-fontthemeoptions","description":"quarto-resource-document-options-fontthemeoptions"},"innertheme":{"_internalId":34186,"type":"ref","$ref":"quarto-resource-document-options-innertheme","description":"quarto-resource-document-options-innertheme"},"innerthemeoptions":{"_internalId":34187,"type":"ref","$ref":"quarto-resource-document-options-innerthemeoptions","description":"quarto-resource-document-options-innerthemeoptions"},"outertheme":{"_internalId":34188,"type":"ref","$ref":"quarto-resource-document-options-outertheme","description":"quarto-resource-document-options-outertheme"},"outerthemeoptions":{"_internalId":34189,"type":"ref","$ref":"quarto-resource-document-options-outerthemeoptions","description":"quarto-resource-document-options-outerthemeoptions"},"themeoptions":{"_internalId":34190,"type":"ref","$ref":"quarto-resource-document-options-themeoptions","description":"quarto-resource-document-options-themeoptions"},"quarto-required":{"_internalId":34191,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":34192,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":34193,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"cite-method":{"_internalId":34194,"type":"ref","$ref":"quarto-resource-document-references-cite-method","description":"quarto-resource-document-references-cite-method"},"citeproc":{"_internalId":34195,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"biblatexoptions":{"_internalId":34196,"type":"ref","$ref":"quarto-resource-document-references-biblatexoptions","description":"quarto-resource-document-references-biblatexoptions"},"natbiboptions":{"_internalId":34197,"type":"ref","$ref":"quarto-resource-document-references-natbiboptions","description":"quarto-resource-document-references-natbiboptions"},"biblio-style":{"_internalId":34198,"type":"ref","$ref":"quarto-resource-document-references-biblio-style","description":"quarto-resource-document-references-biblio-style"},"biblio-title":{"_internalId":34199,"type":"ref","$ref":"quarto-resource-document-references-biblio-title","description":"quarto-resource-document-references-biblio-title"},"biblio-config":{"_internalId":34200,"type":"ref","$ref":"quarto-resource-document-references-biblio-config","description":"quarto-resource-document-references-biblio-config"},"citation-abbreviations":{"_internalId":34201,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"link-citations":{"_internalId":34202,"type":"ref","$ref":"quarto-resource-document-references-link-citations","description":"quarto-resource-document-references-link-citations"},"link-bibliography":{"_internalId":34203,"type":"ref","$ref":"quarto-resource-document-references-link-bibliography","description":"quarto-resource-document-references-link-bibliography"},"notes-after-punctuation":{"_internalId":34204,"type":"ref","$ref":"quarto-resource-document-references-notes-after-punctuation","description":"quarto-resource-document-references-notes-after-punctuation"},"from":{"_internalId":34205,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":34205,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":34206,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":34207,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":34208,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":34209,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":34210,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":34211,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":34212,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":34213,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":34214,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":34215,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":34216,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"keep-tex":{"_internalId":34217,"type":"ref","$ref":"quarto-resource-document-render-keep-tex","description":"quarto-resource-document-render-keep-tex"},"extract-media":{"_internalId":34218,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":34219,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":34220,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":34221,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":34222,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":34223,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"use-rsvg-convert":{"_internalId":34224,"type":"ref","$ref":"quarto-resource-document-render-use-rsvg-convert","description":"quarto-resource-document-render-use-rsvg-convert"},"incremental":{"_internalId":34225,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":34226,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":34227,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":34228,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":34229,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":34229,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-title":{"_internalId":34230,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"lof":{"_internalId":34231,"type":"ref","$ref":"quarto-resource-document-toc-lof","description":"quarto-resource-document-toc-lof"},"lot":{"_internalId":34232,"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,grid,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":34234,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?biblatex([-+].+)?$":{"_internalId":36835,"type":"anyOf","anyOf":[{"_internalId":36833,"type":"object","description":"be an object","properties":{"eval":{"_internalId":36737,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":36738,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":36739,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":36740,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":36741,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":36742,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":36743,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":36744,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":36745,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":36746,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":36747,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":36748,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":36749,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":36750,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":36751,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":36752,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":36753,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":36754,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":36755,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":36756,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":36757,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":36758,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":36759,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":36760,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":36761,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":36762,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":36763,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":36764,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":36765,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":36766,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":36767,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":36768,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":36769,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":36770,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":36771,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":36771,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":36772,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":36773,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":36774,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":36775,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":36776,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":36777,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":36778,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":36779,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":36780,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":36781,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":36782,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":36783,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":36784,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":36785,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":36786,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":36787,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":36788,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":36789,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":36790,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":36791,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":36792,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":36793,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":36794,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":36795,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":36796,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":36797,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":36798,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":36799,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":36800,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":36801,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":36802,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":36803,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":36804,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":36805,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":36806,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":36807,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":36808,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":36808,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":36809,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":36810,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":36811,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":36812,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":36813,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":36814,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":36815,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":36816,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":36817,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":36818,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":36819,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":36820,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":36821,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":36822,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":36823,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":36824,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":36825,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":36826,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":36827,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":36828,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":36829,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":36830,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":36831,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":36831,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":36832,"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,grid,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":36834,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bibtex([-+].+)?$":{"_internalId":39435,"type":"anyOf","anyOf":[{"_internalId":39433,"type":"object","description":"be an object","properties":{"eval":{"_internalId":39337,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":39338,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":39339,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":39340,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":39341,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":39342,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":39343,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":39344,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":39345,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":39346,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":39347,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":39348,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":39349,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":39350,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":39351,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":39352,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":39353,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":39354,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":39355,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":39356,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":39357,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":39358,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":39359,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":39360,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":39361,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":39362,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":39363,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":39364,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":39365,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":39366,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":39367,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":39368,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":39369,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":39370,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":39371,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":39371,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":39372,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":39373,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":39374,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":39375,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":39376,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":39377,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":39378,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":39379,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":39380,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":39381,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":39382,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":39383,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":39384,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":39385,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":39386,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":39387,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":39388,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":39389,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":39390,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":39391,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":39392,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":39393,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":39394,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":39395,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":39396,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":39397,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":39398,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":39399,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":39400,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":39401,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":39402,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":39403,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":39404,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":39405,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":39406,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":39407,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":39408,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":39408,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":39409,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":39410,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":39411,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":39412,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":39413,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":39414,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":39415,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":39416,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":39417,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":39418,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":39419,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":39420,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":39421,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":39422,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":39423,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":39424,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":39425,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":39426,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":39427,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":39428,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":39429,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":39430,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":39431,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":39431,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":39432,"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,grid,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":39434,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?chunkedhtml([-+].+)?$":{"_internalId":42036,"type":"anyOf","anyOf":[{"_internalId":42034,"type":"object","description":"be an object","properties":{"eval":{"_internalId":41937,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":41938,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":41939,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":41940,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":41941,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":41942,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":41943,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":41944,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":41945,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":41946,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":41947,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":41948,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":41949,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":41950,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":41951,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":41952,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":41953,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":41954,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":41955,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":41956,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":41957,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":41958,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":41959,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":41960,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":41961,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":41962,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":41963,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":41964,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":41965,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":41966,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":41967,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":41968,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":41969,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"split-level":{"_internalId":41970,"type":"ref","$ref":"quarto-resource-document-formatting-split-level","description":"quarto-resource-document-formatting-split-level"},"funding":{"_internalId":41971,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":41972,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":41972,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":41973,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":41974,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":41975,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":41976,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":41977,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":41978,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":41979,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":41980,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":41981,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":41982,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":41983,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":41984,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":41985,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":41986,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":41987,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":41988,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":41989,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":41990,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":41991,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":41992,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":41993,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":41994,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":41995,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":41996,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":41997,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":41998,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":41999,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":42000,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":42001,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":42002,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":42003,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":42004,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":42005,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":42006,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":42007,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":42008,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":42009,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":42009,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":42010,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":42011,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":42012,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":42013,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":42014,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":42015,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":42016,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":42017,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":42018,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":42019,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":42020,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":42021,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":42022,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":42023,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":42024,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":42025,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":42026,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":42027,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":42028,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":42029,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":42030,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":42031,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":42032,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":42032,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":42033,"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,grid,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":42035,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?commonmark([-+].+)?$":{"_internalId":44643,"type":"anyOf","anyOf":[{"_internalId":44641,"type":"object","description":"be an object","properties":{"eval":{"_internalId":44538,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":44539,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":44540,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":44541,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":44542,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":44543,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":44544,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":44545,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":44546,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":44547,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":44548,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":44549,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":44550,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":44551,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":44552,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":44553,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":44554,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":44555,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":44556,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":44557,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":44558,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":44559,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":44560,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":44561,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":44562,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":44563,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":44564,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":44565,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":44566,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":44567,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":44568,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":44569,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":44570,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":44571,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":44572,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":44573,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":44573,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":44574,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":44575,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":44576,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":44577,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":44578,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":44579,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":44580,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":44581,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":44582,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":44583,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":44584,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":44585,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":44586,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":44587,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":44588,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":44589,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":44590,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":44591,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":44592,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":44593,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":44594,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":44595,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":44596,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":44597,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":44598,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":44599,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":44600,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":44601,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":44602,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":44603,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":44604,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":44605,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":44606,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":44607,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":44608,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":44609,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":44610,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":44611,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":44612,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":44613,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":44614,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":44614,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":44615,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":44616,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":44617,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":44618,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":44619,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":44620,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":44621,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":44622,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":44623,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":44624,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":44625,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":44626,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":44627,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":44628,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":44629,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":44630,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":44631,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":44632,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":44633,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":44634,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":44635,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":44636,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":44637,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":44638,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":44639,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":44639,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":44640,"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,grid,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":44642,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?commonmark_x([-+].+)?$":{"_internalId":47250,"type":"anyOf","anyOf":[{"_internalId":47248,"type":"object","description":"be an object","properties":{"eval":{"_internalId":47145,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":47146,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":47147,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":47148,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":47149,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":47150,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":47151,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":47152,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":47153,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":47154,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":47155,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":47156,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":47157,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":47158,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":47159,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":47160,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":47161,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":47162,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":47163,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":47164,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":47165,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":47166,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":47167,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":47168,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":47169,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":47170,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":47171,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":47172,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":47173,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":47174,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":47175,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":47176,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":47177,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":47178,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":47179,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":47180,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":47180,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":47181,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":47182,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":47183,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":47184,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":47185,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":47186,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":47187,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":47188,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":47189,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":47190,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":47191,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":47192,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":47193,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":47194,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":47195,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":47196,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":47197,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":47198,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":47199,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":47200,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":47201,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":47202,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":47203,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":47204,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":47205,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":47206,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":47207,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":47208,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":47209,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":47210,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":47211,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":47212,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":47213,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":47214,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":47215,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":47216,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":47217,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":47218,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":47219,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":47220,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":47221,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":47221,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":47222,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":47223,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":47224,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":47225,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":47226,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":47227,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":47228,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":47229,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":47230,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":47231,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":47232,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":47233,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":47234,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":47235,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":47236,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":47237,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":47238,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":47239,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":47240,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":47241,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":47242,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":47243,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":47244,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":47245,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":47246,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":47246,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":47247,"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,grid,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":47249,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?context([-+].+)?$":{"_internalId":49879,"type":"anyOf","anyOf":[{"_internalId":49877,"type":"object","description":"be an object","properties":{"eval":{"_internalId":49752,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":49753,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":49754,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":49755,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":49756,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":49757,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":49758,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":49759,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":49760,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":49761,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":49762,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":49763,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"order":{"_internalId":49764,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":49765,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":49766,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"linkcolor":{"_internalId":49767,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"contrastcolor":{"_internalId":49768,"type":"ref","$ref":"quarto-resource-document-colors-contrastcolor","description":"quarto-resource-document-colors-contrastcolor"},"crossref":{"_internalId":49769,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":49770,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":49771,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":49772,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":49773,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":49774,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":49775,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":49776,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":49777,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":49778,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":49779,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":49780,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":49781,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":49782,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":49783,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":49784,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":49785,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":49786,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":49787,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":49788,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"mainfont":{"_internalId":49789,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":49790,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":49791,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"linestretch":{"_internalId":49792,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"interlinespace":{"_internalId":49793,"type":"ref","$ref":"quarto-resource-document-fonts-interlinespace","description":"quarto-resource-document-fonts-interlinespace"},"linkstyle":{"_internalId":49794,"type":"ref","$ref":"quarto-resource-document-fonts-linkstyle","description":"quarto-resource-document-fonts-linkstyle"},"whitespace":{"_internalId":49795,"type":"ref","$ref":"quarto-resource-document-fonts-whitespace","description":"quarto-resource-document-fonts-whitespace"},"indenting":{"_internalId":49796,"type":"ref","$ref":"quarto-resource-document-formatting-indenting","description":"quarto-resource-document-formatting-indenting"},"funding":{"_internalId":49797,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":49798,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":49798,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":49799,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":49800,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":49801,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":49802,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":49803,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":49804,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":49805,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":49806,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":49807,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":49808,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":49809,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":49810,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":49811,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":49812,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":49813,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":49814,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":49815,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":49816,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":49817,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":49818,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":49819,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":49820,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"headertext":{"_internalId":49821,"type":"ref","$ref":"quarto-resource-document-includes-headertext","description":"quarto-resource-document-includes-headertext"},"footertext":{"_internalId":49822,"type":"ref","$ref":"quarto-resource-document-includes-footertext","description":"quarto-resource-document-includes-footertext"},"includesource":{"_internalId":49823,"type":"ref","$ref":"quarto-resource-document-includes-includesource","description":"quarto-resource-document-includes-includesource"},"metadata-file":{"_internalId":49824,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":49825,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":49826,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":49827,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":49828,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"layout":{"_internalId":49829,"type":"ref","$ref":"quarto-resource-document-layout-layout","description":"quarto-resource-document-layout-layout"},"grid":{"_internalId":49830,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"margin-left":{"_internalId":49831,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":49832,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":49833,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":49834,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"keywords":{"_internalId":49835,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"number-sections":{"_internalId":49836,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":49837,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"pagenumbering":{"_internalId":49838,"type":"ref","$ref":"quarto-resource-document-numbering-pagenumbering","description":"quarto-resource-document-numbering-pagenumbering"},"top-level-division":{"_internalId":49839,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":49840,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"pdf-engine":{"_internalId":49841,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":49842,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":49843,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"quarto-required":{"_internalId":49844,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"pdfa":{"_internalId":49845,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfa","description":"quarto-resource-document-pdfa-pdfa"},"pdfaiccprofile":{"_internalId":49846,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfaiccprofile","description":"quarto-resource-document-pdfa-pdfaiccprofile"},"pdfaintent":{"_internalId":49847,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfaintent","description":"quarto-resource-document-pdfa-pdfaintent"},"bibliography":{"_internalId":49848,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":49849,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":49850,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":49851,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":49852,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":49852,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":49853,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":49854,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":49855,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":49856,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":49857,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":49858,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":49859,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":49860,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":49861,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":49862,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":49863,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":49864,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":49865,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":49866,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":49867,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":49868,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":49869,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":49870,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":49871,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":49872,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":49873,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":49874,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":49875,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":49875,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":49876,"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,grid,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":49878,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?csljson([-+].+)?$":{"_internalId":52479,"type":"anyOf","anyOf":[{"_internalId":52477,"type":"object","description":"be an object","properties":{"eval":{"_internalId":52381,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":52382,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":52383,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":52384,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":52385,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":52386,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":52387,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":52388,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":52389,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":52390,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":52391,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":52392,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":52393,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":52394,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":52395,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":52396,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":52397,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":52398,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":52399,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":52400,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":52401,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":52402,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":52403,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":52404,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":52405,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":52406,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":52407,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":52408,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":52409,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":52410,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":52411,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":52412,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":52413,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":52414,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":52415,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":52415,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":52416,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":52417,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":52418,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":52419,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":52420,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":52421,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":52422,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":52423,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":52424,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":52425,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":52426,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":52427,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":52428,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":52429,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":52430,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":52431,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":52432,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":52433,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":52434,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":52435,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":52436,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":52437,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":52438,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":52439,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":52440,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":52441,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":52442,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":52443,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":52444,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":52445,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":52446,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":52447,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":52448,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":52449,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":52450,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":52451,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":52452,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":52452,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":52453,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":52454,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":52455,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":52456,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":52457,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":52458,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":52459,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":52460,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":52461,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":52462,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":52463,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":52464,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":52465,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":52466,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":52467,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":52468,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":52469,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":52470,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":52471,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":52472,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":52473,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":52474,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":52475,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":52475,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":52476,"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,grid,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":52478,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?djot([-+].+)?$":{"_internalId":55079,"type":"anyOf","anyOf":[{"_internalId":55077,"type":"object","description":"be an object","properties":{"eval":{"_internalId":54981,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":54982,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":54983,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":54984,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":54985,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":54986,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":54987,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":54988,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":54989,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":54990,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":54991,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":54992,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":54993,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":54994,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":54995,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":54996,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":54997,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":54998,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":54999,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":55000,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":55001,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":55002,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":55003,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":55004,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":55005,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":55006,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":55007,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":55008,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":55009,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":55010,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":55011,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":55012,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":55013,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":55014,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":55015,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":55015,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":55016,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":55017,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":55018,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":55019,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":55020,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":55021,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":55022,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":55023,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":55024,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":55025,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":55026,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":55027,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":55028,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":55029,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":55030,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":55031,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":55032,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":55033,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":55034,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":55035,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":55036,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":55037,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":55038,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":55039,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":55040,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":55041,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":55042,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":55043,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":55044,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":55045,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":55046,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":55047,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":55048,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":55049,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":55050,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":55051,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":55052,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":55052,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":55053,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":55054,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":55055,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":55056,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":55057,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":55058,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":55059,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":55060,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":55061,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":55062,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":55063,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":55064,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":55065,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":55066,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":55067,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":55068,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":55069,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":55070,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":55071,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":55072,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":55073,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":55074,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":55075,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":55075,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":55076,"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,grid,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":55078,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?docbook([-+].+)?$":{"_internalId":57675,"type":"anyOf","anyOf":[{"_internalId":57673,"type":"object","description":"be an object","properties":{"eval":{"_internalId":57581,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":57582,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":57583,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":57584,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":57585,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":57586,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":57587,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":57588,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":57589,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":57590,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":57591,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":57592,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":57593,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":57594,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":57595,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":57596,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":57597,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":57598,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":57599,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":57600,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":57601,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":57602,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":57603,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":57604,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":57605,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":57606,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":57607,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":57608,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":57609,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":57610,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":57611,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":57612,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":57613,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":57614,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":57615,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":57615,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":57616,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":57617,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":57618,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":57619,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":57620,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":57621,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":57622,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":57623,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":57624,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":57625,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":57626,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":57627,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":57628,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":57629,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":57630,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":57631,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":57632,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":57633,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":57634,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":57635,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":57636,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":57637,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":57638,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":57639,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":57640,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":57641,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":57642,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":57643,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":57644,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":57645,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":57646,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":57647,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":57648,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"quarto-required":{"_internalId":57649,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":57650,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":57651,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":57652,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":57653,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":57654,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":57654,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":57655,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":57656,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":57657,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":57658,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":57659,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":57660,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":57661,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":57662,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":57663,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":57664,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":57665,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":57666,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":57667,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":57668,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":57669,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":57670,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":57671,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":57672,"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,grid,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":57674,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?docbook4([-+].+)?$":{"_internalId":60271,"type":"anyOf","anyOf":[{"_internalId":60269,"type":"object","description":"be an object","properties":{"eval":{"_internalId":60177,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":60178,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":60179,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":60180,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":60181,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":60182,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":60183,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":60184,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":60185,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":60186,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":60187,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":60188,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":60189,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":60190,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":60191,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":60192,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":60193,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":60194,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":60195,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":60196,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":60197,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":60198,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":60199,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":60200,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":60201,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":60202,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":60203,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":60204,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":60205,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":60206,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":60207,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":60208,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":60209,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":60210,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":60211,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":60211,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":60212,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":60213,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":60214,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":60215,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":60216,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":60217,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":60218,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":60219,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":60220,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":60221,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":60222,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":60223,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":60224,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":60225,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":60226,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":60227,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":60228,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":60229,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":60230,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":60231,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":60232,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":60233,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":60234,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":60235,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":60236,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":60237,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":60238,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":60239,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":60240,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":60241,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":60242,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":60243,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":60244,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"quarto-required":{"_internalId":60245,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":60246,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":60247,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":60248,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":60249,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":60250,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":60250,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":60251,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":60252,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":60253,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":60254,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":60255,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":60256,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":60257,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":60258,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":60259,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":60260,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":60261,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":60262,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":60263,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":60264,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":60265,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":60266,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":60267,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":60268,"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,grid,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":60270,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?docbook5([-+].+)?$":{"_internalId":62867,"type":"anyOf","anyOf":[{"_internalId":62865,"type":"object","description":"be an object","properties":{"eval":{"_internalId":62773,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":62774,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":62775,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":62776,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":62777,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":62778,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":62779,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":62780,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":62781,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":62782,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":62783,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":62784,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":62785,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":62786,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":62787,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":62788,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":62789,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":62790,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":62791,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":62792,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":62793,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":62794,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":62795,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":62796,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":62797,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":62798,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":62799,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":62800,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":62801,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":62802,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":62803,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":62804,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":62805,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":62806,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":62807,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":62807,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":62808,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":62809,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":62810,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":62811,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":62812,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":62813,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":62814,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":62815,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":62816,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":62817,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":62818,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":62819,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":62820,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":62821,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":62822,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":62823,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":62824,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":62825,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":62826,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":62827,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":62828,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":62829,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":62830,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":62831,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":62832,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":62833,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":62834,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":62835,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":62836,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":62837,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":62838,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":62839,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":62840,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"quarto-required":{"_internalId":62841,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":62842,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":62843,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":62844,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":62845,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":62846,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":62846,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":62847,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":62848,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":62849,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":62850,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":62851,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":62852,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":62853,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":62854,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":62855,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":62856,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":62857,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":62858,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":62859,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":62860,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":62861,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":62862,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":62863,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":62864,"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,grid,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":62866,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?docx([-+].+)?$":{"_internalId":65475,"type":"anyOf","anyOf":[{"_internalId":65473,"type":"object","description":"be an object","properties":{"eval":{"_internalId":65369,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":65370,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"fig-align":{"_internalId":65371,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"output":{"_internalId":65372,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":65373,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":65374,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":65375,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":65376,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":65377,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":65378,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":65379,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":65380,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":65381,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":65382,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"order":{"_internalId":65383,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":65384,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":65385,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":65386,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":65387,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":65388,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":65389,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"crossref":{"_internalId":65390,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":65391,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":65392,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":65393,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":65394,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":65395,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":65396,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":65397,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":65398,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":65399,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":65400,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":65401,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":65402,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":65403,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":65404,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":65405,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":65406,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":65407,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":65408,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":65409,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":65410,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":65411,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":65411,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":65412,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":65413,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":65414,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":65415,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":65416,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":65417,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":65418,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":65419,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":65420,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":65421,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":65422,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":65423,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":65424,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":65425,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"track-changes":{"_internalId":65426,"type":"ref","$ref":"quarto-resource-document-hidden-track-changes","description":"quarto-resource-document-hidden-track-changes"},"output-divs":{"_internalId":65427,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":65428,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":65429,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":65430,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":65431,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":65432,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":65433,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"page-width":{"_internalId":65434,"type":"ref","$ref":"quarto-resource-document-layout-page-width","description":"quarto-resource-document-layout-page-width"},"grid":{"_internalId":65435,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"keywords":{"_internalId":65436,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":65437,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"description":{"_internalId":65438,"type":"ref","$ref":"quarto-resource-document-metadata-description","description":"quarto-resource-document-metadata-description"},"category":{"_internalId":65439,"type":"ref","$ref":"quarto-resource-document-metadata-category","description":"quarto-resource-document-metadata-category"},"number-sections":{"_internalId":65440,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":65441,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"shift-heading-level-by":{"_internalId":65442,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"reference-doc":{"_internalId":65443,"type":"ref","$ref":"quarto-resource-document-options-reference-doc","description":"quarto-resource-document-options-reference-doc"},"brand":{"_internalId":65444,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":65445,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":65446,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":65447,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":65448,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":65449,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"link-citations":{"_internalId":65450,"type":"ref","$ref":"quarto-resource-document-references-link-citations","description":"quarto-resource-document-references-link-citations"},"link-bibliography":{"_internalId":65451,"type":"ref","$ref":"quarto-resource-document-references-link-bibliography","description":"quarto-resource-document-references-link-bibliography"},"notes-after-punctuation":{"_internalId":65452,"type":"ref","$ref":"quarto-resource-document-references-notes-after-punctuation","description":"quarto-resource-document-references-notes-after-punctuation"},"from":{"_internalId":65453,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":65453,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":65454,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":65455,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"filters":{"_internalId":65456,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":65457,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":65458,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":65459,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":65460,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":65461,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":65462,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":65463,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":65464,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":65465,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":65466,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":65467,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":65468,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":65469,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"toc":{"_internalId":65470,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":65470,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":65471,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":65472,"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,grid,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":65474,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?dokuwiki([-+].+)?$":{"_internalId":68075,"type":"anyOf","anyOf":[{"_internalId":68073,"type":"object","description":"be an object","properties":{"eval":{"_internalId":67977,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":67978,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":67979,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":67980,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":67981,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":67982,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":67983,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":67984,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":67985,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":67986,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":67987,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":67988,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":67989,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":67990,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":67991,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":67992,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":67993,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":67994,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":67995,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":67996,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":67997,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":67998,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":67999,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":68000,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":68001,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":68002,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":68003,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":68004,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":68005,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":68006,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":68007,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":68008,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":68009,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":68010,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":68011,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":68011,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":68012,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":68013,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":68014,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":68015,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":68016,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":68017,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":68018,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":68019,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":68020,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":68021,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":68022,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":68023,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":68024,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":68025,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":68026,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":68027,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":68028,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":68029,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":68030,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":68031,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":68032,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":68033,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":68034,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":68035,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":68036,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":68037,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":68038,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":68039,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":68040,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":68041,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":68042,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":68043,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":68044,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":68045,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":68046,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":68047,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":68048,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":68048,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":68049,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":68050,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":68051,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":68052,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":68053,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":68054,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":68055,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":68056,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":68057,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":68058,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":68059,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":68060,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":68061,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":68062,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":68063,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":68064,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":68065,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":68066,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":68067,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":68068,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":68069,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":68070,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":68071,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":68071,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":68072,"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,grid,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":68074,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?dzslides([-+].+)?$":{"_internalId":70725,"type":"anyOf","anyOf":[{"_internalId":70723,"type":"object","description":"be an object","properties":{"eval":{"_internalId":70577,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":70578,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":70579,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":70580,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":70581,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":70582,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":70583,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":70584,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":70585,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":70586,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":70587,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":70588,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":70589,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":70590,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":70591,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":70592,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":70593,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":70594,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":70595,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":70596,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":70597,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"order":{"_internalId":70598,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":70599,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":70600,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":70601,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":70602,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":70603,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":70604,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":70605,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":70606,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"monobackgroundcolor":{"_internalId":70607,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"comments":{"_internalId":70608,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":70609,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":70610,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":70611,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":70612,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":70613,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":70614,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":70615,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":70616,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":70617,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":70618,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":70619,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":70620,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":70621,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":70622,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":70623,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":70624,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":70625,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":70626,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":70627,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":70628,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":70629,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":70630,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":70631,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":70632,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":70633,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":70634,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":70634,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":70635,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":70636,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":70637,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":70638,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":70639,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":70640,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":70641,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":70642,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":70643,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":70644,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":70645,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":70646,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":70647,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":70648,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":70649,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":70650,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":70651,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":70652,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":70653,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":70654,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":70655,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":70656,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":70657,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":70658,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":70659,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":70660,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":70661,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":70662,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":70663,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"grid":{"_internalId":70664,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"max-width":{"_internalId":70665,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":70666,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":70667,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":70668,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":70669,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"mermaid":{"_internalId":70670,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":70671,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":70672,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":70673,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":70674,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":70675,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":70676,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":70677,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":70678,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":70679,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":70680,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":70681,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":70682,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"document-css":{"_internalId":70683,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":70684,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":70685,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":70686,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":70687,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":70688,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":70689,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":70690,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":70691,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":70692,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":70693,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":70694,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":70694,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":70695,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":70696,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":70697,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":70698,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":70699,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":70700,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":70701,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":70702,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":70703,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":70704,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":70705,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":70706,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":70707,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":70708,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":70709,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":70710,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":70711,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":70712,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":70713,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":70714,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"incremental":{"_internalId":70715,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":70716,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":70717,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":70718,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":70719,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":70720,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":70720,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":70721,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"axe":{"_internalId":70722,"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,grid,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":70724,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?epub([-+].+)?$":{"_internalId":73365,"type":"anyOf","anyOf":[{"_internalId":73363,"type":"object","description":"be an object","properties":{"eval":{"_internalId":73227,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":73228,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":73229,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":73230,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":73231,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":73232,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":73233,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"tbl-colwidths":{"_internalId":73234,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":73235,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":73236,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":73237,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":73238,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":73239,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":73240,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":73241,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":73242,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":73243,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":73244,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":73245,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"order":{"_internalId":73246,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":73247,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":73248,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-annotations":{"_internalId":73249,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":73250,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":73251,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":73252,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":73253,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"crossref":{"_internalId":73254,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":73255,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":73256,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"identifier":{"_internalId":73257,"type":"ref","$ref":"quarto-resource-document-epub-identifier","description":"quarto-resource-document-epub-identifier"},"creator":{"_internalId":73258,"type":"ref","$ref":"quarto-resource-document-epub-creator","description":"quarto-resource-document-epub-creator"},"contributor":{"_internalId":73259,"type":"ref","$ref":"quarto-resource-document-epub-contributor","description":"quarto-resource-document-epub-contributor"},"subject":{"_internalId":73260,"type":"ref","$ref":"quarto-resource-document-epub-subject","description":"quarto-resource-document-epub-subject"},"type":{"_internalId":73261,"type":"ref","$ref":"quarto-resource-document-epub-type","description":"quarto-resource-document-epub-type"},"format":{"_internalId":73262,"type":"ref","$ref":"quarto-resource-document-epub-format","description":"quarto-resource-document-epub-format"},"relation":{"_internalId":73263,"type":"ref","$ref":"quarto-resource-document-epub-relation","description":"quarto-resource-document-epub-relation"},"coverage":{"_internalId":73264,"type":"ref","$ref":"quarto-resource-document-epub-coverage","description":"quarto-resource-document-epub-coverage"},"rights":{"_internalId":73265,"type":"ref","$ref":"quarto-resource-document-epub-rights","description":"quarto-resource-document-epub-rights"},"belongs-to-collection":{"_internalId":73266,"type":"ref","$ref":"quarto-resource-document-epub-belongs-to-collection","description":"quarto-resource-document-epub-belongs-to-collection"},"group-position":{"_internalId":73267,"type":"ref","$ref":"quarto-resource-document-epub-group-position","description":"quarto-resource-document-epub-group-position"},"page-progression-direction":{"_internalId":73268,"type":"ref","$ref":"quarto-resource-document-epub-page-progression-direction","description":"quarto-resource-document-epub-page-progression-direction"},"ibooks":{"_internalId":73269,"type":"ref","$ref":"quarto-resource-document-epub-ibooks","description":"quarto-resource-document-epub-ibooks"},"epub-metadata":{"_internalId":73270,"type":"ref","$ref":"quarto-resource-document-epub-epub-metadata","description":"quarto-resource-document-epub-epub-metadata"},"epub-subdirectory":{"_internalId":73271,"type":"ref","$ref":"quarto-resource-document-epub-epub-subdirectory","description":"quarto-resource-document-epub-epub-subdirectory"},"epub-fonts":{"_internalId":73272,"type":"ref","$ref":"quarto-resource-document-epub-epub-fonts","description":"quarto-resource-document-epub-epub-fonts"},"epub-chapter-level":{"_internalId":73273,"type":"ref","$ref":"quarto-resource-document-epub-epub-chapter-level","description":"quarto-resource-document-epub-epub-chapter-level"},"epub-cover-image":{"_internalId":73274,"type":"ref","$ref":"quarto-resource-document-epub-epub-cover-image","description":"quarto-resource-document-epub-epub-cover-image"},"epub-title-page":{"_internalId":73275,"type":"ref","$ref":"quarto-resource-document-epub-epub-title-page","description":"quarto-resource-document-epub-epub-title-page"},"engine":{"_internalId":73276,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":73277,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":73278,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":73279,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":73280,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":73281,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":73282,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":73283,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":73284,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":73285,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":73286,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":73287,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":73288,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":73289,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":73290,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":73291,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":73292,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":73293,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"split-level":{"_internalId":73294,"type":"ref","$ref":"quarto-resource-document-formatting-split-level","description":"quarto-resource-document-formatting-split-level"},"funding":{"_internalId":73295,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":73296,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":73296,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":73297,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":73298,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":73299,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":73300,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":73301,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":73302,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":73303,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":73304,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":73305,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":73306,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":73307,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":73308,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":73309,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":73310,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":73311,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":73312,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":73313,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":73314,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":73315,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":73316,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":73317,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":73318,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":73319,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":73320,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":73321,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":73322,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":73323,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":73324,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":73325,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"date-meta":{"_internalId":73326,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":73327,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":73328,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":73329,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":73330,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":73331,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"css":{"_internalId":73332,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"html-math-method":{"_internalId":73333,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"html-q-tags":{"_internalId":73334,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":73335,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":73336,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":73337,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":73338,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":73339,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":73340,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":73340,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":73341,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":73342,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":73343,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":73344,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":73345,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":73346,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":73347,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":73348,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":73349,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":73350,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":73351,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":73352,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":73353,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":73354,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":73355,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":73356,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":73357,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":73358,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":73359,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":73360,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":73360,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":73361,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":73362,"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,grid,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":73364,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?epub2([-+].+)?$":{"_internalId":76005,"type":"anyOf","anyOf":[{"_internalId":76003,"type":"object","description":"be an object","properties":{"eval":{"_internalId":75867,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":75868,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":75869,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":75870,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":75871,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":75872,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":75873,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"tbl-colwidths":{"_internalId":75874,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":75875,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":75876,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":75877,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":75878,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":75879,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":75880,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":75881,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":75882,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":75883,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":75884,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":75885,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"order":{"_internalId":75886,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":75887,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":75888,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-annotations":{"_internalId":75889,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":75890,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":75891,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":75892,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":75893,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"crossref":{"_internalId":75894,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":75895,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":75896,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"identifier":{"_internalId":75897,"type":"ref","$ref":"quarto-resource-document-epub-identifier","description":"quarto-resource-document-epub-identifier"},"creator":{"_internalId":75898,"type":"ref","$ref":"quarto-resource-document-epub-creator","description":"quarto-resource-document-epub-creator"},"contributor":{"_internalId":75899,"type":"ref","$ref":"quarto-resource-document-epub-contributor","description":"quarto-resource-document-epub-contributor"},"subject":{"_internalId":75900,"type":"ref","$ref":"quarto-resource-document-epub-subject","description":"quarto-resource-document-epub-subject"},"type":{"_internalId":75901,"type":"ref","$ref":"quarto-resource-document-epub-type","description":"quarto-resource-document-epub-type"},"format":{"_internalId":75902,"type":"ref","$ref":"quarto-resource-document-epub-format","description":"quarto-resource-document-epub-format"},"relation":{"_internalId":75903,"type":"ref","$ref":"quarto-resource-document-epub-relation","description":"quarto-resource-document-epub-relation"},"coverage":{"_internalId":75904,"type":"ref","$ref":"quarto-resource-document-epub-coverage","description":"quarto-resource-document-epub-coverage"},"rights":{"_internalId":75905,"type":"ref","$ref":"quarto-resource-document-epub-rights","description":"quarto-resource-document-epub-rights"},"belongs-to-collection":{"_internalId":75906,"type":"ref","$ref":"quarto-resource-document-epub-belongs-to-collection","description":"quarto-resource-document-epub-belongs-to-collection"},"group-position":{"_internalId":75907,"type":"ref","$ref":"quarto-resource-document-epub-group-position","description":"quarto-resource-document-epub-group-position"},"page-progression-direction":{"_internalId":75908,"type":"ref","$ref":"quarto-resource-document-epub-page-progression-direction","description":"quarto-resource-document-epub-page-progression-direction"},"ibooks":{"_internalId":75909,"type":"ref","$ref":"quarto-resource-document-epub-ibooks","description":"quarto-resource-document-epub-ibooks"},"epub-metadata":{"_internalId":75910,"type":"ref","$ref":"quarto-resource-document-epub-epub-metadata","description":"quarto-resource-document-epub-epub-metadata"},"epub-subdirectory":{"_internalId":75911,"type":"ref","$ref":"quarto-resource-document-epub-epub-subdirectory","description":"quarto-resource-document-epub-epub-subdirectory"},"epub-fonts":{"_internalId":75912,"type":"ref","$ref":"quarto-resource-document-epub-epub-fonts","description":"quarto-resource-document-epub-epub-fonts"},"epub-chapter-level":{"_internalId":75913,"type":"ref","$ref":"quarto-resource-document-epub-epub-chapter-level","description":"quarto-resource-document-epub-epub-chapter-level"},"epub-cover-image":{"_internalId":75914,"type":"ref","$ref":"quarto-resource-document-epub-epub-cover-image","description":"quarto-resource-document-epub-epub-cover-image"},"epub-title-page":{"_internalId":75915,"type":"ref","$ref":"quarto-resource-document-epub-epub-title-page","description":"quarto-resource-document-epub-epub-title-page"},"engine":{"_internalId":75916,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":75917,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":75918,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":75919,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":75920,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":75921,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":75922,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":75923,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":75924,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":75925,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":75926,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":75927,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":75928,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":75929,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":75930,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":75931,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":75932,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":75933,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"split-level":{"_internalId":75934,"type":"ref","$ref":"quarto-resource-document-formatting-split-level","description":"quarto-resource-document-formatting-split-level"},"funding":{"_internalId":75935,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":75936,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":75936,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":75937,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":75938,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":75939,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":75940,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":75941,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":75942,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":75943,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":75944,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":75945,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":75946,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":75947,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":75948,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":75949,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":75950,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":75951,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":75952,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":75953,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":75954,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":75955,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":75956,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":75957,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":75958,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":75959,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":75960,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":75961,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":75962,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":75963,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":75964,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":75965,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"date-meta":{"_internalId":75966,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":75967,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":75968,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":75969,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":75970,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":75971,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"css":{"_internalId":75972,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"html-math-method":{"_internalId":75973,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"html-q-tags":{"_internalId":75974,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":75975,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":75976,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":75977,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":75978,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":75979,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":75980,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":75980,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":75981,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":75982,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":75983,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":75984,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":75985,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":75986,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":75987,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":75988,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":75989,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":75990,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":75991,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":75992,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":75993,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":75994,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":75995,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":75996,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":75997,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":75998,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":75999,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":76000,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":76000,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":76001,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":76002,"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,grid,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":76004,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?epub3([-+].+)?$":{"_internalId":78645,"type":"anyOf","anyOf":[{"_internalId":78643,"type":"object","description":"be an object","properties":{"eval":{"_internalId":78507,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":78508,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":78509,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":78510,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":78511,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":78512,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":78513,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"tbl-colwidths":{"_internalId":78514,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":78515,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":78516,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":78517,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":78518,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":78519,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":78520,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":78521,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":78522,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":78523,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":78524,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":78525,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"order":{"_internalId":78526,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":78527,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":78528,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-annotations":{"_internalId":78529,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":78530,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":78531,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":78532,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":78533,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"crossref":{"_internalId":78534,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":78535,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":78536,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"identifier":{"_internalId":78537,"type":"ref","$ref":"quarto-resource-document-epub-identifier","description":"quarto-resource-document-epub-identifier"},"creator":{"_internalId":78538,"type":"ref","$ref":"quarto-resource-document-epub-creator","description":"quarto-resource-document-epub-creator"},"contributor":{"_internalId":78539,"type":"ref","$ref":"quarto-resource-document-epub-contributor","description":"quarto-resource-document-epub-contributor"},"subject":{"_internalId":78540,"type":"ref","$ref":"quarto-resource-document-epub-subject","description":"quarto-resource-document-epub-subject"},"type":{"_internalId":78541,"type":"ref","$ref":"quarto-resource-document-epub-type","description":"quarto-resource-document-epub-type"},"format":{"_internalId":78542,"type":"ref","$ref":"quarto-resource-document-epub-format","description":"quarto-resource-document-epub-format"},"relation":{"_internalId":78543,"type":"ref","$ref":"quarto-resource-document-epub-relation","description":"quarto-resource-document-epub-relation"},"coverage":{"_internalId":78544,"type":"ref","$ref":"quarto-resource-document-epub-coverage","description":"quarto-resource-document-epub-coverage"},"rights":{"_internalId":78545,"type":"ref","$ref":"quarto-resource-document-epub-rights","description":"quarto-resource-document-epub-rights"},"belongs-to-collection":{"_internalId":78546,"type":"ref","$ref":"quarto-resource-document-epub-belongs-to-collection","description":"quarto-resource-document-epub-belongs-to-collection"},"group-position":{"_internalId":78547,"type":"ref","$ref":"quarto-resource-document-epub-group-position","description":"quarto-resource-document-epub-group-position"},"page-progression-direction":{"_internalId":78548,"type":"ref","$ref":"quarto-resource-document-epub-page-progression-direction","description":"quarto-resource-document-epub-page-progression-direction"},"ibooks":{"_internalId":78549,"type":"ref","$ref":"quarto-resource-document-epub-ibooks","description":"quarto-resource-document-epub-ibooks"},"epub-metadata":{"_internalId":78550,"type":"ref","$ref":"quarto-resource-document-epub-epub-metadata","description":"quarto-resource-document-epub-epub-metadata"},"epub-subdirectory":{"_internalId":78551,"type":"ref","$ref":"quarto-resource-document-epub-epub-subdirectory","description":"quarto-resource-document-epub-epub-subdirectory"},"epub-fonts":{"_internalId":78552,"type":"ref","$ref":"quarto-resource-document-epub-epub-fonts","description":"quarto-resource-document-epub-epub-fonts"},"epub-chapter-level":{"_internalId":78553,"type":"ref","$ref":"quarto-resource-document-epub-epub-chapter-level","description":"quarto-resource-document-epub-epub-chapter-level"},"epub-cover-image":{"_internalId":78554,"type":"ref","$ref":"quarto-resource-document-epub-epub-cover-image","description":"quarto-resource-document-epub-epub-cover-image"},"epub-title-page":{"_internalId":78555,"type":"ref","$ref":"quarto-resource-document-epub-epub-title-page","description":"quarto-resource-document-epub-epub-title-page"},"engine":{"_internalId":78556,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":78557,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":78558,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":78559,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":78560,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":78561,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":78562,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":78563,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":78564,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":78565,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":78566,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":78567,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":78568,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":78569,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":78570,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":78571,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":78572,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":78573,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"split-level":{"_internalId":78574,"type":"ref","$ref":"quarto-resource-document-formatting-split-level","description":"quarto-resource-document-formatting-split-level"},"funding":{"_internalId":78575,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":78576,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":78576,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":78577,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":78578,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":78579,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":78580,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":78581,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":78582,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":78583,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":78584,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":78585,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":78586,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":78587,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":78588,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":78589,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":78590,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":78591,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":78592,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":78593,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":78594,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":78595,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":78596,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":78597,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":78598,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":78599,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":78600,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":78601,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":78602,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":78603,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":78604,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":78605,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"date-meta":{"_internalId":78606,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":78607,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":78608,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":78609,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":78610,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":78611,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"css":{"_internalId":78612,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"html-math-method":{"_internalId":78613,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"html-q-tags":{"_internalId":78614,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":78615,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":78616,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":78617,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":78618,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":78619,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":78620,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":78620,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":78621,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":78622,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":78623,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":78624,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":78625,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":78626,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":78627,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":78628,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":78629,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":78630,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":78631,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":78632,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":78633,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":78634,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":78635,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":78636,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":78637,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":78638,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":78639,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":78640,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":78640,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":78641,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":78642,"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,grid,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":78644,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?fb2([-+].+)?$":{"_internalId":81245,"type":"anyOf","anyOf":[{"_internalId":81243,"type":"object","description":"be an object","properties":{"eval":{"_internalId":81147,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":81148,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":81149,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":81150,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":81151,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":81152,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":81153,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":81154,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":81155,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":81156,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":81157,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":81158,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":81159,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":81160,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":81161,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":81162,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":81163,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":81164,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":81165,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":81166,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":81167,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":81168,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":81169,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":81170,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":81171,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":81172,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":81173,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":81174,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":81175,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":81176,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":81177,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":81178,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":81179,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":81180,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":81181,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":81181,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":81182,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":81183,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":81184,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":81185,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":81186,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":81187,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":81188,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":81189,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":81190,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":81191,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":81192,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":81193,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":81194,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":81195,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":81196,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":81197,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":81198,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":81199,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":81200,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":81201,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":81202,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":81203,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":81204,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":81205,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":81206,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":81207,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":81208,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":81209,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":81210,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":81211,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":81212,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":81213,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":81214,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":81215,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":81216,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":81217,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":81218,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":81218,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":81219,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":81220,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":81221,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":81222,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":81223,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":81224,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":81225,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":81226,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":81227,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":81228,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":81229,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":81230,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":81231,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":81232,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":81233,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":81234,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":81235,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":81236,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":81237,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":81238,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":81239,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":81240,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":81241,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":81241,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":81242,"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,grid,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":81244,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?gfm([-+].+)?$":{"_internalId":83854,"type":"anyOf","anyOf":[{"_internalId":83852,"type":"object","description":"be an object","properties":{"eval":{"_internalId":83747,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":83748,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":83749,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":83750,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":83751,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":83752,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":83753,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":83754,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":83755,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":83756,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":83757,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":83758,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":83759,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":83760,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":83761,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":83762,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":83763,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":83764,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":83765,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":83766,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":83767,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":83768,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":83769,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":83770,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":83771,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":83772,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":83773,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":83774,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":83775,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":83776,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":83777,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":83778,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":83779,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":83780,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":83781,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":83782,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":83782,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":83783,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":83784,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":83785,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":83786,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":83787,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":83788,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":83789,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":83790,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":83791,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":83792,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":83793,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":83794,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":83795,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":83796,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":83797,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":83798,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":83799,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":83800,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":83801,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":83802,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":83803,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":83804,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":83805,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":83806,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":83807,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":83808,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":83809,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":83810,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":83811,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":83812,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":83813,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":83814,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"html-math-method":{"_internalId":83815,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"identifier-prefix":{"_internalId":83816,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":83817,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":83818,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":83819,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":83820,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"bibliography":{"_internalId":83821,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":83822,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":83823,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":83824,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":83825,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":83825,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":83826,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":83827,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":83828,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":83829,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":83830,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":83831,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":83832,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":83833,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":83834,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":83835,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":83836,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":83837,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":83838,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":83839,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":83840,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":83841,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":83842,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":83843,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":83844,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":83845,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":83846,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":83847,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":83848,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":83849,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":83850,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":83850,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":83851,"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,grid,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":83853,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?haddock([-+].+)?$":{"_internalId":86455,"type":"anyOf","anyOf":[{"_internalId":86453,"type":"object","description":"be an object","properties":{"eval":{"_internalId":86356,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":86357,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":86358,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":86359,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":86360,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":86361,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":86362,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":86363,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":86364,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":86365,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":86366,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":86367,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":86368,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":86369,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":86370,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":86371,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":86372,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":86373,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":86374,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":86375,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":86376,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":86377,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":86378,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":86379,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":86380,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":86381,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":86382,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":86383,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":86384,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":86385,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":86386,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":86387,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":86388,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":86389,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":86390,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":86390,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":86391,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":86392,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":86393,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":86394,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":86395,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":86396,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":86397,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":86398,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":86399,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":86400,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":86401,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":86402,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":86403,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":86404,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":86405,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":86406,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":86407,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":86408,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":86409,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":86410,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":86411,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":86412,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":86413,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":86414,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":86415,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":86416,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":86417,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":86418,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":86419,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":86420,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":86421,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":86422,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"quarto-required":{"_internalId":86423,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":86424,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":86425,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":86426,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":86427,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":86428,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":86428,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":86429,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":86430,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":86431,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":86432,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":86433,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":86434,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":86435,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":86436,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":86437,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":86438,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":86439,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":86440,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":86441,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":86442,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":86443,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":86444,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":86445,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":86446,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":86447,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":86448,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":86449,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":86450,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":86451,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":86451,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":86452,"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,grid,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":86454,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?html([-+].+)?$":{"_internalId":89162,"type":"anyOf","anyOf":[{"_internalId":89160,"type":"object","description":"be an object","properties":{"eval":{"_internalId":88957,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":88958,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":88959,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":88960,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":88961,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":88962,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":88963,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":88964,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":88965,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":88966,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":88967,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":88968,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":88969,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":88970,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":88971,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"about":{"_internalId":88972,"type":"ref","$ref":"quarto-resource-document-about-about","description":"quarto-resource-document-about-about"},"title":{"_internalId":88973,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":88974,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":88975,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":88976,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"date-modified":{"_internalId":88977,"type":"ref","$ref":"quarto-resource-document-attributes-date-modified","description":"quarto-resource-document-attributes-date-modified"},"author":{"_internalId":88978,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":88979,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":88980,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"doi":{"_internalId":88981,"type":"ref","$ref":"quarto-resource-document-attributes-doi","description":"quarto-resource-document-attributes-doi"},"order":{"_internalId":88982,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":88983,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":88984,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":88985,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":88986,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-tools":{"_internalId":88987,"type":"ref","$ref":"quarto-resource-document-code-code-tools","description":"quarto-resource-document-code-code-tools"},"code-block-border-left":{"_internalId":88988,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":88989,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"highlight-style":{"_internalId":88990,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":88991,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":88992,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":88993,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"fontcolor":{"_internalId":88994,"type":"ref","$ref":"quarto-resource-document-colors-fontcolor","description":"quarto-resource-document-colors-fontcolor"},"linkcolor":{"_internalId":88995,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"monobackgroundcolor":{"_internalId":88996,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"backgroundcolor":{"_internalId":88997,"type":"ref","$ref":"quarto-resource-document-colors-backgroundcolor","description":"quarto-resource-document-colors-backgroundcolor"},"comments":{"_internalId":88998,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":88999,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":89000,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":89001,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":89002,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":89003,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":89004,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":89005,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":89006,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":89007,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":89008,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":89009,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":89010,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":89011,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":89012,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":89013,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":89014,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":89015,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":89016,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":89017,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":89018,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":89019,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":89020,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"mainfont":{"_internalId":89021,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":89022,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":89023,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"linestretch":{"_internalId":89024,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"footnotes-hover":{"_internalId":89025,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":89026,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":89027,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":89028,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":89028,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":89029,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":89030,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":89031,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":89032,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":89033,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":89034,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":89035,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":89036,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":89037,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":89038,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":89039,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":89040,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":89041,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":89042,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"keep-source":{"_internalId":89043,"type":"ref","$ref":"quarto-resource-document-hidden-keep-source","description":"quarto-resource-document-hidden-keep-source"},"keep-hidden":{"_internalId":89044,"type":"ref","$ref":"quarto-resource-document-hidden-keep-hidden","description":"quarto-resource-document-hidden-keep-hidden"},"output-divs":{"_internalId":89045,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":89046,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":89047,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":89048,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":89049,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":89050,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":89051,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":89052,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":89053,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":89054,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":89055,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":89056,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":89057,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":89058,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":89059,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"page-layout":{"_internalId":89060,"type":"ref","$ref":"quarto-resource-document-layout-page-layout","description":"quarto-resource-document-layout-page-layout"},"grid":{"_internalId":89061,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"appendix-style":{"_internalId":89062,"type":"ref","$ref":"quarto-resource-document-layout-appendix-style","description":"quarto-resource-document-layout-appendix-style"},"appendix-cite-as":{"_internalId":89063,"type":"ref","$ref":"quarto-resource-document-layout-appendix-cite-as","description":"quarto-resource-document-layout-appendix-cite-as"},"title-block-style":{"_internalId":89064,"type":"ref","$ref":"quarto-resource-document-layout-title-block-style","description":"quarto-resource-document-layout-title-block-style"},"title-block-banner":{"_internalId":89065,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner","description":"quarto-resource-document-layout-title-block-banner"},"title-block-banner-color":{"_internalId":89066,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner-color","description":"quarto-resource-document-layout-title-block-banner-color"},"title-block-categories":{"_internalId":89067,"type":"ref","$ref":"quarto-resource-document-layout-title-block-categories","description":"quarto-resource-document-layout-title-block-categories"},"max-width":{"_internalId":89068,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":89069,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":89070,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":89071,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":89072,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"lightbox":{"_internalId":89073,"type":"ref","$ref":"quarto-resource-document-lightbox-lightbox","description":"quarto-resource-document-lightbox-lightbox"},"link-external-icon":{"_internalId":89074,"type":"ref","$ref":"quarto-resource-document-links-link-external-icon","description":"quarto-resource-document-links-link-external-icon"},"link-external-newwindow":{"_internalId":89075,"type":"ref","$ref":"quarto-resource-document-links-link-external-newwindow","description":"quarto-resource-document-links-link-external-newwindow"},"link-external-filter":{"_internalId":89076,"type":"ref","$ref":"quarto-resource-document-links-link-external-filter","description":"quarto-resource-document-links-link-external-filter"},"format-links":{"_internalId":89077,"type":"ref","$ref":"quarto-resource-document-links-format-links","description":"quarto-resource-document-links-format-links"},"notebook-links":{"_internalId":89078,"type":"ref","$ref":"quarto-resource-document-links-notebook-links","description":"quarto-resource-document-links-notebook-links"},"other-links":{"_internalId":89079,"type":"ref","$ref":"quarto-resource-document-links-other-links","description":"quarto-resource-document-links-other-links"},"code-links":{"_internalId":89080,"type":"ref","$ref":"quarto-resource-document-links-code-links","description":"quarto-resource-document-links-code-links"},"notebook-view":{"_internalId":89081,"type":"ref","$ref":"quarto-resource-document-links-notebook-view","description":"quarto-resource-document-links-notebook-view"},"notebook-view-style":{"_internalId":89082,"type":"ref","$ref":"quarto-resource-document-links-notebook-view-style","description":"quarto-resource-document-links-notebook-view-style"},"notebook-preview-options":{"_internalId":89083,"type":"ref","$ref":"quarto-resource-document-links-notebook-preview-options","description":"quarto-resource-document-links-notebook-preview-options"},"canonical-url":{"_internalId":89084,"type":"ref","$ref":"quarto-resource-document-links-canonical-url","description":"quarto-resource-document-links-canonical-url"},"listing":{"_internalId":89085,"type":"ref","$ref":"quarto-resource-document-listing-listing","description":"quarto-resource-document-listing-listing"},"mermaid":{"_internalId":89086,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":89087,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"copyright":{"_internalId":89088,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"license":{"_internalId":89089,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"pagetitle":{"_internalId":89090,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":89091,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":89092,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":89093,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":89094,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":89095,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":89096,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":89097,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":89098,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":89099,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":89100,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":89101,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"body-classes":{"_internalId":89102,"type":"ref","$ref":"quarto-resource-document-options-body-classes","description":"quarto-resource-document-options-body-classes"},"minimal":{"_internalId":89103,"type":"ref","$ref":"quarto-resource-document-options-minimal","description":"quarto-resource-document-options-minimal"},"document-css":{"_internalId":89104,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":89105,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"anchor-sections":{"_internalId":89106,"type":"ref","$ref":"quarto-resource-document-options-anchor-sections","description":"quarto-resource-document-options-anchor-sections"},"tabsets":{"_internalId":89107,"type":"ref","$ref":"quarto-resource-document-options-tabsets","description":"quarto-resource-document-options-tabsets"},"smooth-scroll":{"_internalId":89108,"type":"ref","$ref":"quarto-resource-document-options-smooth-scroll","description":"quarto-resource-document-options-smooth-scroll"},"respect-user-color-scheme":{"_internalId":89109,"type":"ref","$ref":"quarto-resource-document-options-respect-user-color-scheme","description":"quarto-resource-document-options-respect-user-color-scheme"},"html-math-method":{"_internalId":89110,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"section-divs":{"_internalId":89111,"type":"ref","$ref":"quarto-resource-document-options-section-divs","description":"quarto-resource-document-options-section-divs"},"identifier-prefix":{"_internalId":89112,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":89113,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":89114,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":89115,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":89116,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":89117,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":89118,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citation-location":{"_internalId":89119,"type":"ref","$ref":"quarto-resource-document-references-citation-location","description":"quarto-resource-document-references-citation-location"},"citeproc":{"_internalId":89120,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":89121,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":89122,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":89122,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":89123,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":89124,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":89125,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":89126,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":89127,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":89128,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":89129,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":89130,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":89131,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":89132,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":89133,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":89134,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":89135,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":89136,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":89137,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":89138,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":89139,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":89140,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":89141,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":89142,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":89143,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":89144,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":89145,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":89146,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":89146,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":89147,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-location":{"_internalId":89148,"type":"ref","$ref":"quarto-resource-document-toc-toc-location","description":"quarto-resource-document-toc-toc-location"},"toc-title":{"_internalId":89149,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"toc-expand":{"_internalId":89150,"type":"ref","$ref":"quarto-resource-document-toc-toc-expand","description":"quarto-resource-document-toc-toc-expand"},"search":{"_internalId":89151,"type":"ref","$ref":"quarto-resource-document-website-search","description":"quarto-resource-document-website-search"},"repo-actions":{"_internalId":89152,"type":"ref","$ref":"quarto-resource-document-website-repo-actions","description":"quarto-resource-document-website-repo-actions"},"aliases":{"_internalId":89153,"type":"ref","$ref":"quarto-resource-document-website-aliases","description":"quarto-resource-document-website-aliases"},"image":{"_internalId":89154,"type":"ref","$ref":"quarto-resource-document-website-image","description":"quarto-resource-document-website-image"},"image-height":{"_internalId":89155,"type":"ref","$ref":"quarto-resource-document-website-image-height","description":"quarto-resource-document-website-image-height"},"image-width":{"_internalId":89156,"type":"ref","$ref":"quarto-resource-document-website-image-width","description":"quarto-resource-document-website-image-width"},"image-alt":{"_internalId":89157,"type":"ref","$ref":"quarto-resource-document-website-image-alt","description":"quarto-resource-document-website-image-alt"},"image-lazy-loading":{"_internalId":89158,"type":"ref","$ref":"quarto-resource-document-website-image-lazy-loading","description":"quarto-resource-document-website-image-lazy-loading"},"axe":{"_internalId":89159,"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":89161,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?html4([-+].+)?$":{"_internalId":91869,"type":"anyOf","anyOf":[{"_internalId":91867,"type":"object","description":"be an object","properties":{"eval":{"_internalId":91664,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":91665,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":91666,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":91667,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":91668,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":91669,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":91670,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":91671,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":91672,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":91673,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":91674,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":91675,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":91676,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":91677,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":91678,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"about":{"_internalId":91679,"type":"ref","$ref":"quarto-resource-document-about-about","description":"quarto-resource-document-about-about"},"title":{"_internalId":91680,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":91681,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":91682,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":91683,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"date-modified":{"_internalId":91684,"type":"ref","$ref":"quarto-resource-document-attributes-date-modified","description":"quarto-resource-document-attributes-date-modified"},"author":{"_internalId":91685,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":91686,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":91687,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"doi":{"_internalId":91688,"type":"ref","$ref":"quarto-resource-document-attributes-doi","description":"quarto-resource-document-attributes-doi"},"order":{"_internalId":91689,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":91690,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":91691,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":91692,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":91693,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-tools":{"_internalId":91694,"type":"ref","$ref":"quarto-resource-document-code-code-tools","description":"quarto-resource-document-code-code-tools"},"code-block-border-left":{"_internalId":91695,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":91696,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"highlight-style":{"_internalId":91697,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":91698,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":91699,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":91700,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"fontcolor":{"_internalId":91701,"type":"ref","$ref":"quarto-resource-document-colors-fontcolor","description":"quarto-resource-document-colors-fontcolor"},"linkcolor":{"_internalId":91702,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"monobackgroundcolor":{"_internalId":91703,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"backgroundcolor":{"_internalId":91704,"type":"ref","$ref":"quarto-resource-document-colors-backgroundcolor","description":"quarto-resource-document-colors-backgroundcolor"},"comments":{"_internalId":91705,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":91706,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":91707,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":91708,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":91709,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":91710,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":91711,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":91712,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":91713,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":91714,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":91715,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":91716,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":91717,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":91718,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":91719,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":91720,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":91721,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":91722,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":91723,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":91724,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":91725,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":91726,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":91727,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"mainfont":{"_internalId":91728,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":91729,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":91730,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"linestretch":{"_internalId":91731,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"footnotes-hover":{"_internalId":91732,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":91733,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":91734,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":91735,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":91735,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":91736,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":91737,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":91738,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":91739,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":91740,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":91741,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":91742,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":91743,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":91744,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":91745,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":91746,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":91747,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":91748,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":91749,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"keep-source":{"_internalId":91750,"type":"ref","$ref":"quarto-resource-document-hidden-keep-source","description":"quarto-resource-document-hidden-keep-source"},"keep-hidden":{"_internalId":91751,"type":"ref","$ref":"quarto-resource-document-hidden-keep-hidden","description":"quarto-resource-document-hidden-keep-hidden"},"output-divs":{"_internalId":91752,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":91753,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":91754,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":91755,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":91756,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":91757,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":91758,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":91759,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":91760,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":91761,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":91762,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":91763,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":91764,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":91765,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":91766,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"page-layout":{"_internalId":91767,"type":"ref","$ref":"quarto-resource-document-layout-page-layout","description":"quarto-resource-document-layout-page-layout"},"grid":{"_internalId":91768,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"appendix-style":{"_internalId":91769,"type":"ref","$ref":"quarto-resource-document-layout-appendix-style","description":"quarto-resource-document-layout-appendix-style"},"appendix-cite-as":{"_internalId":91770,"type":"ref","$ref":"quarto-resource-document-layout-appendix-cite-as","description":"quarto-resource-document-layout-appendix-cite-as"},"title-block-style":{"_internalId":91771,"type":"ref","$ref":"quarto-resource-document-layout-title-block-style","description":"quarto-resource-document-layout-title-block-style"},"title-block-banner":{"_internalId":91772,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner","description":"quarto-resource-document-layout-title-block-banner"},"title-block-banner-color":{"_internalId":91773,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner-color","description":"quarto-resource-document-layout-title-block-banner-color"},"title-block-categories":{"_internalId":91774,"type":"ref","$ref":"quarto-resource-document-layout-title-block-categories","description":"quarto-resource-document-layout-title-block-categories"},"max-width":{"_internalId":91775,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":91776,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":91777,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":91778,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":91779,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"lightbox":{"_internalId":91780,"type":"ref","$ref":"quarto-resource-document-lightbox-lightbox","description":"quarto-resource-document-lightbox-lightbox"},"link-external-icon":{"_internalId":91781,"type":"ref","$ref":"quarto-resource-document-links-link-external-icon","description":"quarto-resource-document-links-link-external-icon"},"link-external-newwindow":{"_internalId":91782,"type":"ref","$ref":"quarto-resource-document-links-link-external-newwindow","description":"quarto-resource-document-links-link-external-newwindow"},"link-external-filter":{"_internalId":91783,"type":"ref","$ref":"quarto-resource-document-links-link-external-filter","description":"quarto-resource-document-links-link-external-filter"},"format-links":{"_internalId":91784,"type":"ref","$ref":"quarto-resource-document-links-format-links","description":"quarto-resource-document-links-format-links"},"notebook-links":{"_internalId":91785,"type":"ref","$ref":"quarto-resource-document-links-notebook-links","description":"quarto-resource-document-links-notebook-links"},"other-links":{"_internalId":91786,"type":"ref","$ref":"quarto-resource-document-links-other-links","description":"quarto-resource-document-links-other-links"},"code-links":{"_internalId":91787,"type":"ref","$ref":"quarto-resource-document-links-code-links","description":"quarto-resource-document-links-code-links"},"notebook-view":{"_internalId":91788,"type":"ref","$ref":"quarto-resource-document-links-notebook-view","description":"quarto-resource-document-links-notebook-view"},"notebook-view-style":{"_internalId":91789,"type":"ref","$ref":"quarto-resource-document-links-notebook-view-style","description":"quarto-resource-document-links-notebook-view-style"},"notebook-preview-options":{"_internalId":91790,"type":"ref","$ref":"quarto-resource-document-links-notebook-preview-options","description":"quarto-resource-document-links-notebook-preview-options"},"canonical-url":{"_internalId":91791,"type":"ref","$ref":"quarto-resource-document-links-canonical-url","description":"quarto-resource-document-links-canonical-url"},"listing":{"_internalId":91792,"type":"ref","$ref":"quarto-resource-document-listing-listing","description":"quarto-resource-document-listing-listing"},"mermaid":{"_internalId":91793,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":91794,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"copyright":{"_internalId":91795,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"license":{"_internalId":91796,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"pagetitle":{"_internalId":91797,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":91798,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":91799,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":91800,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":91801,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":91802,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":91803,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":91804,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":91805,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":91806,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":91807,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":91808,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"body-classes":{"_internalId":91809,"type":"ref","$ref":"quarto-resource-document-options-body-classes","description":"quarto-resource-document-options-body-classes"},"minimal":{"_internalId":91810,"type":"ref","$ref":"quarto-resource-document-options-minimal","description":"quarto-resource-document-options-minimal"},"document-css":{"_internalId":91811,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":91812,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"anchor-sections":{"_internalId":91813,"type":"ref","$ref":"quarto-resource-document-options-anchor-sections","description":"quarto-resource-document-options-anchor-sections"},"tabsets":{"_internalId":91814,"type":"ref","$ref":"quarto-resource-document-options-tabsets","description":"quarto-resource-document-options-tabsets"},"smooth-scroll":{"_internalId":91815,"type":"ref","$ref":"quarto-resource-document-options-smooth-scroll","description":"quarto-resource-document-options-smooth-scroll"},"respect-user-color-scheme":{"_internalId":91816,"type":"ref","$ref":"quarto-resource-document-options-respect-user-color-scheme","description":"quarto-resource-document-options-respect-user-color-scheme"},"html-math-method":{"_internalId":91817,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"section-divs":{"_internalId":91818,"type":"ref","$ref":"quarto-resource-document-options-section-divs","description":"quarto-resource-document-options-section-divs"},"identifier-prefix":{"_internalId":91819,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":91820,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":91821,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":91822,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":91823,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":91824,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":91825,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citation-location":{"_internalId":91826,"type":"ref","$ref":"quarto-resource-document-references-citation-location","description":"quarto-resource-document-references-citation-location"},"citeproc":{"_internalId":91827,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":91828,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":91829,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":91829,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":91830,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":91831,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":91832,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":91833,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":91834,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":91835,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":91836,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":91837,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":91838,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":91839,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":91840,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":91841,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":91842,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":91843,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":91844,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":91845,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":91846,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":91847,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":91848,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":91849,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":91850,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":91851,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":91852,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":91853,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":91853,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":91854,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-location":{"_internalId":91855,"type":"ref","$ref":"quarto-resource-document-toc-toc-location","description":"quarto-resource-document-toc-toc-location"},"toc-title":{"_internalId":91856,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"toc-expand":{"_internalId":91857,"type":"ref","$ref":"quarto-resource-document-toc-toc-expand","description":"quarto-resource-document-toc-toc-expand"},"search":{"_internalId":91858,"type":"ref","$ref":"quarto-resource-document-website-search","description":"quarto-resource-document-website-search"},"repo-actions":{"_internalId":91859,"type":"ref","$ref":"quarto-resource-document-website-repo-actions","description":"quarto-resource-document-website-repo-actions"},"aliases":{"_internalId":91860,"type":"ref","$ref":"quarto-resource-document-website-aliases","description":"quarto-resource-document-website-aliases"},"image":{"_internalId":91861,"type":"ref","$ref":"quarto-resource-document-website-image","description":"quarto-resource-document-website-image"},"image-height":{"_internalId":91862,"type":"ref","$ref":"quarto-resource-document-website-image-height","description":"quarto-resource-document-website-image-height"},"image-width":{"_internalId":91863,"type":"ref","$ref":"quarto-resource-document-website-image-width","description":"quarto-resource-document-website-image-width"},"image-alt":{"_internalId":91864,"type":"ref","$ref":"quarto-resource-document-website-image-alt","description":"quarto-resource-document-website-image-alt"},"image-lazy-loading":{"_internalId":91865,"type":"ref","$ref":"quarto-resource-document-website-image-lazy-loading","description":"quarto-resource-document-website-image-lazy-loading"},"axe":{"_internalId":91866,"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":91868,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?html5([-+].+)?$":{"_internalId":94576,"type":"anyOf","anyOf":[{"_internalId":94574,"type":"object","description":"be an object","properties":{"eval":{"_internalId":94371,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":94372,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":94373,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":94374,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":94375,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":94376,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":94377,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":94378,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":94379,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":94380,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":94381,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":94382,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":94383,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":94384,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":94385,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"about":{"_internalId":94386,"type":"ref","$ref":"quarto-resource-document-about-about","description":"quarto-resource-document-about-about"},"title":{"_internalId":94387,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":94388,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":94389,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":94390,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"date-modified":{"_internalId":94391,"type":"ref","$ref":"quarto-resource-document-attributes-date-modified","description":"quarto-resource-document-attributes-date-modified"},"author":{"_internalId":94392,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":94393,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":94394,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"doi":{"_internalId":94395,"type":"ref","$ref":"quarto-resource-document-attributes-doi","description":"quarto-resource-document-attributes-doi"},"order":{"_internalId":94396,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":94397,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":94398,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":94399,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":94400,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-tools":{"_internalId":94401,"type":"ref","$ref":"quarto-resource-document-code-code-tools","description":"quarto-resource-document-code-code-tools"},"code-block-border-left":{"_internalId":94402,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":94403,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"highlight-style":{"_internalId":94404,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":94405,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":94406,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":94407,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"fontcolor":{"_internalId":94408,"type":"ref","$ref":"quarto-resource-document-colors-fontcolor","description":"quarto-resource-document-colors-fontcolor"},"linkcolor":{"_internalId":94409,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"monobackgroundcolor":{"_internalId":94410,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"backgroundcolor":{"_internalId":94411,"type":"ref","$ref":"quarto-resource-document-colors-backgroundcolor","description":"quarto-resource-document-colors-backgroundcolor"},"comments":{"_internalId":94412,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":94413,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":94414,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":94415,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":94416,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":94417,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":94418,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":94419,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":94420,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":94421,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":94422,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":94423,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":94424,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":94425,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":94426,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":94427,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":94428,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":94429,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":94430,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":94431,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":94432,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":94433,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":94434,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"mainfont":{"_internalId":94435,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":94436,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":94437,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"linestretch":{"_internalId":94438,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"footnotes-hover":{"_internalId":94439,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":94440,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":94441,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":94442,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":94442,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":94443,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":94444,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":94445,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":94446,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":94447,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":94448,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":94449,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":94450,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":94451,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":94452,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":94453,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":94454,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":94455,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":94456,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"keep-source":{"_internalId":94457,"type":"ref","$ref":"quarto-resource-document-hidden-keep-source","description":"quarto-resource-document-hidden-keep-source"},"keep-hidden":{"_internalId":94458,"type":"ref","$ref":"quarto-resource-document-hidden-keep-hidden","description":"quarto-resource-document-hidden-keep-hidden"},"output-divs":{"_internalId":94459,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":94460,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":94461,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":94462,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":94463,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":94464,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":94465,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":94466,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":94467,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":94468,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":94469,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":94470,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":94471,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":94472,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":94473,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"page-layout":{"_internalId":94474,"type":"ref","$ref":"quarto-resource-document-layout-page-layout","description":"quarto-resource-document-layout-page-layout"},"grid":{"_internalId":94475,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"appendix-style":{"_internalId":94476,"type":"ref","$ref":"quarto-resource-document-layout-appendix-style","description":"quarto-resource-document-layout-appendix-style"},"appendix-cite-as":{"_internalId":94477,"type":"ref","$ref":"quarto-resource-document-layout-appendix-cite-as","description":"quarto-resource-document-layout-appendix-cite-as"},"title-block-style":{"_internalId":94478,"type":"ref","$ref":"quarto-resource-document-layout-title-block-style","description":"quarto-resource-document-layout-title-block-style"},"title-block-banner":{"_internalId":94479,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner","description":"quarto-resource-document-layout-title-block-banner"},"title-block-banner-color":{"_internalId":94480,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner-color","description":"quarto-resource-document-layout-title-block-banner-color"},"title-block-categories":{"_internalId":94481,"type":"ref","$ref":"quarto-resource-document-layout-title-block-categories","description":"quarto-resource-document-layout-title-block-categories"},"max-width":{"_internalId":94482,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":94483,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":94484,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":94485,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":94486,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"lightbox":{"_internalId":94487,"type":"ref","$ref":"quarto-resource-document-lightbox-lightbox","description":"quarto-resource-document-lightbox-lightbox"},"link-external-icon":{"_internalId":94488,"type":"ref","$ref":"quarto-resource-document-links-link-external-icon","description":"quarto-resource-document-links-link-external-icon"},"link-external-newwindow":{"_internalId":94489,"type":"ref","$ref":"quarto-resource-document-links-link-external-newwindow","description":"quarto-resource-document-links-link-external-newwindow"},"link-external-filter":{"_internalId":94490,"type":"ref","$ref":"quarto-resource-document-links-link-external-filter","description":"quarto-resource-document-links-link-external-filter"},"format-links":{"_internalId":94491,"type":"ref","$ref":"quarto-resource-document-links-format-links","description":"quarto-resource-document-links-format-links"},"notebook-links":{"_internalId":94492,"type":"ref","$ref":"quarto-resource-document-links-notebook-links","description":"quarto-resource-document-links-notebook-links"},"other-links":{"_internalId":94493,"type":"ref","$ref":"quarto-resource-document-links-other-links","description":"quarto-resource-document-links-other-links"},"code-links":{"_internalId":94494,"type":"ref","$ref":"quarto-resource-document-links-code-links","description":"quarto-resource-document-links-code-links"},"notebook-view":{"_internalId":94495,"type":"ref","$ref":"quarto-resource-document-links-notebook-view","description":"quarto-resource-document-links-notebook-view"},"notebook-view-style":{"_internalId":94496,"type":"ref","$ref":"quarto-resource-document-links-notebook-view-style","description":"quarto-resource-document-links-notebook-view-style"},"notebook-preview-options":{"_internalId":94497,"type":"ref","$ref":"quarto-resource-document-links-notebook-preview-options","description":"quarto-resource-document-links-notebook-preview-options"},"canonical-url":{"_internalId":94498,"type":"ref","$ref":"quarto-resource-document-links-canonical-url","description":"quarto-resource-document-links-canonical-url"},"listing":{"_internalId":94499,"type":"ref","$ref":"quarto-resource-document-listing-listing","description":"quarto-resource-document-listing-listing"},"mermaid":{"_internalId":94500,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":94501,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"copyright":{"_internalId":94502,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"license":{"_internalId":94503,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"pagetitle":{"_internalId":94504,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":94505,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":94506,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":94507,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":94508,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":94509,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":94510,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":94511,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":94512,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":94513,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":94514,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":94515,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"body-classes":{"_internalId":94516,"type":"ref","$ref":"quarto-resource-document-options-body-classes","description":"quarto-resource-document-options-body-classes"},"minimal":{"_internalId":94517,"type":"ref","$ref":"quarto-resource-document-options-minimal","description":"quarto-resource-document-options-minimal"},"document-css":{"_internalId":94518,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":94519,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"anchor-sections":{"_internalId":94520,"type":"ref","$ref":"quarto-resource-document-options-anchor-sections","description":"quarto-resource-document-options-anchor-sections"},"tabsets":{"_internalId":94521,"type":"ref","$ref":"quarto-resource-document-options-tabsets","description":"quarto-resource-document-options-tabsets"},"smooth-scroll":{"_internalId":94522,"type":"ref","$ref":"quarto-resource-document-options-smooth-scroll","description":"quarto-resource-document-options-smooth-scroll"},"respect-user-color-scheme":{"_internalId":94523,"type":"ref","$ref":"quarto-resource-document-options-respect-user-color-scheme","description":"quarto-resource-document-options-respect-user-color-scheme"},"html-math-method":{"_internalId":94524,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"section-divs":{"_internalId":94525,"type":"ref","$ref":"quarto-resource-document-options-section-divs","description":"quarto-resource-document-options-section-divs"},"identifier-prefix":{"_internalId":94526,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":94527,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":94528,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":94529,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":94530,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":94531,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":94532,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citation-location":{"_internalId":94533,"type":"ref","$ref":"quarto-resource-document-references-citation-location","description":"quarto-resource-document-references-citation-location"},"citeproc":{"_internalId":94534,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":94535,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":94536,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":94536,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":94537,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":94538,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":94539,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":94540,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":94541,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":94542,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":94543,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":94544,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":94545,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":94546,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":94547,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":94548,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":94549,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":94550,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":94551,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":94552,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":94553,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":94554,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":94555,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":94556,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":94557,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":94558,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":94559,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":94560,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":94560,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":94561,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-location":{"_internalId":94562,"type":"ref","$ref":"quarto-resource-document-toc-toc-location","description":"quarto-resource-document-toc-toc-location"},"toc-title":{"_internalId":94563,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"toc-expand":{"_internalId":94564,"type":"ref","$ref":"quarto-resource-document-toc-toc-expand","description":"quarto-resource-document-toc-toc-expand"},"search":{"_internalId":94565,"type":"ref","$ref":"quarto-resource-document-website-search","description":"quarto-resource-document-website-search"},"repo-actions":{"_internalId":94566,"type":"ref","$ref":"quarto-resource-document-website-repo-actions","description":"quarto-resource-document-website-repo-actions"},"aliases":{"_internalId":94567,"type":"ref","$ref":"quarto-resource-document-website-aliases","description":"quarto-resource-document-website-aliases"},"image":{"_internalId":94568,"type":"ref","$ref":"quarto-resource-document-website-image","description":"quarto-resource-document-website-image"},"image-height":{"_internalId":94569,"type":"ref","$ref":"quarto-resource-document-website-image-height","description":"quarto-resource-document-website-image-height"},"image-width":{"_internalId":94570,"type":"ref","$ref":"quarto-resource-document-website-image-width","description":"quarto-resource-document-website-image-width"},"image-alt":{"_internalId":94571,"type":"ref","$ref":"quarto-resource-document-website-image-alt","description":"quarto-resource-document-website-image-alt"},"image-lazy-loading":{"_internalId":94572,"type":"ref","$ref":"quarto-resource-document-website-image-lazy-loading","description":"quarto-resource-document-website-image-lazy-loading"},"axe":{"_internalId":94573,"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":94575,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?icml([-+].+)?$":{"_internalId":97176,"type":"anyOf","anyOf":[{"_internalId":97174,"type":"object","description":"be an object","properties":{"eval":{"_internalId":97078,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":97079,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":97080,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":97081,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":97082,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":97083,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":97084,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":97085,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":97086,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":97087,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":97088,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":97089,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":97090,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":97091,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":97092,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":97093,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":97094,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":97095,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":97096,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":97097,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":97098,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":97099,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":97100,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":97101,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":97102,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":97103,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":97104,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":97105,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":97106,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":97107,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":97108,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":97109,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":97110,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":97111,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":97112,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":97112,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":97113,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":97114,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":97115,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":97116,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":97117,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":97118,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":97119,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":97120,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":97121,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":97122,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":97123,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":97124,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":97125,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":97126,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":97127,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":97128,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":97129,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":97130,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":97131,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":97132,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":97133,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":97134,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":97135,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":97136,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":97137,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":97138,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":97139,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":97140,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":97141,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":97142,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":97143,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":97144,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":97145,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":97146,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":97147,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":97148,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":97149,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":97149,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":97150,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":97151,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":97152,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":97153,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":97154,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":97155,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":97156,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":97157,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":97158,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":97159,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":97160,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":97161,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":97162,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":97163,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":97164,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":97165,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":97166,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":97167,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":97168,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":97169,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":97170,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":97171,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":97172,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":97172,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":97173,"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,grid,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":97175,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?ipynb([-+].+)?$":{"_internalId":99770,"type":"anyOf","anyOf":[{"_internalId":99768,"type":"object","description":"be an object","properties":{"eval":{"_internalId":99678,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":99679,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":99680,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":99681,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":99682,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":99683,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":99684,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":99685,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":99686,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":99687,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":99688,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":99689,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":99690,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":99691,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":99692,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":99693,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":99694,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":99695,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":99696,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":99697,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":99698,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":99699,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":99700,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":99701,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":99702,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":99703,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":99704,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":99705,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":99706,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":99707,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":99708,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":99709,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":99710,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":99711,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":99712,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":99712,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":99713,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":99714,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":99715,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":99716,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":99717,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":99718,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":99719,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":99720,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":99721,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":99722,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":99723,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":99724,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":99725,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":99726,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":99727,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":99728,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":99729,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":99730,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":99731,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":99732,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":99733,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":99734,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":99735,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":99736,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":99737,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"markdown-headings":{"_internalId":99738,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"ipynb-output":{"_internalId":99739,"type":"ref","$ref":"quarto-resource-document-options-ipynb-output","description":"quarto-resource-document-options-ipynb-output"},"quarto-required":{"_internalId":99740,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":99741,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":99742,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":99743,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":99744,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":99745,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":99745,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":99746,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":99747,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"filters":{"_internalId":99748,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":99749,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":99750,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":99751,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":99752,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":99753,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":99754,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":99755,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":99756,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":99757,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":99758,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":99759,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":99760,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":99761,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":99762,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":99763,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":99764,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":99765,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":99766,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":99766,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":99767,"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,grid,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":99769,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?jats([-+].+)?$":{"_internalId":102373,"type":"anyOf","anyOf":[{"_internalId":102371,"type":"object","description":"be an object","properties":{"eval":{"_internalId":102272,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":102273,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":102274,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":102275,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":102276,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":102277,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":102278,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":102279,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":102280,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":102281,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"affiliation":{"_internalId":102282,"type":"ref","$ref":"quarto-resource-document-attributes-affiliation","description":"quarto-resource-document-attributes-affiliation"},"copyright":{"_internalId":102337,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"article":{"_internalId":102284,"type":"ref","$ref":"quarto-resource-document-attributes-article","description":"quarto-resource-document-attributes-article"},"journal":{"_internalId":102285,"type":"ref","$ref":"quarto-resource-document-attributes-journal","description":"quarto-resource-document-attributes-journal"},"abstract":{"_internalId":102286,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"notes":{"_internalId":102287,"type":"ref","$ref":"quarto-resource-document-attributes-notes","description":"quarto-resource-document-attributes-notes"},"tags":{"_internalId":102288,"type":"ref","$ref":"quarto-resource-document-attributes-tags","description":"quarto-resource-document-attributes-tags"},"order":{"_internalId":102289,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":102290,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":102291,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":102292,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":102293,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":102294,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":102295,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":102296,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":102297,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":102298,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":102299,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":102300,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":102301,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":102302,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":102303,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":102304,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":102305,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":102306,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":102307,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":102308,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":102309,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":102310,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":102311,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":102312,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":102313,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":102313,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":102314,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":102315,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":102316,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":102317,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":102318,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":102319,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":102320,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":102321,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":102322,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":102323,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":102324,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":102325,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":102326,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":102327,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":102328,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":102329,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":102330,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":102331,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":102332,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":102333,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":102334,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":102335,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"notebook-subarticles":{"_internalId":102336,"type":"ref","$ref":"quarto-resource-document-links-notebook-subarticles","description":"quarto-resource-document-links-notebook-subarticles"},"license":{"_internalId":102338,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"number-sections":{"_internalId":102339,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":102340,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":102341,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":102342,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":102343,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"bibliography":{"_internalId":102344,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":102345,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":102346,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":102347,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":102348,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":102348,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":102349,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":102350,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":102351,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":102352,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":102353,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":102354,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":102355,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":102356,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":102357,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":102358,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":102359,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":102360,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":102361,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":102362,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":102363,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":102364,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":102365,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":102366,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":102367,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":102368,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":102369,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":102370,"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,grid,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":102372,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?jats_archiving([-+].+)?$":{"_internalId":104976,"type":"anyOf","anyOf":[{"_internalId":104974,"type":"object","description":"be an object","properties":{"eval":{"_internalId":104875,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":104876,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":104877,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":104878,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":104879,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":104880,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":104881,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":104882,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":104883,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":104884,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"affiliation":{"_internalId":104885,"type":"ref","$ref":"quarto-resource-document-attributes-affiliation","description":"quarto-resource-document-attributes-affiliation"},"copyright":{"_internalId":104940,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"article":{"_internalId":104887,"type":"ref","$ref":"quarto-resource-document-attributes-article","description":"quarto-resource-document-attributes-article"},"journal":{"_internalId":104888,"type":"ref","$ref":"quarto-resource-document-attributes-journal","description":"quarto-resource-document-attributes-journal"},"abstract":{"_internalId":104889,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"notes":{"_internalId":104890,"type":"ref","$ref":"quarto-resource-document-attributes-notes","description":"quarto-resource-document-attributes-notes"},"tags":{"_internalId":104891,"type":"ref","$ref":"quarto-resource-document-attributes-tags","description":"quarto-resource-document-attributes-tags"},"order":{"_internalId":104892,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":104893,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":104894,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":104895,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":104896,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":104897,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":104898,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":104899,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":104900,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":104901,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":104902,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":104903,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":104904,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":104905,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":104906,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":104907,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":104908,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":104909,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":104910,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":104911,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":104912,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":104913,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":104914,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":104915,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":104916,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":104916,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":104917,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":104918,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":104919,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":104920,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":104921,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":104922,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":104923,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":104924,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":104925,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":104926,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":104927,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":104928,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":104929,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":104930,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":104931,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":104932,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":104933,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":104934,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":104935,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":104936,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":104937,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":104938,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"notebook-subarticles":{"_internalId":104939,"type":"ref","$ref":"quarto-resource-document-links-notebook-subarticles","description":"quarto-resource-document-links-notebook-subarticles"},"license":{"_internalId":104941,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"number-sections":{"_internalId":104942,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":104943,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":104944,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":104945,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":104946,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"bibliography":{"_internalId":104947,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":104948,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":104949,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":104950,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":104951,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":104951,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":104952,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":104953,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":104954,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":104955,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":104956,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":104957,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":104958,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":104959,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":104960,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":104961,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":104962,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":104963,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":104964,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":104965,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":104966,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":104967,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":104968,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":104969,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":104970,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":104971,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":104972,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":104973,"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,grid,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":104975,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?jats_articleauthoring([-+].+)?$":{"_internalId":107579,"type":"anyOf","anyOf":[{"_internalId":107577,"type":"object","description":"be an object","properties":{"eval":{"_internalId":107478,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":107479,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":107480,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":107481,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":107482,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":107483,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":107484,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":107485,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":107486,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":107487,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"affiliation":{"_internalId":107488,"type":"ref","$ref":"quarto-resource-document-attributes-affiliation","description":"quarto-resource-document-attributes-affiliation"},"copyright":{"_internalId":107543,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"article":{"_internalId":107490,"type":"ref","$ref":"quarto-resource-document-attributes-article","description":"quarto-resource-document-attributes-article"},"journal":{"_internalId":107491,"type":"ref","$ref":"quarto-resource-document-attributes-journal","description":"quarto-resource-document-attributes-journal"},"abstract":{"_internalId":107492,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"notes":{"_internalId":107493,"type":"ref","$ref":"quarto-resource-document-attributes-notes","description":"quarto-resource-document-attributes-notes"},"tags":{"_internalId":107494,"type":"ref","$ref":"quarto-resource-document-attributes-tags","description":"quarto-resource-document-attributes-tags"},"order":{"_internalId":107495,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":107496,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":107497,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":107498,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":107499,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":107500,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":107501,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":107502,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":107503,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":107504,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":107505,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":107506,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":107507,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":107508,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":107509,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":107510,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":107511,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":107512,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":107513,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":107514,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":107515,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":107516,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":107517,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":107518,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":107519,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":107519,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":107520,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":107521,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":107522,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":107523,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":107524,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":107525,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":107526,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":107527,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":107528,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":107529,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":107530,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":107531,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":107532,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":107533,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":107534,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":107535,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":107536,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":107537,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":107538,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":107539,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":107540,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":107541,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"notebook-subarticles":{"_internalId":107542,"type":"ref","$ref":"quarto-resource-document-links-notebook-subarticles","description":"quarto-resource-document-links-notebook-subarticles"},"license":{"_internalId":107544,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"number-sections":{"_internalId":107545,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":107546,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":107547,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":107548,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":107549,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"bibliography":{"_internalId":107550,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":107551,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":107552,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":107553,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":107554,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":107554,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":107555,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":107556,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":107557,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":107558,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":107559,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":107560,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":107561,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":107562,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":107563,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":107564,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":107565,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":107566,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":107567,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":107568,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":107569,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":107570,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":107571,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":107572,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":107573,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":107574,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":107575,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":107576,"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,grid,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":107578,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?jats_publishing([-+].+)?$":{"_internalId":110182,"type":"anyOf","anyOf":[{"_internalId":110180,"type":"object","description":"be an object","properties":{"eval":{"_internalId":110081,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":110082,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":110083,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":110084,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":110085,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":110086,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":110087,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":110088,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":110089,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":110090,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"affiliation":{"_internalId":110091,"type":"ref","$ref":"quarto-resource-document-attributes-affiliation","description":"quarto-resource-document-attributes-affiliation"},"copyright":{"_internalId":110146,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"article":{"_internalId":110093,"type":"ref","$ref":"quarto-resource-document-attributes-article","description":"quarto-resource-document-attributes-article"},"journal":{"_internalId":110094,"type":"ref","$ref":"quarto-resource-document-attributes-journal","description":"quarto-resource-document-attributes-journal"},"abstract":{"_internalId":110095,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"notes":{"_internalId":110096,"type":"ref","$ref":"quarto-resource-document-attributes-notes","description":"quarto-resource-document-attributes-notes"},"tags":{"_internalId":110097,"type":"ref","$ref":"quarto-resource-document-attributes-tags","description":"quarto-resource-document-attributes-tags"},"order":{"_internalId":110098,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":110099,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":110100,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":110101,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":110102,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":110103,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":110104,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":110105,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":110106,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":110107,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":110108,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":110109,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":110110,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":110111,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":110112,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":110113,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":110114,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":110115,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":110116,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":110117,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":110118,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":110119,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":110120,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":110121,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":110122,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":110122,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":110123,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":110124,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":110125,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":110126,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":110127,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":110128,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":110129,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":110130,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":110131,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":110132,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":110133,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":110134,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":110135,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":110136,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":110137,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":110138,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":110139,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":110140,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":110141,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":110142,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":110143,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":110144,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"notebook-subarticles":{"_internalId":110145,"type":"ref","$ref":"quarto-resource-document-links-notebook-subarticles","description":"quarto-resource-document-links-notebook-subarticles"},"license":{"_internalId":110147,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"number-sections":{"_internalId":110148,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":110149,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":110150,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":110151,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":110152,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"bibliography":{"_internalId":110153,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":110154,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":110155,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":110156,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":110157,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":110157,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":110158,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":110159,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":110160,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":110161,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":110162,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":110163,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":110164,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":110165,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":110166,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":110167,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":110168,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":110169,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":110170,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":110171,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":110172,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":110173,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":110174,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":110175,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":110176,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":110177,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":110178,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":110179,"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,grid,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":110181,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?jira([-+].+)?$":{"_internalId":112782,"type":"anyOf","anyOf":[{"_internalId":112780,"type":"object","description":"be an object","properties":{"eval":{"_internalId":112684,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":112685,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":112686,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":112687,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":112688,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":112689,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":112690,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":112691,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":112692,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":112693,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":112694,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":112695,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":112696,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":112697,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":112698,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":112699,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":112700,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":112701,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":112702,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":112703,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":112704,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":112705,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":112706,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":112707,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":112708,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":112709,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":112710,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":112711,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":112712,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":112713,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":112714,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":112715,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":112716,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":112717,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":112718,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":112718,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":112719,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":112720,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":112721,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":112722,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":112723,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":112724,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":112725,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":112726,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":112727,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":112728,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":112729,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":112730,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":112731,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":112732,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":112733,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":112734,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":112735,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":112736,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":112737,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":112738,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":112739,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":112740,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":112741,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":112742,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":112743,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":112744,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":112745,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":112746,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":112747,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":112748,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":112749,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":112750,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":112751,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":112752,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":112753,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":112754,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":112755,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":112755,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":112756,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":112757,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":112758,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":112759,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":112760,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":112761,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":112762,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":112763,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":112764,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":112765,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":112766,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":112767,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":112768,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":112769,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":112770,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":112771,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":112772,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":112773,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":112774,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":112775,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":112776,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":112777,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":112778,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":112778,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":112779,"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,grid,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":112781,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?json([-+].+)?$":{"_internalId":115382,"type":"anyOf","anyOf":[{"_internalId":115380,"type":"object","description":"be an object","properties":{"eval":{"_internalId":115284,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":115285,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":115286,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":115287,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":115288,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":115289,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":115290,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":115291,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":115292,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":115293,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":115294,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":115295,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":115296,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":115297,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":115298,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":115299,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":115300,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":115301,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":115302,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":115303,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":115304,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":115305,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":115306,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":115307,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":115308,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":115309,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":115310,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":115311,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":115312,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":115313,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":115314,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":115315,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":115316,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":115317,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":115318,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":115318,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":115319,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":115320,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":115321,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":115322,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":115323,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":115324,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":115325,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":115326,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":115327,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":115328,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":115329,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":115330,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":115331,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":115332,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":115333,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":115334,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":115335,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":115336,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":115337,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":115338,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":115339,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":115340,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":115341,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":115342,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":115343,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":115344,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":115345,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":115346,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":115347,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":115348,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":115349,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":115350,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":115351,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":115352,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":115353,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":115354,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":115355,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":115355,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":115356,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":115357,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":115358,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":115359,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":115360,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":115361,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":115362,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":115363,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":115364,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":115365,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":115366,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":115367,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":115368,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":115369,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":115370,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":115371,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":115372,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":115373,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":115374,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":115375,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":115376,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":115377,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":115378,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":115378,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":115379,"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,grid,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":115381,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?latex([-+].+)?$":{"_internalId":118056,"type":"anyOf","anyOf":[{"_internalId":118054,"type":"object","description":"be an object","properties":{"eval":{"_internalId":117884,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":117885,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-line-numbers":{"_internalId":117886,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":117887,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-env":{"_internalId":117888,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":117889,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"cap-location":{"_internalId":117890,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":117891,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":117892,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":117893,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":117894,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":117895,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":117896,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":117897,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":117898,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":117899,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":117900,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":117901,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":117902,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":117903,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"thanks":{"_internalId":117904,"type":"ref","$ref":"quarto-resource-document-attributes-thanks","description":"quarto-resource-document-attributes-thanks"},"order":{"_internalId":117905,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":117906,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":117907,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-block-border-left":{"_internalId":117908,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":117909,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"highlight-style":{"_internalId":117910,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":117911,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":117912,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"listings":{"_internalId":117913,"type":"ref","$ref":"quarto-resource-document-code-listings","description":"quarto-resource-document-code-listings"},"indented-code-classes":{"_internalId":117914,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"linkcolor":{"_internalId":117915,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"filecolor":{"_internalId":117916,"type":"ref","$ref":"quarto-resource-document-colors-filecolor","description":"quarto-resource-document-colors-filecolor"},"citecolor":{"_internalId":117917,"type":"ref","$ref":"quarto-resource-document-colors-citecolor","description":"quarto-resource-document-colors-citecolor"},"urlcolor":{"_internalId":117918,"type":"ref","$ref":"quarto-resource-document-colors-urlcolor","description":"quarto-resource-document-colors-urlcolor"},"toccolor":{"_internalId":117919,"type":"ref","$ref":"quarto-resource-document-colors-toccolor","description":"quarto-resource-document-colors-toccolor"},"colorlinks":{"_internalId":117920,"type":"ref","$ref":"quarto-resource-document-colors-colorlinks","description":"quarto-resource-document-colors-colorlinks"},"crossref":{"_internalId":117921,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":117922,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":117923,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":117924,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":117925,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":117926,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":117927,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":117928,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":117929,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":117930,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":117931,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":117932,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":117933,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":117934,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":117935,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":117936,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":117937,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":117938,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":117939,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":117940,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"mainfont":{"_internalId":117941,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":117942,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":117943,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"fontenc":{"_internalId":117944,"type":"ref","$ref":"quarto-resource-document-fonts-fontenc","description":"quarto-resource-document-fonts-fontenc"},"fontfamily":{"_internalId":117945,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamily","description":"quarto-resource-document-fonts-fontfamily"},"fontfamilyoptions":{"_internalId":117946,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamilyoptions","description":"quarto-resource-document-fonts-fontfamilyoptions"},"sansfont":{"_internalId":117947,"type":"ref","$ref":"quarto-resource-document-fonts-sansfont","description":"quarto-resource-document-fonts-sansfont"},"mathfont":{"_internalId":117948,"type":"ref","$ref":"quarto-resource-document-fonts-mathfont","description":"quarto-resource-document-fonts-mathfont"},"CJKmainfont":{"_internalId":117949,"type":"ref","$ref":"quarto-resource-document-fonts-CJKmainfont","description":"quarto-resource-document-fonts-CJKmainfont"},"mainfontoptions":{"_internalId":117950,"type":"ref","$ref":"quarto-resource-document-fonts-mainfontoptions","description":"quarto-resource-document-fonts-mainfontoptions"},"sansfontoptions":{"_internalId":117951,"type":"ref","$ref":"quarto-resource-document-fonts-sansfontoptions","description":"quarto-resource-document-fonts-sansfontoptions"},"monofontoptions":{"_internalId":117952,"type":"ref","$ref":"quarto-resource-document-fonts-monofontoptions","description":"quarto-resource-document-fonts-monofontoptions"},"mathfontoptions":{"_internalId":117953,"type":"ref","$ref":"quarto-resource-document-fonts-mathfontoptions","description":"quarto-resource-document-fonts-mathfontoptions"},"CJKoptions":{"_internalId":117954,"type":"ref","$ref":"quarto-resource-document-fonts-CJKoptions","description":"quarto-resource-document-fonts-CJKoptions"},"microtypeoptions":{"_internalId":117955,"type":"ref","$ref":"quarto-resource-document-fonts-microtypeoptions","description":"quarto-resource-document-fonts-microtypeoptions"},"linestretch":{"_internalId":117956,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"links-as-notes":{"_internalId":117957,"type":"ref","$ref":"quarto-resource-document-footnotes-links-as-notes","description":"quarto-resource-document-footnotes-links-as-notes"},"funding":{"_internalId":117958,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":117959,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":117959,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":117960,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":117961,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":117962,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":117963,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":117964,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":117965,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":117966,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":117967,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":117968,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":117969,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":117970,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":117971,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":117972,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":117973,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":117974,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":117975,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":117976,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":117977,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":117978,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":117979,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":117980,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":117981,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":117982,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":117983,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":117984,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":117985,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":117986,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"documentclass":{"_internalId":117987,"type":"ref","$ref":"quarto-resource-document-layout-documentclass","description":"quarto-resource-document-layout-documentclass"},"classoption":{"_internalId":117988,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"pagestyle":{"_internalId":117989,"type":"ref","$ref":"quarto-resource-document-layout-pagestyle","description":"quarto-resource-document-layout-pagestyle"},"papersize":{"_internalId":117990,"type":"ref","$ref":"quarto-resource-document-layout-papersize","description":"quarto-resource-document-layout-papersize"},"grid":{"_internalId":117991,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"margin-left":{"_internalId":117992,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":117993,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":117994,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":117995,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"geometry":{"_internalId":117996,"type":"ref","$ref":"quarto-resource-document-layout-geometry","description":"quarto-resource-document-layout-geometry"},"hyperrefoptions":{"_internalId":117997,"type":"ref","$ref":"quarto-resource-document-layout-hyperrefoptions","description":"quarto-resource-document-layout-hyperrefoptions"},"indent":{"_internalId":117998,"type":"ref","$ref":"quarto-resource-document-layout-indent","description":"quarto-resource-document-layout-indent"},"block-headings":{"_internalId":117999,"type":"ref","$ref":"quarto-resource-document-layout-block-headings","description":"quarto-resource-document-layout-block-headings"},"keywords":{"_internalId":118000,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":118001,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"title-meta":{"_internalId":118002,"type":"ref","$ref":"quarto-resource-document-metadata-title-meta","description":"quarto-resource-document-metadata-title-meta"},"author-meta":{"_internalId":118003,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":118004,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":118005,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":118006,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"secnumdepth":{"_internalId":118007,"type":"ref","$ref":"quarto-resource-document-numbering-secnumdepth","description":"quarto-resource-document-numbering-secnumdepth"},"shift-heading-level-by":{"_internalId":118008,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":118009,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":118010,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"pdf-engine":{"_internalId":118011,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":118012,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":118013,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"quarto-required":{"_internalId":118014,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":118015,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":118016,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"cite-method":{"_internalId":118017,"type":"ref","$ref":"quarto-resource-document-references-cite-method","description":"quarto-resource-document-references-cite-method"},"citeproc":{"_internalId":118018,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"biblatexoptions":{"_internalId":118019,"type":"ref","$ref":"quarto-resource-document-references-biblatexoptions","description":"quarto-resource-document-references-biblatexoptions"},"natbiboptions":{"_internalId":118020,"type":"ref","$ref":"quarto-resource-document-references-natbiboptions","description":"quarto-resource-document-references-natbiboptions"},"biblio-style":{"_internalId":118021,"type":"ref","$ref":"quarto-resource-document-references-biblio-style","description":"quarto-resource-document-references-biblio-style"},"biblio-title":{"_internalId":118022,"type":"ref","$ref":"quarto-resource-document-references-biblio-title","description":"quarto-resource-document-references-biblio-title"},"biblio-config":{"_internalId":118023,"type":"ref","$ref":"quarto-resource-document-references-biblio-config","description":"quarto-resource-document-references-biblio-config"},"citation-abbreviations":{"_internalId":118024,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"link-citations":{"_internalId":118025,"type":"ref","$ref":"quarto-resource-document-references-link-citations","description":"quarto-resource-document-references-link-citations"},"link-bibliography":{"_internalId":118026,"type":"ref","$ref":"quarto-resource-document-references-link-bibliography","description":"quarto-resource-document-references-link-bibliography"},"notes-after-punctuation":{"_internalId":118027,"type":"ref","$ref":"quarto-resource-document-references-notes-after-punctuation","description":"quarto-resource-document-references-notes-after-punctuation"},"from":{"_internalId":118028,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":118028,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":118029,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":118030,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":118031,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":118032,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":118033,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":118034,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":118035,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":118036,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":118037,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":118038,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":118039,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":118040,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":118041,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":118042,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":118043,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":118044,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":118045,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"use-rsvg-convert":{"_internalId":118046,"type":"ref","$ref":"quarto-resource-document-render-use-rsvg-convert","description":"quarto-resource-document-render-use-rsvg-convert"},"df-print":{"_internalId":118047,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":118048,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":118049,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":118049,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":118050,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":118051,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"lof":{"_internalId":118052,"type":"ref","$ref":"quarto-resource-document-toc-lof","description":"quarto-resource-document-toc-lof"},"lot":{"_internalId":118053,"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,grid,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":118055,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?man([-+].+)?$":{"_internalId":120659,"type":"anyOf","anyOf":[{"_internalId":120657,"type":"object","description":"be an object","properties":{"eval":{"_internalId":120558,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":120559,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":120560,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":120561,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":120562,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":120563,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":120564,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":120565,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":120566,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":120567,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":120568,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":120569,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":120570,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":120571,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":120572,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":120573,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":120574,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":120575,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":120576,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":120577,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":120578,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":120579,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":120580,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":120581,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":120582,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":120583,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":120584,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":120585,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":120586,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":120587,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":120588,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":120589,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":120590,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"adjusting":{"_internalId":120591,"type":"ref","$ref":"quarto-resource-document-formatting-adjusting","description":"quarto-resource-document-formatting-adjusting"},"hyphenate":{"_internalId":120592,"type":"ref","$ref":"quarto-resource-document-formatting-hyphenate","description":"quarto-resource-document-formatting-hyphenate"},"funding":{"_internalId":120593,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":120594,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":120594,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":120595,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":120596,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":120597,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":120598,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":120599,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":120600,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":120601,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":120602,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":120603,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":120604,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":120605,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":120606,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":120607,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":120608,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":120609,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":120610,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":120611,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":120612,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":120613,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":120614,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":120615,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":120616,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"footer":{"_internalId":120617,"type":"ref","$ref":"quarto-resource-document-includes-footer","description":"quarto-resource-document-includes-footer"},"header":{"_internalId":120618,"type":"ref","$ref":"quarto-resource-document-includes-header","description":"quarto-resource-document-includes-header"},"metadata-file":{"_internalId":120619,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":120620,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":120621,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":120622,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":120623,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":120624,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":120625,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":120626,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":120627,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"section":{"_internalId":120628,"type":"ref","$ref":"quarto-resource-document-options-section","description":"quarto-resource-document-options-section"},"quarto-required":{"_internalId":120629,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":120630,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":120631,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":120632,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":120633,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":120634,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":120634,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":120635,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":120636,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":120637,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":120638,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":120639,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":120640,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":120641,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":120642,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":120643,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":120644,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":120645,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":120646,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":120647,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":120648,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":120649,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":120650,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":120651,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":120652,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":120653,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":120654,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":120655,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":120656,"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,grid,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":120658,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markdown([-+].+)?$":{"_internalId":123266,"type":"anyOf","anyOf":[{"_internalId":123264,"type":"object","description":"be an object","properties":{"eval":{"_internalId":123161,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":123162,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":123163,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":123164,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":123165,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":123166,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":123167,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":123168,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":123169,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":123170,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":123171,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":123172,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":123173,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":123174,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":123175,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":123176,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":123177,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":123178,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":123179,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":123180,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":123181,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":123182,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":123183,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":123184,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":123185,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":123186,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":123187,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":123188,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":123189,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":123190,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":123191,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":123192,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":123193,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":123194,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":123195,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":123196,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":123196,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":123197,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":123198,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":123199,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":123200,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":123201,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":123202,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":123203,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":123204,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":123205,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":123206,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":123207,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":123208,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":123209,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":123210,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":123211,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":123212,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":123213,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":123214,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":123215,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":123216,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":123217,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":123218,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":123219,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":123220,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":123221,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":123222,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":123223,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":123224,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":123225,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":123226,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":123227,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":123228,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":123229,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":123230,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":123231,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":123232,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":123233,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":123234,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":123235,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":123236,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":123237,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":123237,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":123238,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":123239,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":123240,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":123241,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":123242,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":123243,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":123244,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":123245,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":123246,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":123247,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":123248,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":123249,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":123250,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":123251,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":123252,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":123253,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":123254,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":123255,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":123256,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":123257,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":123258,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":123259,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":123260,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":123261,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":123262,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":123262,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":123263,"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,grid,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":123265,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markdown_github([-+].+)?$":{"_internalId":125866,"type":"anyOf","anyOf":[{"_internalId":125864,"type":"object","description":"be an object","properties":{"eval":{"_internalId":125768,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":125769,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":125770,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":125771,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":125772,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":125773,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":125774,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":125775,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":125776,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":125777,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":125778,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":125779,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":125780,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":125781,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":125782,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":125783,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":125784,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":125785,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":125786,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":125787,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":125788,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":125789,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":125790,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":125791,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":125792,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":125793,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":125794,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":125795,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":125796,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":125797,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":125798,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":125799,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":125800,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":125801,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":125802,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":125802,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":125803,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":125804,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":125805,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":125806,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":125807,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":125808,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":125809,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":125810,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":125811,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":125812,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":125813,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":125814,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":125815,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":125816,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":125817,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":125818,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":125819,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":125820,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":125821,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":125822,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":125823,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":125824,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":125825,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":125826,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":125827,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":125828,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":125829,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":125830,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":125831,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":125832,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":125833,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":125834,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":125835,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":125836,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":125837,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":125838,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":125839,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":125839,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":125840,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":125841,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":125842,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":125843,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":125844,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":125845,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":125846,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":125847,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":125848,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":125849,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":125850,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":125851,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":125852,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":125853,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":125854,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":125855,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":125856,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":125857,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":125858,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":125859,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":125860,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":125861,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":125862,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":125862,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":125863,"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,grid,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":125865,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markdown_mmd([-+].+)?$":{"_internalId":128466,"type":"anyOf","anyOf":[{"_internalId":128464,"type":"object","description":"be an object","properties":{"eval":{"_internalId":128368,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":128369,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":128370,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":128371,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":128372,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":128373,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":128374,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":128375,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":128376,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":128377,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":128378,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":128379,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":128380,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":128381,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":128382,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":128383,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":128384,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":128385,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":128386,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":128387,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":128388,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":128389,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":128390,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":128391,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":128392,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":128393,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":128394,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":128395,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":128396,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":128397,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":128398,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":128399,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":128400,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":128401,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":128402,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":128402,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":128403,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":128404,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":128405,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":128406,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":128407,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":128408,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":128409,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":128410,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":128411,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":128412,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":128413,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":128414,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":128415,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":128416,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":128417,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":128418,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":128419,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":128420,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":128421,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":128422,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":128423,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":128424,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":128425,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":128426,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":128427,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":128428,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":128429,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":128430,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":128431,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":128432,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":128433,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":128434,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":128435,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":128436,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":128437,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":128438,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":128439,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":128439,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":128440,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":128441,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":128442,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":128443,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":128444,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":128445,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":128446,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":128447,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":128448,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":128449,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":128450,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":128451,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":128452,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":128453,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":128454,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":128455,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":128456,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":128457,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":128458,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":128459,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":128460,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":128461,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":128462,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":128462,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":128463,"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,grid,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":128465,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markdown_phpextra([-+].+)?$":{"_internalId":131066,"type":"anyOf","anyOf":[{"_internalId":131064,"type":"object","description":"be an object","properties":{"eval":{"_internalId":130968,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":130969,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":130970,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":130971,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":130972,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":130973,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":130974,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":130975,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":130976,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":130977,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":130978,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":130979,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":130980,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":130981,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":130982,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":130983,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":130984,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":130985,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":130986,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":130987,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":130988,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":130989,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":130990,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":130991,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":130992,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":130993,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":130994,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":130995,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":130996,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":130997,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":130998,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":130999,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":131000,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":131001,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":131002,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":131002,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":131003,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":131004,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":131005,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":131006,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":131007,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":131008,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":131009,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":131010,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":131011,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":131012,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":131013,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":131014,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":131015,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":131016,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":131017,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":131018,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":131019,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":131020,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":131021,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":131022,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":131023,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":131024,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":131025,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":131026,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":131027,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":131028,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":131029,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":131030,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":131031,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":131032,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":131033,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":131034,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":131035,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":131036,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":131037,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":131038,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":131039,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":131039,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":131040,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":131041,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":131042,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":131043,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":131044,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":131045,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":131046,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":131047,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":131048,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":131049,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":131050,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":131051,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":131052,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":131053,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":131054,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":131055,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":131056,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":131057,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":131058,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":131059,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":131060,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":131061,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":131062,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":131062,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":131063,"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,grid,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":131065,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markdown_strict([-+].+)?$":{"_internalId":133666,"type":"anyOf","anyOf":[{"_internalId":133664,"type":"object","description":"be an object","properties":{"eval":{"_internalId":133568,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":133569,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":133570,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":133571,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":133572,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":133573,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":133574,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":133575,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":133576,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":133577,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":133578,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":133579,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":133580,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":133581,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":133582,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":133583,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":133584,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":133585,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":133586,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":133587,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":133588,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":133589,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":133590,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":133591,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":133592,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":133593,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":133594,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":133595,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":133596,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":133597,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":133598,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":133599,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":133600,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":133601,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":133602,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":133602,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":133603,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":133604,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":133605,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":133606,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":133607,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":133608,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":133609,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":133610,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":133611,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":133612,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":133613,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":133614,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":133615,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":133616,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":133617,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":133618,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":133619,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":133620,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":133621,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":133622,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":133623,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":133624,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":133625,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":133626,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":133627,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":133628,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":133629,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":133630,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":133631,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":133632,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":133633,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":133634,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":133635,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":133636,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":133637,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":133638,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":133639,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":133639,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":133640,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":133641,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":133642,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":133643,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":133644,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":133645,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":133646,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":133647,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":133648,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":133649,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":133650,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":133651,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":133652,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":133653,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":133654,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":133655,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":133656,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":133657,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":133658,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":133659,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":133660,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":133661,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":133662,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":133662,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":133663,"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,grid,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":133665,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markua([-+].+)?$":{"_internalId":136273,"type":"anyOf","anyOf":[{"_internalId":136271,"type":"object","description":"be an object","properties":{"eval":{"_internalId":136168,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":136169,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":136170,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":136171,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":136172,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":136173,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":136174,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":136175,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":136176,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":136177,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":136178,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":136179,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":136180,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":136181,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":136182,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":136183,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":136184,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":136185,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":136186,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":136187,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":136188,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":136189,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":136190,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":136191,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":136192,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":136193,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":136194,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":136195,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":136196,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":136197,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":136198,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":136199,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":136200,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":136201,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":136202,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":136203,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":136203,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":136204,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":136205,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":136206,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":136207,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":136208,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":136209,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":136210,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":136211,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":136212,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":136213,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":136214,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":136215,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":136216,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":136217,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":136218,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":136219,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":136220,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":136221,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":136222,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":136223,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":136224,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":136225,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":136226,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":136227,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":136228,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":136229,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":136230,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":136231,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":136232,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":136233,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":136234,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":136235,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":136236,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":136237,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":136238,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":136239,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":136240,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":136241,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":136242,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":136243,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":136244,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":136244,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":136245,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":136246,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":136247,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":136248,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":136249,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":136250,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":136251,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":136252,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":136253,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":136254,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":136255,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":136256,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":136257,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":136258,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":136259,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":136260,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":136261,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":136262,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":136263,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":136264,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":136265,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":136266,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":136267,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":136268,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":136269,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":136269,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":136270,"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,grid,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":136272,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?mediawiki([-+].+)?$":{"_internalId":138873,"type":"anyOf","anyOf":[{"_internalId":138871,"type":"object","description":"be an object","properties":{"eval":{"_internalId":138775,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":138776,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":138777,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":138778,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":138779,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":138780,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":138781,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":138782,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":138783,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":138784,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":138785,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":138786,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":138787,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":138788,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":138789,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":138790,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":138791,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":138792,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":138793,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":138794,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":138795,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":138796,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":138797,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":138798,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":138799,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":138800,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":138801,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":138802,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":138803,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":138804,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":138805,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":138806,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":138807,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":138808,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":138809,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":138809,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":138810,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":138811,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":138812,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":138813,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":138814,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":138815,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":138816,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":138817,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":138818,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":138819,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":138820,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":138821,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":138822,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":138823,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":138824,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":138825,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":138826,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":138827,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":138828,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":138829,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":138830,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":138831,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":138832,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":138833,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":138834,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":138835,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":138836,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":138837,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":138838,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":138839,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":138840,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":138841,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":138842,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":138843,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":138844,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":138845,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":138846,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":138846,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":138847,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":138848,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":138849,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":138850,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":138851,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":138852,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":138853,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":138854,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":138855,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":138856,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":138857,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":138858,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":138859,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":138860,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":138861,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":138862,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":138863,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":138864,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":138865,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":138866,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":138867,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":138868,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":138869,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":138869,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":138870,"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,grid,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":138872,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?ms([-+].+)?$":{"_internalId":141487,"type":"anyOf","anyOf":[{"_internalId":141485,"type":"object","description":"be an object","properties":{"eval":{"_internalId":141375,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":141376,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-line-numbers":{"_internalId":141377,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"output":{"_internalId":141378,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":141379,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":141380,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":141381,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":141382,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":141383,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":141384,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":141385,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":141386,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"order":{"_internalId":141387,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":141388,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":141389,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":141390,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":141391,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":141392,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":141393,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"crossref":{"_internalId":141394,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":141395,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":141396,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":141397,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":141398,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":141399,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":141400,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":141401,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":141402,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":141403,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":141404,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":141405,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":141406,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":141407,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":141408,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":141409,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":141410,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":141411,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":141412,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":141413,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fontfamily":{"_internalId":141414,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamily","description":"quarto-resource-document-fonts-fontfamily"},"pointsize":{"_internalId":141415,"type":"ref","$ref":"quarto-resource-document-fonts-pointsize","description":"quarto-resource-document-fonts-pointsize"},"lineheight":{"_internalId":141416,"type":"ref","$ref":"quarto-resource-document-fonts-lineheight","description":"quarto-resource-document-fonts-lineheight"},"funding":{"_internalId":141417,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":141418,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":141418,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":141419,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":141420,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":141421,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":141422,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":141423,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":141424,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":141425,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":141426,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":141427,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":141428,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":141429,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":141430,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":141431,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":141432,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":141433,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":141434,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":141435,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":141436,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":141437,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":141438,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":141439,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":141440,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":141441,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":141442,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":141443,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":141444,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":141445,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":141446,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"indent":{"_internalId":141447,"type":"ref","$ref":"quarto-resource-document-layout-indent","description":"quarto-resource-document-layout-indent"},"number-sections":{"_internalId":141448,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":141449,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":141450,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"pdf-engine":{"_internalId":141451,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":141452,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":141453,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"quarto-required":{"_internalId":141454,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":141455,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":141456,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":141457,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":141458,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":141459,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":141459,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":141460,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":141461,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":141462,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":141463,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":141464,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":141465,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":141466,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":141467,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":141468,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":141469,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":141470,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":141471,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":141472,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":141473,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":141474,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":141475,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":141476,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":141477,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":141478,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":141479,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":141480,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":141481,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"ascii":{"_internalId":141482,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":141483,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":141483,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":141484,"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,grid,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":141486,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?muse([-+].+)?$":{"_internalId":144089,"type":"anyOf","anyOf":[{"_internalId":144087,"type":"object","description":"be an object","properties":{"eval":{"_internalId":143989,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":143990,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":143991,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":143992,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":143993,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":143994,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":143995,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":143996,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":143997,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":143998,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":143999,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":144000,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":144001,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":144002,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":144003,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":144004,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":144005,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":144006,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":144007,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":144008,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":144009,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":144010,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":144011,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":144012,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":144013,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":144014,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":144015,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":144016,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":144017,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":144018,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":144019,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":144020,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":144021,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":144022,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":144023,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":144024,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":144025,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":144025,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":144026,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":144027,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":144028,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":144029,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":144030,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":144031,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":144032,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":144033,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":144034,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":144035,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":144036,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":144037,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":144038,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":144039,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":144040,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":144041,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":144042,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":144043,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":144044,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":144045,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":144046,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":144047,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":144048,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":144049,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":144050,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":144051,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":144052,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":144053,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":144054,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":144055,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":144056,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":144057,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":144058,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":144059,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":144060,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":144061,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":144062,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":144062,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":144063,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":144064,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":144065,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":144066,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":144067,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":144068,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":144069,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":144070,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":144071,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":144072,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":144073,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":144074,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":144075,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":144076,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":144077,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":144078,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":144079,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":144080,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":144081,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":144082,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":144083,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":144084,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":144085,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":144085,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":144086,"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,grid,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":144088,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?native([-+].+)?$":{"_internalId":146689,"type":"anyOf","anyOf":[{"_internalId":146687,"type":"object","description":"be an object","properties":{"eval":{"_internalId":146591,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":146592,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":146593,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":146594,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":146595,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":146596,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":146597,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":146598,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":146599,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":146600,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":146601,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":146602,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":146603,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":146604,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":146605,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":146606,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":146607,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":146608,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":146609,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":146610,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":146611,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":146612,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":146613,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":146614,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":146615,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":146616,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":146617,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":146618,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":146619,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":146620,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":146621,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":146622,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":146623,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":146624,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":146625,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":146625,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":146626,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":146627,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":146628,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":146629,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":146630,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":146631,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":146632,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":146633,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":146634,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":146635,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":146636,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":146637,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":146638,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":146639,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":146640,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":146641,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":146642,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":146643,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":146644,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":146645,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":146646,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":146647,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":146648,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":146649,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":146650,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":146651,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":146652,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":146653,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":146654,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":146655,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":146656,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":146657,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":146658,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":146659,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":146660,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":146661,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":146662,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":146662,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":146663,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":146664,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":146665,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":146666,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":146667,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":146668,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":146669,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":146670,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":146671,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":146672,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":146673,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":146674,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":146675,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":146676,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":146677,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":146678,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":146679,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":146680,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":146681,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":146682,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":146683,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":146684,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":146685,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":146685,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":146686,"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,grid,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":146688,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?odt([-+].+)?$":{"_internalId":149294,"type":"anyOf","anyOf":[{"_internalId":149292,"type":"object","description":"be an object","properties":{"eval":{"_internalId":149191,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":149192,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"fig-align":{"_internalId":149193,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"output":{"_internalId":149194,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":149195,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":149196,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":149197,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":149198,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":149199,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":149200,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":149201,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":149202,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":149203,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"order":{"_internalId":149204,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":149205,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":149206,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":149207,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":149208,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":149209,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":149210,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":149211,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":149212,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":149213,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":149214,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":149215,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":149216,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":149217,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":149218,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":149219,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":149220,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":149221,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":149222,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":149223,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":149224,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":149225,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":149226,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":149227,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":149228,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":149228,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":149229,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":149230,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":149231,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":149232,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":149233,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":149234,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":149235,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":149236,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":149237,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":149238,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":149239,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":149240,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":149241,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":149242,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":149243,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":149244,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":149245,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":149246,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":149247,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":149248,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":149249,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":149250,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":149251,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":149252,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":149253,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":149254,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":149255,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"page-width":{"_internalId":149256,"type":"ref","$ref":"quarto-resource-document-layout-page-width","description":"quarto-resource-document-layout-page-width"},"grid":{"_internalId":149257,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"keywords":{"_internalId":149258,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":149259,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"description":{"_internalId":149260,"type":"ref","$ref":"quarto-resource-document-metadata-description","description":"quarto-resource-document-metadata-description"},"number-sections":{"_internalId":149261,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":149262,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"reference-doc":{"_internalId":149263,"type":"ref","$ref":"quarto-resource-document-options-reference-doc","description":"quarto-resource-document-options-reference-doc"},"brand":{"_internalId":149264,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":149265,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":149266,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":149267,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":149268,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":149269,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":149270,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":149270,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":149271,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":149272,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":149273,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":149274,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":149275,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":149276,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":149277,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":149278,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":149279,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":149280,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":149281,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":149282,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":149283,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":149284,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":149285,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":149286,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":149287,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":149288,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"toc":{"_internalId":149289,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":149289,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":149290,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":149291,"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,grid,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":149293,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?opendocument([-+].+)?$":{"_internalId":151893,"type":"anyOf","anyOf":[{"_internalId":151891,"type":"object","description":"be an object","properties":{"eval":{"_internalId":151796,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":151797,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"fig-align":{"_internalId":151798,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"output":{"_internalId":151799,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":151800,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":151801,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":151802,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":151803,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":151804,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":151805,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":151806,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":151807,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":151808,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":151809,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":151810,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":151811,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":151812,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":151813,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":151814,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":151815,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":151816,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":151817,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":151818,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":151819,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":151820,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":151821,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":151822,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":151823,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":151824,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":151825,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":151826,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":151827,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":151828,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":151829,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":151830,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":151831,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":151831,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":151832,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":151833,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":151834,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":151835,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":151836,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":151837,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":151838,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":151839,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":151840,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":151841,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":151842,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":151843,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":151844,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":151845,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":151846,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":151847,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":151848,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":151849,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":151850,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":151851,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":151852,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":151853,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":151854,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":151855,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":151856,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":151857,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":151858,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"page-width":{"_internalId":151859,"type":"ref","$ref":"quarto-resource-document-layout-page-width","description":"quarto-resource-document-layout-page-width"},"grid":{"_internalId":151860,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":151861,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":151862,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":151863,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":151864,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":151865,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":151866,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":151867,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":151868,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":151869,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":151869,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":151870,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":151871,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":151872,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":151873,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":151874,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":151875,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":151876,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":151877,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":151878,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":151879,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":151880,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":151881,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":151882,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":151883,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":151884,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":151885,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":151886,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":151887,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"toc":{"_internalId":151888,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":151888,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":151889,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":151890,"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,grid,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":151892,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?opml([-+].+)?$":{"_internalId":154493,"type":"anyOf","anyOf":[{"_internalId":154491,"type":"object","description":"be an object","properties":{"eval":{"_internalId":154395,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":154396,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":154397,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":154398,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":154399,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":154400,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":154401,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":154402,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":154403,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":154404,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":154405,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":154406,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":154407,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":154408,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":154409,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":154410,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":154411,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":154412,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":154413,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":154414,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":154415,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":154416,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":154417,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":154418,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":154419,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":154420,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":154421,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":154422,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":154423,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":154424,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":154425,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":154426,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":154427,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":154428,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":154429,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":154429,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":154430,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":154431,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":154432,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":154433,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":154434,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":154435,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":154436,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":154437,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":154438,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":154439,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":154440,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":154441,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":154442,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":154443,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":154444,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":154445,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":154446,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":154447,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":154448,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":154449,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":154450,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":154451,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":154452,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":154453,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":154454,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":154455,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":154456,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":154457,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":154458,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":154459,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":154460,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":154461,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":154462,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":154463,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":154464,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":154465,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":154466,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":154466,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":154467,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":154468,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":154469,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":154470,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":154471,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":154472,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":154473,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":154474,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":154475,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":154476,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":154477,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":154478,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":154479,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":154480,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":154481,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":154482,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":154483,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":154484,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":154485,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":154486,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":154487,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":154488,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":154489,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":154489,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":154490,"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,grid,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":154492,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?org([-+].+)?$":{"_internalId":157093,"type":"anyOf","anyOf":[{"_internalId":157091,"type":"object","description":"be an object","properties":{"eval":{"_internalId":156995,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":156996,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":156997,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":156998,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":156999,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":157000,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":157001,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":157002,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":157003,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":157004,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":157005,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":157006,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":157007,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":157008,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":157009,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":157010,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":157011,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":157012,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":157013,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":157014,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":157015,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":157016,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":157017,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":157018,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":157019,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":157020,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":157021,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":157022,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":157023,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":157024,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":157025,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":157026,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":157027,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":157028,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":157029,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":157029,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":157030,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":157031,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":157032,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":157033,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":157034,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":157035,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":157036,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":157037,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":157038,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":157039,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":157040,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":157041,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":157042,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":157043,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":157044,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":157045,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":157046,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":157047,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":157048,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":157049,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":157050,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":157051,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":157052,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":157053,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":157054,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":157055,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":157056,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":157057,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":157058,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":157059,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":157060,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":157061,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":157062,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":157063,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":157064,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":157065,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":157066,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":157066,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":157067,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":157068,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":157069,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":157070,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":157071,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":157072,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":157073,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":157074,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":157075,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":157076,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":157077,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":157078,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":157079,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":157080,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":157081,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":157082,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":157083,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":157084,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":157085,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":157086,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":157087,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":157088,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":157089,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":157089,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":157090,"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,grid,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":157092,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?pdf([-+].+)?$":{"_internalId":159782,"type":"anyOf","anyOf":[{"_internalId":159780,"type":"object","description":"be an object","properties":{"eval":{"_internalId":159595,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":159596,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-line-numbers":{"_internalId":159597,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":159598,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-env":{"_internalId":159599,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":159600,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"cap-location":{"_internalId":159601,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":159602,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":159603,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":159604,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":159605,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":159606,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":159607,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":159608,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":159609,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":159610,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":159611,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":159612,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":159613,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":159614,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"thanks":{"_internalId":159615,"type":"ref","$ref":"quarto-resource-document-attributes-thanks","description":"quarto-resource-document-attributes-thanks"},"order":{"_internalId":159616,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":159617,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":159618,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-block-border-left":{"_internalId":159619,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":159620,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"highlight-style":{"_internalId":159621,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":159622,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":159623,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"listings":{"_internalId":159624,"type":"ref","$ref":"quarto-resource-document-code-listings","description":"quarto-resource-document-code-listings"},"indented-code-classes":{"_internalId":159625,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"linkcolor":{"_internalId":159626,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"filecolor":{"_internalId":159627,"type":"ref","$ref":"quarto-resource-document-colors-filecolor","description":"quarto-resource-document-colors-filecolor"},"citecolor":{"_internalId":159628,"type":"ref","$ref":"quarto-resource-document-colors-citecolor","description":"quarto-resource-document-colors-citecolor"},"urlcolor":{"_internalId":159629,"type":"ref","$ref":"quarto-resource-document-colors-urlcolor","description":"quarto-resource-document-colors-urlcolor"},"toccolor":{"_internalId":159630,"type":"ref","$ref":"quarto-resource-document-colors-toccolor","description":"quarto-resource-document-colors-toccolor"},"colorlinks":{"_internalId":159631,"type":"ref","$ref":"quarto-resource-document-colors-colorlinks","description":"quarto-resource-document-colors-colorlinks"},"crossref":{"_internalId":159632,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":159633,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":159634,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":159635,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":159636,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":159637,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":159638,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":159639,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":159640,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":159641,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":159642,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":159643,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":159644,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":159645,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":159646,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":159647,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":159648,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":159649,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":159650,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":159651,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"mainfont":{"_internalId":159652,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":159653,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":159654,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"fontenc":{"_internalId":159655,"type":"ref","$ref":"quarto-resource-document-fonts-fontenc","description":"quarto-resource-document-fonts-fontenc"},"fontfamily":{"_internalId":159656,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamily","description":"quarto-resource-document-fonts-fontfamily"},"fontfamilyoptions":{"_internalId":159657,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamilyoptions","description":"quarto-resource-document-fonts-fontfamilyoptions"},"sansfont":{"_internalId":159658,"type":"ref","$ref":"quarto-resource-document-fonts-sansfont","description":"quarto-resource-document-fonts-sansfont"},"mathfont":{"_internalId":159659,"type":"ref","$ref":"quarto-resource-document-fonts-mathfont","description":"quarto-resource-document-fonts-mathfont"},"CJKmainfont":{"_internalId":159660,"type":"ref","$ref":"quarto-resource-document-fonts-CJKmainfont","description":"quarto-resource-document-fonts-CJKmainfont"},"mainfontoptions":{"_internalId":159661,"type":"ref","$ref":"quarto-resource-document-fonts-mainfontoptions","description":"quarto-resource-document-fonts-mainfontoptions"},"sansfontoptions":{"_internalId":159662,"type":"ref","$ref":"quarto-resource-document-fonts-sansfontoptions","description":"quarto-resource-document-fonts-sansfontoptions"},"monofontoptions":{"_internalId":159663,"type":"ref","$ref":"quarto-resource-document-fonts-monofontoptions","description":"quarto-resource-document-fonts-monofontoptions"},"mathfontoptions":{"_internalId":159664,"type":"ref","$ref":"quarto-resource-document-fonts-mathfontoptions","description":"quarto-resource-document-fonts-mathfontoptions"},"CJKoptions":{"_internalId":159665,"type":"ref","$ref":"quarto-resource-document-fonts-CJKoptions","description":"quarto-resource-document-fonts-CJKoptions"},"microtypeoptions":{"_internalId":159666,"type":"ref","$ref":"quarto-resource-document-fonts-microtypeoptions","description":"quarto-resource-document-fonts-microtypeoptions"},"linestretch":{"_internalId":159667,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"links-as-notes":{"_internalId":159668,"type":"ref","$ref":"quarto-resource-document-footnotes-links-as-notes","description":"quarto-resource-document-footnotes-links-as-notes"},"reference-location":{"_internalId":159669,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":159670,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":159671,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":159671,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":159672,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":159673,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":159674,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":159675,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":159676,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":159677,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":159678,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":159679,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":159680,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":159681,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":159682,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":159683,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":159684,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":159685,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":159686,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":159687,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":159688,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":159689,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":159690,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":159691,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":159692,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":159693,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":159694,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":159695,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":159696,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":159697,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"shorthands":{"_internalId":159698,"type":"ref","$ref":"quarto-resource-document-language-shorthands","description":"quarto-resource-document-language-shorthands"},"dir":{"_internalId":159699,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"latex-auto-mk":{"_internalId":159700,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-mk","description":"quarto-resource-document-latexmk-latex-auto-mk"},"latex-auto-install":{"_internalId":159701,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-install","description":"quarto-resource-document-latexmk-latex-auto-install"},"latex-min-runs":{"_internalId":159702,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-min-runs","description":"quarto-resource-document-latexmk-latex-min-runs"},"latex-max-runs":{"_internalId":159703,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-max-runs","description":"quarto-resource-document-latexmk-latex-max-runs"},"latex-clean":{"_internalId":159704,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-clean","description":"quarto-resource-document-latexmk-latex-clean"},"latex-makeindex":{"_internalId":159705,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex","description":"quarto-resource-document-latexmk-latex-makeindex"},"latex-makeindex-opts":{"_internalId":159706,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex-opts","description":"quarto-resource-document-latexmk-latex-makeindex-opts"},"latex-tlmgr-opts":{"_internalId":159707,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tlmgr-opts","description":"quarto-resource-document-latexmk-latex-tlmgr-opts"},"latex-output-dir":{"_internalId":159708,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-output-dir","description":"quarto-resource-document-latexmk-latex-output-dir"},"latex-tinytex":{"_internalId":159709,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tinytex","description":"quarto-resource-document-latexmk-latex-tinytex"},"latex-input-paths":{"_internalId":159710,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-input-paths","description":"quarto-resource-document-latexmk-latex-input-paths"},"documentclass":{"_internalId":159711,"type":"ref","$ref":"quarto-resource-document-layout-documentclass","description":"quarto-resource-document-layout-documentclass"},"classoption":{"_internalId":159712,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"pagestyle":{"_internalId":159713,"type":"ref","$ref":"quarto-resource-document-layout-pagestyle","description":"quarto-resource-document-layout-pagestyle"},"papersize":{"_internalId":159714,"type":"ref","$ref":"quarto-resource-document-layout-papersize","description":"quarto-resource-document-layout-papersize"},"grid":{"_internalId":159715,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"margin-left":{"_internalId":159716,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":159717,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":159718,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":159719,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"geometry":{"_internalId":159720,"type":"ref","$ref":"quarto-resource-document-layout-geometry","description":"quarto-resource-document-layout-geometry"},"hyperrefoptions":{"_internalId":159721,"type":"ref","$ref":"quarto-resource-document-layout-hyperrefoptions","description":"quarto-resource-document-layout-hyperrefoptions"},"indent":{"_internalId":159722,"type":"ref","$ref":"quarto-resource-document-layout-indent","description":"quarto-resource-document-layout-indent"},"block-headings":{"_internalId":159723,"type":"ref","$ref":"quarto-resource-document-layout-block-headings","description":"quarto-resource-document-layout-block-headings"},"keywords":{"_internalId":159724,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":159725,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"title-meta":{"_internalId":159726,"type":"ref","$ref":"quarto-resource-document-metadata-title-meta","description":"quarto-resource-document-metadata-title-meta"},"author-meta":{"_internalId":159727,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":159728,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":159729,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":159730,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"secnumdepth":{"_internalId":159731,"type":"ref","$ref":"quarto-resource-document-numbering-secnumdepth","description":"quarto-resource-document-numbering-secnumdepth"},"shift-heading-level-by":{"_internalId":159732,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":159733,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":159734,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"pdf-engine":{"_internalId":159735,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":159736,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":159737,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"beamerarticle":{"_internalId":159738,"type":"ref","$ref":"quarto-resource-document-options-beamerarticle","description":"quarto-resource-document-options-beamerarticle"},"quarto-required":{"_internalId":159739,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":159740,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":159741,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"cite-method":{"_internalId":159742,"type":"ref","$ref":"quarto-resource-document-references-cite-method","description":"quarto-resource-document-references-cite-method"},"citeproc":{"_internalId":159743,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"biblatexoptions":{"_internalId":159744,"type":"ref","$ref":"quarto-resource-document-references-biblatexoptions","description":"quarto-resource-document-references-biblatexoptions"},"natbiboptions":{"_internalId":159745,"type":"ref","$ref":"quarto-resource-document-references-natbiboptions","description":"quarto-resource-document-references-natbiboptions"},"biblio-style":{"_internalId":159746,"type":"ref","$ref":"quarto-resource-document-references-biblio-style","description":"quarto-resource-document-references-biblio-style"},"biblio-title":{"_internalId":159747,"type":"ref","$ref":"quarto-resource-document-references-biblio-title","description":"quarto-resource-document-references-biblio-title"},"biblio-config":{"_internalId":159748,"type":"ref","$ref":"quarto-resource-document-references-biblio-config","description":"quarto-resource-document-references-biblio-config"},"citation-abbreviations":{"_internalId":159749,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"link-citations":{"_internalId":159750,"type":"ref","$ref":"quarto-resource-document-references-link-citations","description":"quarto-resource-document-references-link-citations"},"link-bibliography":{"_internalId":159751,"type":"ref","$ref":"quarto-resource-document-references-link-bibliography","description":"quarto-resource-document-references-link-bibliography"},"notes-after-punctuation":{"_internalId":159752,"type":"ref","$ref":"quarto-resource-document-references-notes-after-punctuation","description":"quarto-resource-document-references-notes-after-punctuation"},"from":{"_internalId":159753,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":159753,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":159754,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":159755,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":159756,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":159757,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":159758,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":159759,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":159760,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":159761,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":159762,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":159763,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":159764,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"keep-tex":{"_internalId":159765,"type":"ref","$ref":"quarto-resource-document-render-keep-tex","description":"quarto-resource-document-render-keep-tex"},"extract-media":{"_internalId":159766,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":159767,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":159768,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":159769,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":159770,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":159771,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"use-rsvg-convert":{"_internalId":159772,"type":"ref","$ref":"quarto-resource-document-render-use-rsvg-convert","description":"quarto-resource-document-render-use-rsvg-convert"},"df-print":{"_internalId":159773,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":159774,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":159775,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":159775,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":159776,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":159777,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"lof":{"_internalId":159778,"type":"ref","$ref":"quarto-resource-document-toc-lof","description":"quarto-resource-document-toc-lof"},"lot":{"_internalId":159779,"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,grid,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":159781,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?plain([-+].+)?$":{"_internalId":162382,"type":"anyOf","anyOf":[{"_internalId":162380,"type":"object","description":"be an object","properties":{"eval":{"_internalId":162284,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":162285,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":162286,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":162287,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":162288,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":162289,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":162290,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":162291,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":162292,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":162293,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":162294,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":162295,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":162296,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":162297,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":162298,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":162299,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":162300,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":162301,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":162302,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":162303,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":162304,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":162305,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":162306,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":162307,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":162308,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":162309,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":162310,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":162311,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":162312,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":162313,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":162314,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":162315,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":162316,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":162317,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":162318,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":162318,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":162319,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":162320,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":162321,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":162322,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":162323,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":162324,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":162325,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":162326,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":162327,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":162328,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":162329,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":162330,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":162331,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":162332,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":162333,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":162334,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":162335,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":162336,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":162337,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":162338,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":162339,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":162340,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":162341,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":162342,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":162343,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":162344,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":162345,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":162346,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":162347,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":162348,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":162349,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":162350,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":162351,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":162352,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":162353,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":162354,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":162355,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":162355,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":162356,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":162357,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":162358,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":162359,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":162360,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":162361,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":162362,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":162363,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":162364,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":162365,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":162366,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":162367,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":162368,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":162369,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":162370,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":162371,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":162372,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":162373,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":162374,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":162375,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":162376,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":162377,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":162378,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":162378,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":162379,"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,grid,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":162381,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?pptx([-+].+)?$":{"_internalId":164978,"type":"anyOf","anyOf":[{"_internalId":164976,"type":"object","description":"be an object","properties":{"eval":{"_internalId":164884,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":164885,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":164886,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":164887,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":164888,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":164889,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":164890,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":164891,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":164892,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":164893,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":164894,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":164895,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":164896,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":164897,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":164898,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":164899,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":164900,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":164901,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":164902,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":164903,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":164904,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":164905,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":164906,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":164907,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":164908,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":164909,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":164910,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":164911,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":164912,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":164913,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":164914,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":164915,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":164916,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":164917,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":164918,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":164918,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":164919,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":164920,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":164921,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":164922,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":164923,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":164924,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":164925,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":164926,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":164927,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":164928,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":164929,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":164930,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":164931,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":164932,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":164933,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":164934,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":164935,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":164936,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":164937,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":164938,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":164939,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":164940,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"keywords":{"_internalId":164941,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":164942,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"description":{"_internalId":164943,"type":"ref","$ref":"quarto-resource-document-metadata-description","description":"quarto-resource-document-metadata-description"},"category":{"_internalId":164944,"type":"ref","$ref":"quarto-resource-document-metadata-category","description":"quarto-resource-document-metadata-category"},"number-sections":{"_internalId":164945,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":164946,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"reference-doc":{"_internalId":164947,"type":"ref","$ref":"quarto-resource-document-options-reference-doc","description":"quarto-resource-document-options-reference-doc"},"brand":{"_internalId":164948,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":164949,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":164950,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":164951,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":164952,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":164953,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":164954,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":164954,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":164955,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":164956,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"filters":{"_internalId":164957,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":164958,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":164959,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":164960,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":164961,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":164962,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":164963,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":164964,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":164965,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":164966,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":164967,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":164968,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":164969,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"incremental":{"_internalId":164970,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":164971,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":164972,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"toc":{"_internalId":164973,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":164973,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":164974,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":164975,"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,grid,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":164977,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?revealjs([-+].+)?$":{"_internalId":167710,"type":"anyOf","anyOf":[{"_internalId":167708,"type":"object","description":"be an object","properties":{"eval":{"_internalId":167480,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":167481,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":167482,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":167483,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":167484,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":167485,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":167486,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":167487,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":167488,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":167489,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":167490,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":167491,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":167492,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":167493,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":167494,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":167495,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":167496,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":167497,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":167498,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":167499,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":167500,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"order":{"_internalId":167501,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":167502,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":167503,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":167504,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":167505,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":167506,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":167507,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":167508,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":167509,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"comments":{"_internalId":167510,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":167511,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":167512,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":167513,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":167514,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":167515,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":167516,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":167517,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":167518,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":167519,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":167520,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":167521,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":167522,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":167523,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":167524,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":167525,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":167526,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":167527,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":167528,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":167529,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":167530,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":167531,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":167532,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":167533,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":167534,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":167535,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":167536,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":167536,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":167537,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":167538,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":167539,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":167540,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":167541,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":167542,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":167543,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":167544,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":167545,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":167546,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":167547,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":167548,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":167549,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":167550,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":167551,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":167552,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":167553,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":167554,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":167555,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":167556,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":167557,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":167558,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":167559,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":167560,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":167561,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":167562,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":167563,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":167564,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":167565,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"brand-mode":{"_internalId":167566,"type":"ref","$ref":"quarto-resource-document-layout-brand-mode","description":"quarto-resource-document-layout-brand-mode"},"grid":{"_internalId":167567,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"max-width":{"_internalId":167568,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":167569,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":167570,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":167571,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":167572,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"revealjs-url":{"_internalId":167573,"type":"ref","$ref":"quarto-resource-document-library-revealjs-url","description":"quarto-resource-document-library-revealjs-url"},"link-external-icon":{"_internalId":167574,"type":"ref","$ref":"quarto-resource-document-links-link-external-icon","description":"quarto-resource-document-links-link-external-icon"},"link-external-newwindow":{"_internalId":167575,"type":"ref","$ref":"quarto-resource-document-links-link-external-newwindow","description":"quarto-resource-document-links-link-external-newwindow"},"link-external-filter":{"_internalId":167576,"type":"ref","$ref":"quarto-resource-document-links-link-external-filter","description":"quarto-resource-document-links-link-external-filter"},"mermaid":{"_internalId":167577,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":167578,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":167579,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":167580,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":167581,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":167582,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":167583,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":167584,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":167585,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":167586,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":167587,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":167588,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":167589,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":167590,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"document-css":{"_internalId":167591,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":167592,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":167593,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":167594,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":167595,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":167596,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":167597,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":167598,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":167599,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":167600,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":167601,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":167602,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":167602,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":167603,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":167604,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":167605,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":167606,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":167607,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":167608,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":167609,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":167610,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":167611,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":167612,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":167613,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":167614,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":167615,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":167616,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":167617,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":167618,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":167619,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":167620,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":167621,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":167622,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"logo":{"_internalId":167623,"type":"ref","$ref":"quarto-resource-document-reveal-content-logo","description":"quarto-resource-document-reveal-content-logo"},"footer":{"_internalId":167624,"type":"ref","$ref":"quarto-resource-document-reveal-content-footer","description":"quarto-resource-document-reveal-content-footer"},"scrollable":{"_internalId":167625,"type":"ref","$ref":"quarto-resource-document-reveal-content-scrollable","description":"quarto-resource-document-reveal-content-scrollable"},"smaller":{"_internalId":167626,"type":"ref","$ref":"quarto-resource-document-reveal-content-smaller","description":"quarto-resource-document-reveal-content-smaller"},"output-location":{"_internalId":167627,"type":"ref","$ref":"quarto-resource-document-reveal-content-output-location","description":"quarto-resource-document-reveal-content-output-location"},"embedded":{"_internalId":167628,"type":"ref","$ref":"quarto-resource-document-reveal-hidden-embedded","description":"quarto-resource-document-reveal-hidden-embedded"},"display":{"_internalId":167629,"type":"ref","$ref":"quarto-resource-document-reveal-hidden-display","description":"quarto-resource-document-reveal-hidden-display"},"auto-stretch":{"_internalId":167630,"type":"ref","$ref":"quarto-resource-document-reveal-layout-auto-stretch","description":"quarto-resource-document-reveal-layout-auto-stretch"},"width":{"_internalId":167631,"type":"ref","$ref":"quarto-resource-document-reveal-layout-width","description":"quarto-resource-document-reveal-layout-width"},"height":{"_internalId":167632,"type":"ref","$ref":"quarto-resource-document-reveal-layout-height","description":"quarto-resource-document-reveal-layout-height"},"margin":{"_internalId":167633,"type":"ref","$ref":"quarto-resource-document-reveal-layout-margin","description":"quarto-resource-document-reveal-layout-margin"},"min-scale":{"_internalId":167634,"type":"ref","$ref":"quarto-resource-document-reveal-layout-min-scale","description":"quarto-resource-document-reveal-layout-min-scale"},"max-scale":{"_internalId":167635,"type":"ref","$ref":"quarto-resource-document-reveal-layout-max-scale","description":"quarto-resource-document-reveal-layout-max-scale"},"center":{"_internalId":167636,"type":"ref","$ref":"quarto-resource-document-reveal-layout-center","description":"quarto-resource-document-reveal-layout-center"},"disable-layout":{"_internalId":167637,"type":"ref","$ref":"quarto-resource-document-reveal-layout-disable-layout","description":"quarto-resource-document-reveal-layout-disable-layout"},"code-block-height":{"_internalId":167638,"type":"ref","$ref":"quarto-resource-document-reveal-layout-code-block-height","description":"quarto-resource-document-reveal-layout-code-block-height"},"preview-links":{"_internalId":167639,"type":"ref","$ref":"quarto-resource-document-reveal-media-preview-links","description":"quarto-resource-document-reveal-media-preview-links"},"auto-play-media":{"_internalId":167640,"type":"ref","$ref":"quarto-resource-document-reveal-media-auto-play-media","description":"quarto-resource-document-reveal-media-auto-play-media"},"preload-iframes":{"_internalId":167641,"type":"ref","$ref":"quarto-resource-document-reveal-media-preload-iframes","description":"quarto-resource-document-reveal-media-preload-iframes"},"view-distance":{"_internalId":167642,"type":"ref","$ref":"quarto-resource-document-reveal-media-view-distance","description":"quarto-resource-document-reveal-media-view-distance"},"mobile-view-distance":{"_internalId":167643,"type":"ref","$ref":"quarto-resource-document-reveal-media-mobile-view-distance","description":"quarto-resource-document-reveal-media-mobile-view-distance"},"parallax-background-image":{"_internalId":167644,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-image","description":"quarto-resource-document-reveal-media-parallax-background-image"},"parallax-background-size":{"_internalId":167645,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-size","description":"quarto-resource-document-reveal-media-parallax-background-size"},"parallax-background-horizontal":{"_internalId":167646,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-horizontal","description":"quarto-resource-document-reveal-media-parallax-background-horizontal"},"parallax-background-vertical":{"_internalId":167647,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-vertical","description":"quarto-resource-document-reveal-media-parallax-background-vertical"},"progress":{"_internalId":167648,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-progress","description":"quarto-resource-document-reveal-navigation-progress"},"history":{"_internalId":167649,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-history","description":"quarto-resource-document-reveal-navigation-history"},"navigation-mode":{"_internalId":167650,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-navigation-mode","description":"quarto-resource-document-reveal-navigation-navigation-mode"},"touch":{"_internalId":167651,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-touch","description":"quarto-resource-document-reveal-navigation-touch"},"keyboard":{"_internalId":167652,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-keyboard","description":"quarto-resource-document-reveal-navigation-keyboard"},"mouse-wheel":{"_internalId":167653,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-mouse-wheel","description":"quarto-resource-document-reveal-navigation-mouse-wheel"},"hide-inactive-cursor":{"_internalId":167654,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hide-inactive-cursor","description":"quarto-resource-document-reveal-navigation-hide-inactive-cursor"},"hide-cursor-time":{"_internalId":167655,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hide-cursor-time","description":"quarto-resource-document-reveal-navigation-hide-cursor-time"},"loop":{"_internalId":167656,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-loop","description":"quarto-resource-document-reveal-navigation-loop"},"shuffle":{"_internalId":167657,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-shuffle","description":"quarto-resource-document-reveal-navigation-shuffle"},"controls":{"_internalId":167658,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls","description":"quarto-resource-document-reveal-navigation-controls"},"controls-layout":{"_internalId":167659,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-layout","description":"quarto-resource-document-reveal-navigation-controls-layout"},"controls-tutorial":{"_internalId":167660,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-tutorial","description":"quarto-resource-document-reveal-navigation-controls-tutorial"},"controls-back-arrows":{"_internalId":167661,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-back-arrows","description":"quarto-resource-document-reveal-navigation-controls-back-arrows"},"auto-slide":{"_internalId":167662,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide","description":"quarto-resource-document-reveal-navigation-auto-slide"},"auto-slide-stoppable":{"_internalId":167663,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide-stoppable","description":"quarto-resource-document-reveal-navigation-auto-slide-stoppable"},"auto-slide-method":{"_internalId":167664,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide-method","description":"quarto-resource-document-reveal-navigation-auto-slide-method"},"default-timing":{"_internalId":167665,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-default-timing","description":"quarto-resource-document-reveal-navigation-default-timing"},"pause":{"_internalId":167666,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-pause","description":"quarto-resource-document-reveal-navigation-pause"},"help":{"_internalId":167667,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-help","description":"quarto-resource-document-reveal-navigation-help"},"hash":{"_internalId":167668,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hash","description":"quarto-resource-document-reveal-navigation-hash"},"hash-type":{"_internalId":167669,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hash-type","description":"quarto-resource-document-reveal-navigation-hash-type"},"hash-one-based-index":{"_internalId":167670,"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":167671,"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":167672,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-fragment-in-url","description":"quarto-resource-document-reveal-navigation-fragment-in-url"},"slide-tone":{"_internalId":167673,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-slide-tone","description":"quarto-resource-document-reveal-navigation-slide-tone"},"jump-to-slide":{"_internalId":167674,"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":167675,"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":167676,"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":167677,"type":"ref","$ref":"quarto-resource-document-reveal-print-pdf-page-height-offset","description":"quarto-resource-document-reveal-print-pdf-page-height-offset"},"overview":{"_internalId":167678,"type":"ref","$ref":"quarto-resource-document-reveal-tools-overview","description":"quarto-resource-document-reveal-tools-overview"},"menu":{"_internalId":167679,"type":"ref","$ref":"quarto-resource-document-reveal-tools-menu","description":"quarto-resource-document-reveal-tools-menu"},"chalkboard":{"_internalId":167680,"type":"ref","$ref":"quarto-resource-document-reveal-tools-chalkboard","description":"quarto-resource-document-reveal-tools-chalkboard"},"multiplex":{"_internalId":167681,"type":"ref","$ref":"quarto-resource-document-reveal-tools-multiplex","description":"quarto-resource-document-reveal-tools-multiplex"},"scroll-view":{"_internalId":167682,"type":"ref","$ref":"quarto-resource-document-reveal-tools-scroll-view","description":"quarto-resource-document-reveal-tools-scroll-view"},"transition":{"_internalId":167683,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-transition","description":"quarto-resource-document-reveal-transitions-transition"},"transition-speed":{"_internalId":167684,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-transition-speed","description":"quarto-resource-document-reveal-transitions-transition-speed"},"background-transition":{"_internalId":167685,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-background-transition","description":"quarto-resource-document-reveal-transitions-background-transition"},"fragments":{"_internalId":167686,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-fragments","description":"quarto-resource-document-reveal-transitions-fragments"},"auto-animate":{"_internalId":167687,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate","description":"quarto-resource-document-reveal-transitions-auto-animate"},"auto-animate-easing":{"_internalId":167688,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-easing","description":"quarto-resource-document-reveal-transitions-auto-animate-easing"},"auto-animate-duration":{"_internalId":167689,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-duration","description":"quarto-resource-document-reveal-transitions-auto-animate-duration"},"auto-animate-unmatched":{"_internalId":167690,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-unmatched","description":"quarto-resource-document-reveal-transitions-auto-animate-unmatched"},"auto-animate-styles":{"_internalId":167691,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-styles","description":"quarto-resource-document-reveal-transitions-auto-animate-styles"},"incremental":{"_internalId":167692,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":167693,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"slide-number":{"_internalId":167694,"type":"ref","$ref":"quarto-resource-document-slides-slide-number","description":"quarto-resource-document-slides-slide-number"},"show-slide-number":{"_internalId":167695,"type":"ref","$ref":"quarto-resource-document-slides-show-slide-number","description":"quarto-resource-document-slides-show-slide-number"},"title-slide-attributes":{"_internalId":167696,"type":"ref","$ref":"quarto-resource-document-slides-title-slide-attributes","description":"quarto-resource-document-slides-title-slide-attributes"},"title-slide-style":{"_internalId":167697,"type":"ref","$ref":"quarto-resource-document-slides-title-slide-style","description":"quarto-resource-document-slides-title-slide-style"},"center-title-slide":{"_internalId":167698,"type":"ref","$ref":"quarto-resource-document-slides-center-title-slide","description":"quarto-resource-document-slides-center-title-slide"},"show-notes":{"_internalId":167699,"type":"ref","$ref":"quarto-resource-document-slides-show-notes","description":"quarto-resource-document-slides-show-notes"},"rtl":{"_internalId":167700,"type":"ref","$ref":"quarto-resource-document-slides-rtl","description":"quarto-resource-document-slides-rtl"},"df-print":{"_internalId":167701,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":167702,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":167703,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":167704,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":167704,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":167705,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":167706,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"axe":{"_internalId":167707,"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,grid,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":167709,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?rst([-+].+)?$":{"_internalId":170311,"type":"anyOf","anyOf":[{"_internalId":170309,"type":"object","description":"be an object","properties":{"eval":{"_internalId":170212,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":170213,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":170214,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":170215,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":170216,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":170217,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":170218,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":170219,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":170220,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":170221,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":170222,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":170223,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":170224,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":170225,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":170226,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":170227,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":170228,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":170229,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":170230,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":170231,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":170232,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":170233,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":170234,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":170235,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":170236,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":170237,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":170238,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":170239,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":170240,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":170241,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":170242,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":170243,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":170244,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"list-tables":{"_internalId":170245,"type":"ref","$ref":"quarto-resource-document-formatting-list-tables","description":"quarto-resource-document-formatting-list-tables"},"funding":{"_internalId":170246,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":170247,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":170247,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":170248,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":170249,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":170250,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":170251,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":170252,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":170253,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":170254,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":170255,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":170256,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":170257,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":170258,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":170259,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":170260,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":170261,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":170262,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":170263,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":170264,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":170265,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":170266,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":170267,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":170268,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":170269,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":170270,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":170271,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":170272,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":170273,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":170274,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":170275,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":170276,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":170277,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":170278,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":170279,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":170280,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":170281,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":170282,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":170283,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":170284,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":170284,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":170285,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":170286,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":170287,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":170288,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":170289,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":170290,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":170291,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":170292,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":170293,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":170294,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":170295,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":170296,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":170297,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":170298,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":170299,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":170300,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":170301,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":170302,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":170303,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":170304,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":170305,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":170306,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":170307,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":170307,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":170308,"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,grid,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":170310,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?rtf([-+].+)?$":{"_internalId":172912,"type":"anyOf","anyOf":[{"_internalId":172910,"type":"object","description":"be an object","properties":{"eval":{"_internalId":172813,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":172814,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"fig-align":{"_internalId":172815,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"output":{"_internalId":172816,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":172817,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":172818,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":172819,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":172820,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":172821,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":172822,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":172823,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":172824,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":172825,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":172826,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":172827,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":172828,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":172829,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":172830,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":172831,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":172832,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":172833,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":172834,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":172835,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":172836,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":172837,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":172838,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":172839,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":172840,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":172841,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":172842,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":172843,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":172844,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":172845,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":172846,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":172847,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":172848,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":172848,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":172849,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":172850,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":172851,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":172852,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":172853,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":172854,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":172855,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":172856,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":172857,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":172858,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":172859,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":172860,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":172861,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":172862,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":172863,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":172864,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":172865,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":172866,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":172867,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":172868,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":172869,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":172870,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":172871,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":172872,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":172873,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":172874,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":172875,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":172876,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":172877,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":172878,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":172879,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":172880,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":172881,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":172882,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":172883,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":172884,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":172885,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":172885,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":172886,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":172887,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":172888,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":172889,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":172890,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":172891,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":172892,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":172893,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":172894,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":172895,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":172896,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":172897,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":172898,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":172899,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":172900,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":172901,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":172902,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":172903,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":172904,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":172905,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":172906,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":172907,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":172908,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":172908,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":172909,"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,grid,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":172911,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?s5([-+].+)?$":{"_internalId":175563,"type":"anyOf","anyOf":[{"_internalId":175561,"type":"object","description":"be an object","properties":{"eval":{"_internalId":175414,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":175415,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":175416,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":175417,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":175418,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":175419,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":175420,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":175421,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":175422,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":175423,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":175424,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":175425,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":175426,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":175427,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":175428,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":175429,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":175430,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":175431,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":175432,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":175433,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":175434,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"order":{"_internalId":175435,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":175436,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":175437,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":175438,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":175439,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":175440,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":175441,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":175442,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":175443,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"monobackgroundcolor":{"_internalId":175444,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"comments":{"_internalId":175445,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":175446,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":175447,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":175448,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":175449,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":175450,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":175451,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":175452,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":175453,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":175454,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":175455,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":175456,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":175457,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":175458,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":175459,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":175460,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":175461,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":175462,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":175463,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":175464,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":175465,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":175466,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":175467,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":175468,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":175469,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":175470,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":175471,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":175471,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":175472,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":175473,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":175474,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":175475,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":175476,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":175477,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":175478,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":175479,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":175480,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":175481,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":175482,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":175483,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":175484,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":175485,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":175486,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":175487,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":175488,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":175489,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":175490,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":175491,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":175492,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":175493,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":175494,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":175495,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":175496,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":175497,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":175498,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":175499,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":175500,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"grid":{"_internalId":175501,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"max-width":{"_internalId":175502,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":175503,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":175504,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":175505,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":175506,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"s5-url":{"_internalId":175507,"type":"ref","$ref":"quarto-resource-document-library-s5-url","description":"quarto-resource-document-library-s5-url"},"mermaid":{"_internalId":175508,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":175509,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":175510,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":175511,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":175512,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":175513,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":175514,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":175515,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":175516,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":175517,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":175518,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":175519,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":175520,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"document-css":{"_internalId":175521,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":175522,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":175523,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":175524,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":175525,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":175526,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":175527,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":175528,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":175529,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":175530,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":175531,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":175532,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":175532,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":175533,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":175534,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":175535,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":175536,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":175537,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":175538,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":175539,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":175540,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":175541,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":175542,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":175543,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":175544,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":175545,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":175546,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":175547,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":175548,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":175549,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":175550,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":175551,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":175552,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"incremental":{"_internalId":175553,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":175554,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":175555,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":175556,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":175557,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":175558,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":175558,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":175559,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"axe":{"_internalId":175560,"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,grid,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":175562,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?slideous([-+].+)?$":{"_internalId":178214,"type":"anyOf","anyOf":[{"_internalId":178212,"type":"object","description":"be an object","properties":{"eval":{"_internalId":178065,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":178066,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":178067,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":178068,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":178069,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":178070,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":178071,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":178072,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":178073,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":178074,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":178075,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":178076,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":178077,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":178078,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":178079,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":178080,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":178081,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":178082,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":178083,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":178084,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":178085,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"order":{"_internalId":178086,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":178087,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":178088,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":178089,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":178090,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":178091,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":178092,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":178093,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":178094,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"monobackgroundcolor":{"_internalId":178095,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"comments":{"_internalId":178096,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":178097,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":178098,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":178099,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":178100,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":178101,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":178102,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":178103,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":178104,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":178105,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":178106,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":178107,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":178108,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":178109,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":178110,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":178111,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":178112,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":178113,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":178114,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":178115,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":178116,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":178117,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":178118,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":178119,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":178120,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":178121,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":178122,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":178122,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":178123,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":178124,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":178125,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":178126,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":178127,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":178128,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":178129,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":178130,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":178131,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":178132,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":178133,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":178134,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":178135,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":178136,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":178137,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":178138,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":178139,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":178140,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":178141,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":178142,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":178143,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":178144,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":178145,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":178146,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":178147,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":178148,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":178149,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":178150,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":178151,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"grid":{"_internalId":178152,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"max-width":{"_internalId":178153,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":178154,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":178155,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":178156,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":178157,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"slideous-url":{"_internalId":178158,"type":"ref","$ref":"quarto-resource-document-library-slideous-url","description":"quarto-resource-document-library-slideous-url"},"mermaid":{"_internalId":178159,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":178160,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":178161,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":178162,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":178163,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":178164,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":178165,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":178166,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":178167,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":178168,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":178169,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":178170,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":178171,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"document-css":{"_internalId":178172,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":178173,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":178174,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":178175,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":178176,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":178177,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":178178,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":178179,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":178180,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":178181,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":178182,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":178183,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":178183,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":178184,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":178185,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":178186,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":178187,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":178188,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":178189,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":178190,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":178191,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":178192,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":178193,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":178194,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":178195,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":178196,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":178197,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":178198,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":178199,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":178200,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":178201,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":178202,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":178203,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"incremental":{"_internalId":178204,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":178205,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":178206,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":178207,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":178208,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":178209,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":178209,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":178210,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"axe":{"_internalId":178211,"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,grid,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":178213,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?slidy([-+].+)?$":{"_internalId":180865,"type":"anyOf","anyOf":[{"_internalId":180863,"type":"object","description":"be an object","properties":{"eval":{"_internalId":180716,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":180717,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":180718,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":180719,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":180720,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":180721,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":180722,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":180723,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":180724,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":180725,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":180726,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":180727,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":180728,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":180729,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":180730,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":180731,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":180732,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":180733,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":180734,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":180735,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":180736,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"order":{"_internalId":180737,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":180738,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":180739,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":180740,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":180741,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":180742,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":180743,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":180744,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":180745,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"monobackgroundcolor":{"_internalId":180746,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"comments":{"_internalId":180747,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":180748,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":180749,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":180750,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":180751,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":180752,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":180753,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":180754,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":180755,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":180756,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":180757,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":180758,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":180759,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":180760,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":180761,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":180762,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":180763,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":180764,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":180765,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":180766,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":180767,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":180768,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":180769,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":180770,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":180771,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":180772,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":180773,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":180773,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":180774,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":180775,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":180776,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":180777,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":180778,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":180779,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":180780,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":180781,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":180782,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":180783,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":180784,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":180785,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":180786,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":180787,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":180788,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":180789,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":180790,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":180791,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":180792,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":180793,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":180794,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":180795,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":180796,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":180797,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":180798,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":180799,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":180800,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":180801,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":180802,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"grid":{"_internalId":180803,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"max-width":{"_internalId":180804,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":180805,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":180806,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":180807,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":180808,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"slidy-url":{"_internalId":180809,"type":"ref","$ref":"quarto-resource-document-library-slidy-url","description":"quarto-resource-document-library-slidy-url"},"mermaid":{"_internalId":180810,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":180811,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":180812,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":180813,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":180814,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":180815,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":180816,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":180817,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":180818,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":180819,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":180820,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":180821,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":180822,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"document-css":{"_internalId":180823,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":180824,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":180825,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":180826,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":180827,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":180828,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":180829,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":180830,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":180831,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":180832,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":180833,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":180834,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":180834,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":180835,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":180836,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":180837,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":180838,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":180839,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":180840,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":180841,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":180842,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":180843,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":180844,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":180845,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":180846,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":180847,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":180848,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":180849,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":180850,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":180851,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":180852,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":180853,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":180854,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"incremental":{"_internalId":180855,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":180856,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":180857,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":180858,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":180859,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":180860,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":180860,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":180861,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"axe":{"_internalId":180862,"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,grid,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":180864,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?tei([-+].+)?$":{"_internalId":183466,"type":"anyOf","anyOf":[{"_internalId":183464,"type":"object","description":"be an object","properties":{"eval":{"_internalId":183367,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":183368,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":183369,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":183370,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":183371,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":183372,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":183373,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":183374,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":183375,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":183376,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":183377,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":183378,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":183379,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":183380,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":183381,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":183382,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":183383,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":183384,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":183385,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":183386,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":183387,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":183388,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":183389,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":183390,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":183391,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":183392,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":183393,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":183394,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":183395,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":183396,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":183397,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":183398,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":183399,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":183400,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":183401,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":183401,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":183402,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":183403,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":183404,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":183405,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":183406,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":183407,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":183408,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":183409,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":183410,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":183411,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":183412,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":183413,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":183414,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":183415,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":183416,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":183417,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":183418,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":183419,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":183420,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":183421,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":183422,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":183423,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":183424,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":183425,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":183426,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":183427,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":183428,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":183429,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":183430,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":183431,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":183432,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":183433,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":183434,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":183435,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":183436,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":183437,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":183438,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":183439,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":183439,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":183440,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":183441,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":183442,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":183443,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":183444,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":183445,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":183446,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":183447,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":183448,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":183449,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":183450,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":183451,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":183452,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":183453,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":183454,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":183455,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":183456,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":183457,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":183458,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":183459,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":183460,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":183461,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":183462,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":183462,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":183463,"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,grid,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":183465,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?texinfo([-+].+)?$":{"_internalId":186066,"type":"anyOf","anyOf":[{"_internalId":186064,"type":"object","description":"be an object","properties":{"eval":{"_internalId":185968,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":185969,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":185970,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":185971,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":185972,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":185973,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":185974,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":185975,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":185976,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":185977,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":185978,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":185979,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":185980,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":185981,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":185982,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":185983,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":185984,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":185985,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":185986,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":185987,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":185988,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":185989,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":185990,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":185991,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":185992,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":185993,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":185994,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":185995,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":185996,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":185997,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":185998,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":185999,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":186000,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":186001,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":186002,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":186002,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":186003,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":186004,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":186005,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":186006,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":186007,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":186008,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":186009,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":186010,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":186011,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":186012,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":186013,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":186014,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":186015,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":186016,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":186017,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":186018,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":186019,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":186020,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":186021,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":186022,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":186023,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":186024,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":186025,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":186026,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":186027,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":186028,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":186029,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":186030,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":186031,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":186032,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":186033,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":186034,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":186035,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":186036,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":186037,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":186038,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":186039,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":186039,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":186040,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":186041,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":186042,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":186043,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":186044,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":186045,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":186046,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":186047,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":186048,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":186049,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":186050,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":186051,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":186052,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":186053,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":186054,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":186055,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":186056,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":186057,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":186058,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":186059,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":186060,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":186061,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":186062,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":186062,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":186063,"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,grid,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":186065,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?textile([-+].+)?$":{"_internalId":188667,"type":"anyOf","anyOf":[{"_internalId":188665,"type":"object","description":"be an object","properties":{"eval":{"_internalId":188568,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":188569,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":188570,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":188571,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":188572,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":188573,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":188574,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":188575,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":188576,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":188577,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":188578,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":188579,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":188580,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":188581,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":188582,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":188583,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":188584,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":188585,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":188586,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":188587,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":188588,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":188589,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":188590,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":188591,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":188592,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":188593,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":188594,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":188595,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":188596,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":188597,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":188598,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":188599,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":188600,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":188601,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":188602,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":188602,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":188603,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":188604,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":188605,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":188606,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":188607,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":188608,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":188609,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":188610,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":188611,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":188612,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":188613,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":188614,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":188615,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":188616,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":188617,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":188618,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":188619,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":188620,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":188621,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":188622,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":188623,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":188624,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":188625,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":188626,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":188627,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":188628,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":188629,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":188630,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":188631,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":188632,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":188633,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":188634,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":188635,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":188636,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":188637,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":188638,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":188639,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":188639,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":188640,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":188641,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":188642,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":188643,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":188644,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":188645,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":188646,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":188647,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":188648,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":188649,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":188650,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":188651,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":188652,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":188653,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":188654,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":188655,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":188656,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":188657,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":188658,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":188659,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":188660,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":188661,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":188662,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"toc":{"_internalId":188663,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":188663,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":188664,"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,grid,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":188666,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?typst([-+].+)?$":{"_internalId":191282,"type":"anyOf","anyOf":[{"_internalId":191280,"type":"object","description":"be an object","properties":{"eval":{"_internalId":191169,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":191170,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":191171,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":191172,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":191173,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":191174,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":191175,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":191176,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":191177,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":191178,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract-title":{"_internalId":191179,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"order":{"_internalId":191180,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":191181,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":191182,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":191183,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":191184,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":191185,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":191186,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":191187,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":191188,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":191189,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":191190,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":191191,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":191192,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":191193,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":191194,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":191195,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":191196,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":191197,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":191198,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":191199,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":191200,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":191201,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":191202,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"mainfont":{"_internalId":191203,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"fontsize":{"_internalId":191204,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"font-paths":{"_internalId":191205,"type":"ref","$ref":"quarto-resource-document-fonts-font-paths","description":"quarto-resource-document-fonts-font-paths"},"funding":{"_internalId":191206,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":191207,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":191207,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":191208,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":191209,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":191210,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":191211,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":191212,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":191213,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":191214,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":191215,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":191216,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":191217,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":191218,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":191219,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":191220,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":191221,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":191222,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":191223,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":191224,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":191225,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":191226,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":191227,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":191228,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":191229,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":191230,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":191231,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":191232,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":191233,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":191234,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"papersize":{"_internalId":191235,"type":"ref","$ref":"quarto-resource-document-layout-papersize","description":"quarto-resource-document-layout-papersize"},"brand-mode":{"_internalId":191236,"type":"ref","$ref":"quarto-resource-document-layout-brand-mode","description":"quarto-resource-document-layout-brand-mode"},"grid":{"_internalId":191237,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":191238,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"section-numbering":{"_internalId":191239,"type":"ref","$ref":"quarto-resource-document-numbering-section-numbering","description":"quarto-resource-document-numbering-section-numbering"},"shift-heading-level-by":{"_internalId":191240,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":191241,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":191242,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":191243,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":191244,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":191245,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"bibliographystyle":{"_internalId":191246,"type":"ref","$ref":"quarto-resource-document-references-bibliographystyle","description":"quarto-resource-document-references-bibliographystyle"},"citation-abbreviations":{"_internalId":191247,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":191248,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":191248,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":191249,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":191250,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":191251,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":191252,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":191253,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":191254,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":191255,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":191256,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":191257,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":191258,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":191259,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"keep-typ":{"_internalId":191260,"type":"ref","$ref":"quarto-resource-document-render-keep-typ","description":"quarto-resource-document-render-keep-typ"},"extract-media":{"_internalId":191261,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":191262,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":191263,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":191264,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":191265,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":191266,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"html-pre-tag-processing":{"_internalId":191267,"type":"ref","$ref":"quarto-resource-document-render-html-pre-tag-processing","description":"quarto-resource-document-render-html-pre-tag-processing"},"css-property-processing":{"_internalId":191268,"type":"ref","$ref":"quarto-resource-document-render-css-property-processing","description":"quarto-resource-document-render-css-property-processing"},"margin":{"_internalId":191269,"type":"ref","$ref":"quarto-resource-document-reveal-layout-margin","description":"quarto-resource-document-reveal-layout-margin"},"df-print":{"_internalId":191270,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":191271,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"columns":{"_internalId":191272,"type":"ref","$ref":"quarto-resource-document-text-columns","description":"quarto-resource-document-text-columns"},"tab-stop":{"_internalId":191273,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":191274,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":191275,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":191276,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":191276,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-indent":{"_internalId":191277,"type":"ref","$ref":"quarto-resource-document-toc-toc-indent","description":"quarto-resource-document-toc-toc-indent"},"toc-depth":{"_internalId":191278,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"logo":{"_internalId":191279,"type":"ref","$ref":"quarto-resource-document-typst-logo","description":"quarto-resource-document-typst-logo"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,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,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,brand,quarto-required,bibliography,csl,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","type":"string","pattern":"(?!(^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$|^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$|^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$|^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$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":191281,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?vimdoc([-+].+)?$":{"_internalId":193882,"type":"anyOf","anyOf":[{"_internalId":193880,"type":"object","description":"be an object","properties":{"eval":{"_internalId":193784,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":193785,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":193786,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":193787,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":193788,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":193789,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":193790,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":193791,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":193792,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":193793,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":193794,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":193795,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":193796,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":193797,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":193798,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":193799,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":193800,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":193801,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":193802,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":193803,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":193804,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":193805,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":193806,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":193807,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":193808,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":193809,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":193810,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":193811,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":193812,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":193813,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":193814,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":193815,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":193816,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":193817,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":193818,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":193818,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":193819,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":193820,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":193821,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":193822,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":193823,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":193824,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":193825,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":193826,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":193827,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":193828,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":193829,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":193830,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":193831,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":193832,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":193833,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":193834,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":193835,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":193836,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":193837,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":193838,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":193839,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":193840,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":193841,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":193842,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":193843,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":193844,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":193845,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":193846,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":193847,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":193848,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":193849,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":193850,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":193851,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":193852,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":193853,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":193854,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":193855,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":193855,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":193856,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":193857,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":193858,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":193859,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":193860,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":193861,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":193862,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":193863,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":193864,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":193865,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":193866,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":193867,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":193868,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":193869,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":193870,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":193871,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":193872,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":193873,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":193874,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":193875,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":193876,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":193877,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":193878,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":193878,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":193879,"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,grid,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":193881,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?xml([-+].+)?$":{"_internalId":196482,"type":"anyOf","anyOf":[{"_internalId":196480,"type":"object","description":"be an object","properties":{"eval":{"_internalId":196384,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":196385,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":196386,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":196387,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":196388,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":196389,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":196390,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":196391,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":196392,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":196393,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":196394,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":196395,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":196396,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":196397,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":196398,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":196399,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":196400,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":196401,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":196402,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":196403,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":196404,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":196405,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":196406,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":196407,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":196408,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":196409,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":196410,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":196411,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":196412,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":196413,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":196414,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":196415,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":196416,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":196417,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":196418,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":196418,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":196419,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":196420,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":196421,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":196422,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":196423,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":196424,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":196425,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":196426,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":196427,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":196428,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":196429,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":196430,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":196431,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":196432,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":196433,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":196434,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":196435,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":196436,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":196437,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":196438,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":196439,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":196440,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":196441,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":196442,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":196443,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":196444,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":196445,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":196446,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":196447,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":196448,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":196449,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":196450,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":196451,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":196452,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":196453,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":196454,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":196455,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":196455,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":196456,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":196457,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":196458,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":196459,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":196460,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":196461,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":196462,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":196463,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":196464,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":196465,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":196466,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":196467,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":196468,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":196469,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":196470,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":196471,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":196472,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":196473,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":196474,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":196475,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":196476,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":196477,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":196478,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":196478,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":196479,"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,grid,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":196481,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?xwiki([-+].+)?$":{"_internalId":199082,"type":"anyOf","anyOf":[{"_internalId":199080,"type":"object","description":"be an object","properties":{"eval":{"_internalId":198984,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":198985,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":198986,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":198987,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":198988,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":198989,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":198990,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":198991,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":198992,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":198993,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":198994,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":198995,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":198996,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":198997,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":198998,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":198999,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":199000,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":199001,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":199002,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":199003,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":199004,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":199005,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":199006,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":199007,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":199008,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":199009,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":199010,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":199011,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":199012,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":199013,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":199014,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":199015,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":199016,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":199017,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":199018,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":199018,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":199019,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":199020,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":199021,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":199022,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":199023,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":199024,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":199025,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":199026,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":199027,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":199028,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":199029,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":199030,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":199031,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":199032,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":199033,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":199034,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":199035,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":199036,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":199037,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":199038,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":199039,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":199040,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":199041,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":199042,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":199043,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":199044,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":199045,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":199046,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":199047,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":199048,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":199049,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":199050,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":199051,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":199052,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":199053,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":199054,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":199055,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":199055,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":199056,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":199057,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":199058,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":199059,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":199060,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":199061,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":199062,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":199063,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":199064,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":199065,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":199066,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":199067,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":199068,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":199069,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":199070,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":199071,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":199072,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":199073,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":199074,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":199075,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":199076,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":199077,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":199078,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":199078,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":199079,"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,grid,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":199081,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?zimwiki([-+].+)?$":{"_internalId":201682,"type":"anyOf","anyOf":[{"_internalId":201680,"type":"object","description":"be an object","properties":{"eval":{"_internalId":201584,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":201585,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":201586,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":201587,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":201588,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":201589,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":201590,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":201591,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":201592,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":201593,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":201594,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":201595,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":201596,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":201597,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":201598,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":201599,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":201600,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":201601,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":201602,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":201603,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":201604,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":201605,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":201606,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":201607,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":201608,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":201609,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":201610,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":201611,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":201612,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":201613,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":201614,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":201615,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":201616,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":201617,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":201618,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":201618,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":201619,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":201620,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":201621,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":201622,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":201623,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":201624,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":201625,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":201626,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":201627,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":201628,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":201629,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":201630,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":201631,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":201632,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":201633,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":201634,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":201635,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":201636,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":201637,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":201638,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":201639,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":201640,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":201641,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":201642,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":201643,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":201644,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":201645,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":201646,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":201647,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":201648,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":201649,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":201650,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":201651,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":201652,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":201653,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":201654,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":201655,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":201655,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":201656,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":201657,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":201658,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":201659,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":201660,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":201661,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":201662,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":201663,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":201664,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":201665,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":201666,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":201667,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":201668,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":201669,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":201670,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":201671,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":201672,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":201673,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":201674,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":201675,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":201676,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":201677,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":201678,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":201678,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":201679,"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,grid,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":201681,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?md([-+].+)?$":{"_internalId":204289,"type":"anyOf","anyOf":[{"_internalId":204287,"type":"object","description":"be an object","properties":{"eval":{"_internalId":204184,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":204185,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":204186,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":204187,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":204188,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":204189,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":204190,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":204191,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":204192,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":204193,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":204194,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":204195,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":204196,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":204197,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":204198,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":204199,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":204200,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":204201,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":204202,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":204203,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":204204,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":204205,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":204206,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":204207,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":204208,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":204209,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":204210,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":204211,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":204212,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":204213,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":204214,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":204215,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":204216,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":204217,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":204218,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":204219,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":204219,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":204220,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":204221,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":204222,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":204223,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":204224,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":204225,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":204226,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":204227,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":204228,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":204229,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":204230,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":204231,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":204232,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":204233,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":204234,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":204235,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":204236,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":204237,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":204238,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":204239,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":204240,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":204241,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":204242,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":204243,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":204244,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":204245,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":204246,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":204247,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":204248,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":204249,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":204250,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":204251,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":204252,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":204253,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":204254,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":204255,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":204256,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":204257,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":204258,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":204259,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":204260,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":204260,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":204261,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":204262,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":204263,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":204264,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":204265,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":204266,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":204267,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":204268,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":204269,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":204270,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":204271,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":204272,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":204273,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":204274,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":204275,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":204276,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":204277,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":204278,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":204279,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":204280,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":204281,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":204282,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":204283,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":204284,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":204285,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":204285,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":204286,"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,grid,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":204288,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?hugo([-+].+)?$":{"_internalId":206889,"type":"anyOf","anyOf":[{"_internalId":206887,"type":"object","description":"be an object","properties":{"eval":{"_internalId":206791,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":206792,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":206793,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":206794,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":206795,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":206796,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":206797,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":206798,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":206799,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":206800,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":206801,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":206802,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":206803,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":206804,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":206805,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":206806,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":206807,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":206808,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":206809,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":206810,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":206811,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":206812,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":206813,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":206814,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":206815,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":206816,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":206817,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":206818,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":206819,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":206820,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":206821,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":206822,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":206823,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":206824,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":206825,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":206825,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":206826,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":206827,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":206828,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":206829,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":206830,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":206831,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":206832,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":206833,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":206834,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":206835,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":206836,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":206837,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":206838,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":206839,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":206840,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":206841,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":206842,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":206843,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":206844,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":206845,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":206846,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":206847,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":206848,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":206849,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":206850,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":206851,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":206852,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":206853,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":206854,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":206855,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":206856,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":206857,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":206858,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":206859,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":206860,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":206861,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":206862,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":206862,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":206863,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":206864,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":206865,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":206866,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":206867,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":206868,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":206869,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":206870,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":206871,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":206872,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":206873,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":206874,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":206875,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":206876,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":206877,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":206878,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":206879,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":206880,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":206881,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":206882,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":206883,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":206884,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":206885,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":206885,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":206886,"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,grid,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":206888,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?dashboard([-+].+)?$":{"_internalId":209541,"type":"anyOf","anyOf":[{"_internalId":209539,"type":"object","description":"be an object","properties":{"eval":{"_internalId":209391,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":209392,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":209393,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":209394,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":209395,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":209396,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":209397,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":209398,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":209399,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":209400,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":209401,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":209402,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":209403,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":209404,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":209405,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":209406,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":209407,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":209408,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":209409,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":209410,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":209411,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":209412,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":209413,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":209414,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":209415,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":209416,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":209417,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":209418,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":209419,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"comments":{"_internalId":209420,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":209421,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":209422,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"logo":{"_internalId":209423,"type":"ref","$ref":"quarto-resource-document-dashboard-logo","description":"quarto-resource-document-dashboard-logo"},"orientation":{"_internalId":209424,"type":"ref","$ref":"quarto-resource-document-dashboard-orientation","description":"quarto-resource-document-dashboard-orientation"},"scrolling":{"_internalId":209425,"type":"ref","$ref":"quarto-resource-document-dashboard-scrolling","description":"quarto-resource-document-dashboard-scrolling"},"expandable":{"_internalId":209426,"type":"ref","$ref":"quarto-resource-document-dashboard-expandable","description":"quarto-resource-document-dashboard-expandable"},"nav-buttons":{"_internalId":209427,"type":"ref","$ref":"quarto-resource-document-dashboard-nav-buttons","description":"quarto-resource-document-dashboard-nav-buttons"},"editor":{"_internalId":209428,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":209429,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":209430,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":209431,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":209432,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":209433,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":209434,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":209435,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":209436,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":209437,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":209438,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":209439,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":209440,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":209441,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":209442,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":209443,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":209444,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":209445,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":209446,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":209447,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":209448,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":209449,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":209450,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":209451,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":209451,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":209452,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":209453,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":209454,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":209455,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":209456,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":209457,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":209458,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":209459,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":209460,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":209461,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":209462,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":209463,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":209464,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":209465,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":209466,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":209467,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":209468,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":209469,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":209470,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":209471,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":209472,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":209473,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":209474,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":209475,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":209476,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":209477,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":209478,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":209479,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":209480,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"grid":{"_internalId":209481,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"max-width":{"_internalId":209482,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":209483,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":209484,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":209485,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":209486,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"mermaid":{"_internalId":209487,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":209488,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":209489,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":209490,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":209491,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":209492,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":209493,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":209494,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":209495,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":209496,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":209497,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":209498,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":209499,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":209500,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"document-css":{"_internalId":209501,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":209502,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":209503,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":209504,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":209505,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":209506,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":209507,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":209508,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":209509,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":209510,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":209511,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":209512,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":209512,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":209513,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":209514,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":209515,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":209516,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":209517,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":209518,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":209519,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":209520,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":209521,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":209522,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":209523,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":209524,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":209525,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":209526,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":209527,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":209528,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":209529,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":209530,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":209531,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":209532,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":209533,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":209534,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":209535,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":209536,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":209536,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":209537,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"axe":{"_internalId":209538,"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,grid,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":209540,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?email([-+].+)?$":{"_internalId":212141,"type":"anyOf","anyOf":[{"_internalId":212139,"type":"object","description":"be an object","properties":{"eval":{"_internalId":212043,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":212044,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":212045,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":212046,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":212047,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":212048,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":212049,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":212050,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":212051,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":212052,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":212053,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":212054,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":212055,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":212056,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":212057,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":212058,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":212059,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":212060,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":212061,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":212062,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":212063,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":212064,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":212065,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":212066,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":212067,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":212068,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":212069,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":212070,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":212071,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":212072,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":212073,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":212074,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":212075,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":212076,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":212077,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":212077,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":212078,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":212079,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":212080,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":212081,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":212082,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":212083,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":212084,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":212085,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":212086,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":212087,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":212088,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":212089,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":212090,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":212091,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":212092,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":212093,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":212094,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":212095,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":212096,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":212097,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":212098,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":212099,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":212100,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":212101,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":212102,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":212103,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":212104,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":212105,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":212106,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":212107,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":212108,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":212109,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":212110,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":212111,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":212112,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":212113,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":212114,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":212114,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":212115,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":212116,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":212117,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":212118,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":212119,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":212120,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":212121,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":212122,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":212123,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":212124,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":212125,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":212126,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":212127,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":212128,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":212129,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":212130,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":212131,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":212132,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":212133,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":212134,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":212135,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":212136,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":212137,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":212137,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":212138,"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,grid,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":212140,"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":212671,"type":"anyOf","anyOf":[{"type":"null","description":"be the null value","completions":["null"],"exhaustiveCompletions":true},{"_internalId":212670,"type":"allOf","allOf":[{"_internalId":212228,"type":"object","description":"be a Quarto YAML front matter object","properties":{"execute":{"_internalId":5526,"type":"ref","$ref":"front-matter-execute","description":"be a front-matter-execute object"},"format":{"_internalId":212227,"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":212668,"type":"object","description":"be an object","properties":{"eval":{"_internalId":212229,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":212230,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":212231,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":212232,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":212233,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":212234,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":212235,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-env":{"_internalId":212236,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":212237,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"cap-location":{"_internalId":212238,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":212239,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":212240,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":212241,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":212242,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":212243,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":212244,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":212245,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"about":{"_internalId":212246,"type":"ref","$ref":"quarto-resource-document-about-about","description":"quarto-resource-document-about-about"},"title":{"_internalId":212247,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":212248,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":212249,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":212250,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"date-modified":{"_internalId":212251,"type":"ref","$ref":"quarto-resource-document-attributes-date-modified","description":"quarto-resource-document-attributes-date-modified"},"author":{"_internalId":212252,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"affiliation":{"_internalId":212253,"type":"ref","$ref":"quarto-resource-document-attributes-affiliation","description":"quarto-resource-document-attributes-affiliation"},"copyright":{"_internalId":212461,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"article":{"_internalId":212255,"type":"ref","$ref":"quarto-resource-document-attributes-article","description":"quarto-resource-document-attributes-article"},"journal":{"_internalId":212256,"type":"ref","$ref":"quarto-resource-document-attributes-journal","description":"quarto-resource-document-attributes-journal"},"institute":{"_internalId":212257,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"abstract":{"_internalId":212258,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":212259,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"notes":{"_internalId":212260,"type":"ref","$ref":"quarto-resource-document-attributes-notes","description":"quarto-resource-document-attributes-notes"},"tags":{"_internalId":212261,"type":"ref","$ref":"quarto-resource-document-attributes-tags","description":"quarto-resource-document-attributes-tags"},"doi":{"_internalId":212262,"type":"ref","$ref":"quarto-resource-document-attributes-doi","description":"quarto-resource-document-attributes-doi"},"thanks":{"_internalId":212263,"type":"ref","$ref":"quarto-resource-document-attributes-thanks","description":"quarto-resource-document-attributes-thanks"},"order":{"_internalId":212264,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":212265,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":212266,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":212267,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":212268,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-tools":{"_internalId":212269,"type":"ref","$ref":"quarto-resource-document-code-code-tools","description":"quarto-resource-document-code-code-tools"},"code-block-border-left":{"_internalId":212270,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":212271,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"highlight-style":{"_internalId":212272,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":212273,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":212274,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"listings":{"_internalId":212275,"type":"ref","$ref":"quarto-resource-document-code-listings","description":"quarto-resource-document-code-listings"},"indented-code-classes":{"_internalId":212276,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"fontcolor":{"_internalId":212277,"type":"ref","$ref":"quarto-resource-document-colors-fontcolor","description":"quarto-resource-document-colors-fontcolor"},"linkcolor":{"_internalId":212278,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"monobackgroundcolor":{"_internalId":212279,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"backgroundcolor":{"_internalId":212280,"type":"ref","$ref":"quarto-resource-document-colors-backgroundcolor","description":"quarto-resource-document-colors-backgroundcolor"},"filecolor":{"_internalId":212281,"type":"ref","$ref":"quarto-resource-document-colors-filecolor","description":"quarto-resource-document-colors-filecolor"},"citecolor":{"_internalId":212282,"type":"ref","$ref":"quarto-resource-document-colors-citecolor","description":"quarto-resource-document-colors-citecolor"},"urlcolor":{"_internalId":212283,"type":"ref","$ref":"quarto-resource-document-colors-urlcolor","description":"quarto-resource-document-colors-urlcolor"},"toccolor":{"_internalId":212284,"type":"ref","$ref":"quarto-resource-document-colors-toccolor","description":"quarto-resource-document-colors-toccolor"},"colorlinks":{"_internalId":212285,"type":"ref","$ref":"quarto-resource-document-colors-colorlinks","description":"quarto-resource-document-colors-colorlinks"},"contrastcolor":{"_internalId":212286,"type":"ref","$ref":"quarto-resource-document-colors-contrastcolor","description":"quarto-resource-document-colors-contrastcolor"},"comments":{"_internalId":212287,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":212288,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":212289,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"logo":{"_internalId":212667,"type":"ref","$ref":"quarto-resource-document-typst-logo","description":"quarto-resource-document-typst-logo"},"orientation":{"_internalId":212291,"type":"ref","$ref":"quarto-resource-document-dashboard-orientation","description":"quarto-resource-document-dashboard-orientation"},"scrolling":{"_internalId":212292,"type":"ref","$ref":"quarto-resource-document-dashboard-scrolling","description":"quarto-resource-document-dashboard-scrolling"},"expandable":{"_internalId":212293,"type":"ref","$ref":"quarto-resource-document-dashboard-expandable","description":"quarto-resource-document-dashboard-expandable"},"nav-buttons":{"_internalId":212294,"type":"ref","$ref":"quarto-resource-document-dashboard-nav-buttons","description":"quarto-resource-document-dashboard-nav-buttons"},"editor":{"_internalId":212295,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":212296,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"identifier":{"_internalId":212297,"type":"ref","$ref":"quarto-resource-document-epub-identifier","description":"quarto-resource-document-epub-identifier"},"creator":{"_internalId":212298,"type":"ref","$ref":"quarto-resource-document-epub-creator","description":"quarto-resource-document-epub-creator"},"contributor":{"_internalId":212299,"type":"ref","$ref":"quarto-resource-document-epub-contributor","description":"quarto-resource-document-epub-contributor"},"subject":{"_internalId":212458,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"type":{"_internalId":212301,"type":"ref","$ref":"quarto-resource-document-epub-type","description":"quarto-resource-document-epub-type"},"relation":{"_internalId":212302,"type":"ref","$ref":"quarto-resource-document-epub-relation","description":"quarto-resource-document-epub-relation"},"coverage":{"_internalId":212303,"type":"ref","$ref":"quarto-resource-document-epub-coverage","description":"quarto-resource-document-epub-coverage"},"rights":{"_internalId":212304,"type":"ref","$ref":"quarto-resource-document-epub-rights","description":"quarto-resource-document-epub-rights"},"belongs-to-collection":{"_internalId":212305,"type":"ref","$ref":"quarto-resource-document-epub-belongs-to-collection","description":"quarto-resource-document-epub-belongs-to-collection"},"group-position":{"_internalId":212306,"type":"ref","$ref":"quarto-resource-document-epub-group-position","description":"quarto-resource-document-epub-group-position"},"page-progression-direction":{"_internalId":212307,"type":"ref","$ref":"quarto-resource-document-epub-page-progression-direction","description":"quarto-resource-document-epub-page-progression-direction"},"ibooks":{"_internalId":212308,"type":"ref","$ref":"quarto-resource-document-epub-ibooks","description":"quarto-resource-document-epub-ibooks"},"epub-metadata":{"_internalId":212309,"type":"ref","$ref":"quarto-resource-document-epub-epub-metadata","description":"quarto-resource-document-epub-epub-metadata"},"epub-subdirectory":{"_internalId":212310,"type":"ref","$ref":"quarto-resource-document-epub-epub-subdirectory","description":"quarto-resource-document-epub-epub-subdirectory"},"epub-fonts":{"_internalId":212311,"type":"ref","$ref":"quarto-resource-document-epub-epub-fonts","description":"quarto-resource-document-epub-epub-fonts"},"epub-chapter-level":{"_internalId":212312,"type":"ref","$ref":"quarto-resource-document-epub-epub-chapter-level","description":"quarto-resource-document-epub-epub-chapter-level"},"epub-cover-image":{"_internalId":212313,"type":"ref","$ref":"quarto-resource-document-epub-epub-cover-image","description":"quarto-resource-document-epub-epub-cover-image"},"epub-title-page":{"_internalId":212314,"type":"ref","$ref":"quarto-resource-document-epub-epub-title-page","description":"quarto-resource-document-epub-epub-title-page"},"engine":{"_internalId":212315,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":212316,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":212317,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":212318,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":212319,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":212320,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":212321,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":212322,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":212323,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":212324,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":212325,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":212326,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":212327,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":212328,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":212329,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":212330,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":212331,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":212332,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"mainfont":{"_internalId":212333,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":212334,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":212335,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"fontenc":{"_internalId":212336,"type":"ref","$ref":"quarto-resource-document-fonts-fontenc","description":"quarto-resource-document-fonts-fontenc"},"fontfamily":{"_internalId":212337,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamily","description":"quarto-resource-document-fonts-fontfamily"},"fontfamilyoptions":{"_internalId":212338,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamilyoptions","description":"quarto-resource-document-fonts-fontfamilyoptions"},"sansfont":{"_internalId":212339,"type":"ref","$ref":"quarto-resource-document-fonts-sansfont","description":"quarto-resource-document-fonts-sansfont"},"mathfont":{"_internalId":212340,"type":"ref","$ref":"quarto-resource-document-fonts-mathfont","description":"quarto-resource-document-fonts-mathfont"},"CJKmainfont":{"_internalId":212341,"type":"ref","$ref":"quarto-resource-document-fonts-CJKmainfont","description":"quarto-resource-document-fonts-CJKmainfont"},"mainfontoptions":{"_internalId":212342,"type":"ref","$ref":"quarto-resource-document-fonts-mainfontoptions","description":"quarto-resource-document-fonts-mainfontoptions"},"sansfontoptions":{"_internalId":212343,"type":"ref","$ref":"quarto-resource-document-fonts-sansfontoptions","description":"quarto-resource-document-fonts-sansfontoptions"},"monofontoptions":{"_internalId":212344,"type":"ref","$ref":"quarto-resource-document-fonts-monofontoptions","description":"quarto-resource-document-fonts-monofontoptions"},"mathfontoptions":{"_internalId":212345,"type":"ref","$ref":"quarto-resource-document-fonts-mathfontoptions","description":"quarto-resource-document-fonts-mathfontoptions"},"font-paths":{"_internalId":212346,"type":"ref","$ref":"quarto-resource-document-fonts-font-paths","description":"quarto-resource-document-fonts-font-paths"},"CJKoptions":{"_internalId":212347,"type":"ref","$ref":"quarto-resource-document-fonts-CJKoptions","description":"quarto-resource-document-fonts-CJKoptions"},"microtypeoptions":{"_internalId":212348,"type":"ref","$ref":"quarto-resource-document-fonts-microtypeoptions","description":"quarto-resource-document-fonts-microtypeoptions"},"pointsize":{"_internalId":212349,"type":"ref","$ref":"quarto-resource-document-fonts-pointsize","description":"quarto-resource-document-fonts-pointsize"},"lineheight":{"_internalId":212350,"type":"ref","$ref":"quarto-resource-document-fonts-lineheight","description":"quarto-resource-document-fonts-lineheight"},"linestretch":{"_internalId":212351,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"interlinespace":{"_internalId":212352,"type":"ref","$ref":"quarto-resource-document-fonts-interlinespace","description":"quarto-resource-document-fonts-interlinespace"},"linkstyle":{"_internalId":212353,"type":"ref","$ref":"quarto-resource-document-fonts-linkstyle","description":"quarto-resource-document-fonts-linkstyle"},"whitespace":{"_internalId":212354,"type":"ref","$ref":"quarto-resource-document-fonts-whitespace","description":"quarto-resource-document-fonts-whitespace"},"footnotes-hover":{"_internalId":212355,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"links-as-notes":{"_internalId":212356,"type":"ref","$ref":"quarto-resource-document-footnotes-links-as-notes","description":"quarto-resource-document-footnotes-links-as-notes"},"reference-location":{"_internalId":212357,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"indenting":{"_internalId":212358,"type":"ref","$ref":"quarto-resource-document-formatting-indenting","description":"quarto-resource-document-formatting-indenting"},"adjusting":{"_internalId":212359,"type":"ref","$ref":"quarto-resource-document-formatting-adjusting","description":"quarto-resource-document-formatting-adjusting"},"hyphenate":{"_internalId":212360,"type":"ref","$ref":"quarto-resource-document-formatting-hyphenate","description":"quarto-resource-document-formatting-hyphenate"},"list-tables":{"_internalId":212361,"type":"ref","$ref":"quarto-resource-document-formatting-list-tables","description":"quarto-resource-document-formatting-list-tables"},"split-level":{"_internalId":212362,"type":"ref","$ref":"quarto-resource-document-formatting-split-level","description":"quarto-resource-document-formatting-split-level"},"funding":{"_internalId":212363,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":212364,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":212364,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":212365,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":212366,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":212367,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":212368,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":212369,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":212370,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":212371,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":212372,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":212373,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":212374,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":212375,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":212376,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":212377,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":212378,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"track-changes":{"_internalId":212379,"type":"ref","$ref":"quarto-resource-document-hidden-track-changes","description":"quarto-resource-document-hidden-track-changes"},"keep-source":{"_internalId":212380,"type":"ref","$ref":"quarto-resource-document-hidden-keep-source","description":"quarto-resource-document-hidden-keep-source"},"keep-hidden":{"_internalId":212381,"type":"ref","$ref":"quarto-resource-document-hidden-keep-hidden","description":"quarto-resource-document-hidden-keep-hidden"},"prefer-html":{"_internalId":212382,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":212383,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":212384,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":212385,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":212386,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":212387,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":212388,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":212389,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":212390,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":212391,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"headertext":{"_internalId":212392,"type":"ref","$ref":"quarto-resource-document-includes-headertext","description":"quarto-resource-document-includes-headertext"},"footertext":{"_internalId":212393,"type":"ref","$ref":"quarto-resource-document-includes-footertext","description":"quarto-resource-document-includes-footertext"},"includesource":{"_internalId":212394,"type":"ref","$ref":"quarto-resource-document-includes-includesource","description":"quarto-resource-document-includes-includesource"},"footer":{"_internalId":212565,"type":"ref","$ref":"quarto-resource-document-reveal-content-footer","description":"quarto-resource-document-reveal-content-footer"},"header":{"_internalId":212396,"type":"ref","$ref":"quarto-resource-document-includes-header","description":"quarto-resource-document-includes-header"},"metadata-file":{"_internalId":212397,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":212398,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":212399,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":212400,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"shorthands":{"_internalId":212401,"type":"ref","$ref":"quarto-resource-document-language-shorthands","description":"quarto-resource-document-language-shorthands"},"dir":{"_internalId":212402,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"latex-auto-mk":{"_internalId":212403,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-mk","description":"quarto-resource-document-latexmk-latex-auto-mk"},"latex-auto-install":{"_internalId":212404,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-install","description":"quarto-resource-document-latexmk-latex-auto-install"},"latex-min-runs":{"_internalId":212405,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-min-runs","description":"quarto-resource-document-latexmk-latex-min-runs"},"latex-max-runs":{"_internalId":212406,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-max-runs","description":"quarto-resource-document-latexmk-latex-max-runs"},"latex-clean":{"_internalId":212407,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-clean","description":"quarto-resource-document-latexmk-latex-clean"},"latex-makeindex":{"_internalId":212408,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex","description":"quarto-resource-document-latexmk-latex-makeindex"},"latex-makeindex-opts":{"_internalId":212409,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex-opts","description":"quarto-resource-document-latexmk-latex-makeindex-opts"},"latex-tlmgr-opts":{"_internalId":212410,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tlmgr-opts","description":"quarto-resource-document-latexmk-latex-tlmgr-opts"},"latex-output-dir":{"_internalId":212411,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-output-dir","description":"quarto-resource-document-latexmk-latex-output-dir"},"latex-tinytex":{"_internalId":212412,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tinytex","description":"quarto-resource-document-latexmk-latex-tinytex"},"latex-input-paths":{"_internalId":212413,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-input-paths","description":"quarto-resource-document-latexmk-latex-input-paths"},"documentclass":{"_internalId":212414,"type":"ref","$ref":"quarto-resource-document-layout-documentclass","description":"quarto-resource-document-layout-documentclass"},"classoption":{"_internalId":212415,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"pagestyle":{"_internalId":212416,"type":"ref","$ref":"quarto-resource-document-layout-pagestyle","description":"quarto-resource-document-layout-pagestyle"},"papersize":{"_internalId":212417,"type":"ref","$ref":"quarto-resource-document-layout-papersize","description":"quarto-resource-document-layout-papersize"},"brand-mode":{"_internalId":212418,"type":"ref","$ref":"quarto-resource-document-layout-brand-mode","description":"quarto-resource-document-layout-brand-mode"},"layout":{"_internalId":212419,"type":"ref","$ref":"quarto-resource-document-layout-layout","description":"quarto-resource-document-layout-layout"},"page-layout":{"_internalId":212420,"type":"ref","$ref":"quarto-resource-document-layout-page-layout","description":"quarto-resource-document-layout-page-layout"},"page-width":{"_internalId":212421,"type":"ref","$ref":"quarto-resource-document-layout-page-width","description":"quarto-resource-document-layout-page-width"},"grid":{"_internalId":212422,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"appendix-style":{"_internalId":212423,"type":"ref","$ref":"quarto-resource-document-layout-appendix-style","description":"quarto-resource-document-layout-appendix-style"},"appendix-cite-as":{"_internalId":212424,"type":"ref","$ref":"quarto-resource-document-layout-appendix-cite-as","description":"quarto-resource-document-layout-appendix-cite-as"},"title-block-style":{"_internalId":212425,"type":"ref","$ref":"quarto-resource-document-layout-title-block-style","description":"quarto-resource-document-layout-title-block-style"},"title-block-banner":{"_internalId":212426,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner","description":"quarto-resource-document-layout-title-block-banner"},"title-block-banner-color":{"_internalId":212427,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner-color","description":"quarto-resource-document-layout-title-block-banner-color"},"title-block-categories":{"_internalId":212428,"type":"ref","$ref":"quarto-resource-document-layout-title-block-categories","description":"quarto-resource-document-layout-title-block-categories"},"max-width":{"_internalId":212429,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":212430,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":212431,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":212432,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":212433,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"geometry":{"_internalId":212434,"type":"ref","$ref":"quarto-resource-document-layout-geometry","description":"quarto-resource-document-layout-geometry"},"hyperrefoptions":{"_internalId":212435,"type":"ref","$ref":"quarto-resource-document-layout-hyperrefoptions","description":"quarto-resource-document-layout-hyperrefoptions"},"indent":{"_internalId":212436,"type":"ref","$ref":"quarto-resource-document-layout-indent","description":"quarto-resource-document-layout-indent"},"block-headings":{"_internalId":212437,"type":"ref","$ref":"quarto-resource-document-layout-block-headings","description":"quarto-resource-document-layout-block-headings"},"revealjs-url":{"_internalId":212438,"type":"ref","$ref":"quarto-resource-document-library-revealjs-url","description":"quarto-resource-document-library-revealjs-url"},"s5-url":{"_internalId":212439,"type":"ref","$ref":"quarto-resource-document-library-s5-url","description":"quarto-resource-document-library-s5-url"},"slidy-url":{"_internalId":212440,"type":"ref","$ref":"quarto-resource-document-library-slidy-url","description":"quarto-resource-document-library-slidy-url"},"slideous-url":{"_internalId":212441,"type":"ref","$ref":"quarto-resource-document-library-slideous-url","description":"quarto-resource-document-library-slideous-url"},"lightbox":{"_internalId":212442,"type":"ref","$ref":"quarto-resource-document-lightbox-lightbox","description":"quarto-resource-document-lightbox-lightbox"},"link-external-icon":{"_internalId":212443,"type":"ref","$ref":"quarto-resource-document-links-link-external-icon","description":"quarto-resource-document-links-link-external-icon"},"link-external-newwindow":{"_internalId":212444,"type":"ref","$ref":"quarto-resource-document-links-link-external-newwindow","description":"quarto-resource-document-links-link-external-newwindow"},"link-external-filter":{"_internalId":212445,"type":"ref","$ref":"quarto-resource-document-links-link-external-filter","description":"quarto-resource-document-links-link-external-filter"},"format-links":{"_internalId":212446,"type":"ref","$ref":"quarto-resource-document-links-format-links","description":"quarto-resource-document-links-format-links"},"notebook-links":{"_internalId":212447,"type":"ref","$ref":"quarto-resource-document-links-notebook-links","description":"quarto-resource-document-links-notebook-links"},"other-links":{"_internalId":212448,"type":"ref","$ref":"quarto-resource-document-links-other-links","description":"quarto-resource-document-links-other-links"},"code-links":{"_internalId":212449,"type":"ref","$ref":"quarto-resource-document-links-code-links","description":"quarto-resource-document-links-code-links"},"notebook-subarticles":{"_internalId":212450,"type":"ref","$ref":"quarto-resource-document-links-notebook-subarticles","description":"quarto-resource-document-links-notebook-subarticles"},"notebook-view":{"_internalId":212451,"type":"ref","$ref":"quarto-resource-document-links-notebook-view","description":"quarto-resource-document-links-notebook-view"},"notebook-view-style":{"_internalId":212452,"type":"ref","$ref":"quarto-resource-document-links-notebook-view-style","description":"quarto-resource-document-links-notebook-view-style"},"notebook-preview-options":{"_internalId":212453,"type":"ref","$ref":"quarto-resource-document-links-notebook-preview-options","description":"quarto-resource-document-links-notebook-preview-options"},"canonical-url":{"_internalId":212454,"type":"ref","$ref":"quarto-resource-document-links-canonical-url","description":"quarto-resource-document-links-canonical-url"},"listing":{"_internalId":212455,"type":"ref","$ref":"quarto-resource-document-listing-listing","description":"quarto-resource-document-listing-listing"},"mermaid":{"_internalId":212456,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":212457,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"description":{"_internalId":212459,"type":"ref","$ref":"quarto-resource-document-metadata-description","description":"quarto-resource-document-metadata-description"},"category":{"_internalId":212460,"type":"ref","$ref":"quarto-resource-document-metadata-category","description":"quarto-resource-document-metadata-category"},"license":{"_internalId":212462,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"title-meta":{"_internalId":212463,"type":"ref","$ref":"quarto-resource-document-metadata-title-meta","description":"quarto-resource-document-metadata-title-meta"},"pagetitle":{"_internalId":212464,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":212465,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":212466,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":212467,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":212468,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":212469,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":212470,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"secnumdepth":{"_internalId":212471,"type":"ref","$ref":"quarto-resource-document-numbering-secnumdepth","description":"quarto-resource-document-numbering-secnumdepth"},"number-offset":{"_internalId":212472,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"section-numbering":{"_internalId":212473,"type":"ref","$ref":"quarto-resource-document-numbering-section-numbering","description":"quarto-resource-document-numbering-section-numbering"},"shift-heading-level-by":{"_internalId":212474,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"pagenumbering":{"_internalId":212475,"type":"ref","$ref":"quarto-resource-document-numbering-pagenumbering","description":"quarto-resource-document-numbering-pagenumbering"},"top-level-division":{"_internalId":212476,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"ojs-engine":{"_internalId":212477,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"reference-doc":{"_internalId":212478,"type":"ref","$ref":"quarto-resource-document-options-reference-doc","description":"quarto-resource-document-options-reference-doc"},"brand":{"_internalId":212479,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":212480,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"body-classes":{"_internalId":212481,"type":"ref","$ref":"quarto-resource-document-options-body-classes","description":"quarto-resource-document-options-body-classes"},"minimal":{"_internalId":212482,"type":"ref","$ref":"quarto-resource-document-options-minimal","description":"quarto-resource-document-options-minimal"},"document-css":{"_internalId":212483,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":212484,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"anchor-sections":{"_internalId":212485,"type":"ref","$ref":"quarto-resource-document-options-anchor-sections","description":"quarto-resource-document-options-anchor-sections"},"tabsets":{"_internalId":212486,"type":"ref","$ref":"quarto-resource-document-options-tabsets","description":"quarto-resource-document-options-tabsets"},"smooth-scroll":{"_internalId":212487,"type":"ref","$ref":"quarto-resource-document-options-smooth-scroll","description":"quarto-resource-document-options-smooth-scroll"},"respect-user-color-scheme":{"_internalId":212488,"type":"ref","$ref":"quarto-resource-document-options-respect-user-color-scheme","description":"quarto-resource-document-options-respect-user-color-scheme"},"html-math-method":{"_internalId":212489,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"section-divs":{"_internalId":212490,"type":"ref","$ref":"quarto-resource-document-options-section-divs","description":"quarto-resource-document-options-section-divs"},"identifier-prefix":{"_internalId":212491,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":212492,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":212493,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"pdf-engine":{"_internalId":212494,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":212495,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":212496,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"beamerarticle":{"_internalId":212497,"type":"ref","$ref":"quarto-resource-document-options-beamerarticle","description":"quarto-resource-document-options-beamerarticle"},"beameroption":{"_internalId":212498,"type":"ref","$ref":"quarto-resource-document-options-beameroption","description":"quarto-resource-document-options-beameroption"},"aspectratio":{"_internalId":212499,"type":"ref","$ref":"quarto-resource-document-options-aspectratio","description":"quarto-resource-document-options-aspectratio"},"titlegraphic":{"_internalId":212501,"type":"ref","$ref":"quarto-resource-document-options-titlegraphic","description":"quarto-resource-document-options-titlegraphic"},"navigation":{"_internalId":212502,"type":"ref","$ref":"quarto-resource-document-options-navigation","description":"quarto-resource-document-options-navigation"},"section-titles":{"_internalId":212503,"type":"ref","$ref":"quarto-resource-document-options-section-titles","description":"quarto-resource-document-options-section-titles"},"colortheme":{"_internalId":212504,"type":"ref","$ref":"quarto-resource-document-options-colortheme","description":"quarto-resource-document-options-colortheme"},"colorthemeoptions":{"_internalId":212505,"type":"ref","$ref":"quarto-resource-document-options-colorthemeoptions","description":"quarto-resource-document-options-colorthemeoptions"},"fonttheme":{"_internalId":212506,"type":"ref","$ref":"quarto-resource-document-options-fonttheme","description":"quarto-resource-document-options-fonttheme"},"fontthemeoptions":{"_internalId":212507,"type":"ref","$ref":"quarto-resource-document-options-fontthemeoptions","description":"quarto-resource-document-options-fontthemeoptions"},"innertheme":{"_internalId":212508,"type":"ref","$ref":"quarto-resource-document-options-innertheme","description":"quarto-resource-document-options-innertheme"},"innerthemeoptions":{"_internalId":212509,"type":"ref","$ref":"quarto-resource-document-options-innerthemeoptions","description":"quarto-resource-document-options-innerthemeoptions"},"outertheme":{"_internalId":212510,"type":"ref","$ref":"quarto-resource-document-options-outertheme","description":"quarto-resource-document-options-outertheme"},"outerthemeoptions":{"_internalId":212511,"type":"ref","$ref":"quarto-resource-document-options-outerthemeoptions","description":"quarto-resource-document-options-outerthemeoptions"},"themeoptions":{"_internalId":212512,"type":"ref","$ref":"quarto-resource-document-options-themeoptions","description":"quarto-resource-document-options-themeoptions"},"section":{"_internalId":212513,"type":"ref","$ref":"quarto-resource-document-options-section","description":"quarto-resource-document-options-section"},"variant":{"_internalId":212514,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":212515,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"ipynb-output":{"_internalId":212516,"type":"ref","$ref":"quarto-resource-document-options-ipynb-output","description":"quarto-resource-document-options-ipynb-output"},"quarto-required":{"_internalId":212517,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":212518,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"pdfa":{"_internalId":212519,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfa","description":"quarto-resource-document-pdfa-pdfa"},"pdfaiccprofile":{"_internalId":212520,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfaiccprofile","description":"quarto-resource-document-pdfa-pdfaiccprofile"},"pdfaintent":{"_internalId":212521,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfaintent","description":"quarto-resource-document-pdfa-pdfaintent"},"bibliography":{"_internalId":212522,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":212523,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":212524,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citation-location":{"_internalId":212525,"type":"ref","$ref":"quarto-resource-document-references-citation-location","description":"quarto-resource-document-references-citation-location"},"cite-method":{"_internalId":212526,"type":"ref","$ref":"quarto-resource-document-references-cite-method","description":"quarto-resource-document-references-cite-method"},"citeproc":{"_internalId":212527,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"biblatexoptions":{"_internalId":212528,"type":"ref","$ref":"quarto-resource-document-references-biblatexoptions","description":"quarto-resource-document-references-biblatexoptions"},"natbiboptions":{"_internalId":212529,"type":"ref","$ref":"quarto-resource-document-references-natbiboptions","description":"quarto-resource-document-references-natbiboptions"},"biblio-style":{"_internalId":212530,"type":"ref","$ref":"quarto-resource-document-references-biblio-style","description":"quarto-resource-document-references-biblio-style"},"bibliographystyle":{"_internalId":212531,"type":"ref","$ref":"quarto-resource-document-references-bibliographystyle","description":"quarto-resource-document-references-bibliographystyle"},"biblio-title":{"_internalId":212532,"type":"ref","$ref":"quarto-resource-document-references-biblio-title","description":"quarto-resource-document-references-biblio-title"},"biblio-config":{"_internalId":212533,"type":"ref","$ref":"quarto-resource-document-references-biblio-config","description":"quarto-resource-document-references-biblio-config"},"citation-abbreviations":{"_internalId":212534,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"link-citations":{"_internalId":212535,"type":"ref","$ref":"quarto-resource-document-references-link-citations","description":"quarto-resource-document-references-link-citations"},"link-bibliography":{"_internalId":212536,"type":"ref","$ref":"quarto-resource-document-references-link-bibliography","description":"quarto-resource-document-references-link-bibliography"},"notes-after-punctuation":{"_internalId":212537,"type":"ref","$ref":"quarto-resource-document-references-notes-after-punctuation","description":"quarto-resource-document-references-notes-after-punctuation"},"from":{"_internalId":212538,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":212538,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":212539,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":212540,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":212541,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":212542,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":212543,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":212544,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":212545,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":212546,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":212547,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":212548,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":212549,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":212550,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":212551,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":212552,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"keep-typ":{"_internalId":212553,"type":"ref","$ref":"quarto-resource-document-render-keep-typ","description":"quarto-resource-document-render-keep-typ"},"keep-tex":{"_internalId":212554,"type":"ref","$ref":"quarto-resource-document-render-keep-tex","description":"quarto-resource-document-render-keep-tex"},"extract-media":{"_internalId":212555,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":212556,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":212557,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":212558,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":212559,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":212560,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"html-pre-tag-processing":{"_internalId":212561,"type":"ref","$ref":"quarto-resource-document-render-html-pre-tag-processing","description":"quarto-resource-document-render-html-pre-tag-processing"},"css-property-processing":{"_internalId":212562,"type":"ref","$ref":"quarto-resource-document-render-css-property-processing","description":"quarto-resource-document-render-css-property-processing"},"use-rsvg-convert":{"_internalId":212563,"type":"ref","$ref":"quarto-resource-document-render-use-rsvg-convert","description":"quarto-resource-document-render-use-rsvg-convert"},"scrollable":{"_internalId":212566,"type":"ref","$ref":"quarto-resource-document-reveal-content-scrollable","description":"quarto-resource-document-reveal-content-scrollable"},"smaller":{"_internalId":212567,"type":"ref","$ref":"quarto-resource-document-reveal-content-smaller","description":"quarto-resource-document-reveal-content-smaller"},"output-location":{"_internalId":212568,"type":"ref","$ref":"quarto-resource-document-reveal-content-output-location","description":"quarto-resource-document-reveal-content-output-location"},"embedded":{"_internalId":212569,"type":"ref","$ref":"quarto-resource-document-reveal-hidden-embedded","description":"quarto-resource-document-reveal-hidden-embedded"},"display":{"_internalId":212570,"type":"ref","$ref":"quarto-resource-document-reveal-hidden-display","description":"quarto-resource-document-reveal-hidden-display"},"auto-stretch":{"_internalId":212571,"type":"ref","$ref":"quarto-resource-document-reveal-layout-auto-stretch","description":"quarto-resource-document-reveal-layout-auto-stretch"},"width":{"_internalId":212572,"type":"ref","$ref":"quarto-resource-document-reveal-layout-width","description":"quarto-resource-document-reveal-layout-width"},"height":{"_internalId":212573,"type":"ref","$ref":"quarto-resource-document-reveal-layout-height","description":"quarto-resource-document-reveal-layout-height"},"margin":{"_internalId":212574,"type":"ref","$ref":"quarto-resource-document-reveal-layout-margin","description":"quarto-resource-document-reveal-layout-margin"},"min-scale":{"_internalId":212575,"type":"ref","$ref":"quarto-resource-document-reveal-layout-min-scale","description":"quarto-resource-document-reveal-layout-min-scale"},"max-scale":{"_internalId":212576,"type":"ref","$ref":"quarto-resource-document-reveal-layout-max-scale","description":"quarto-resource-document-reveal-layout-max-scale"},"center":{"_internalId":212577,"type":"ref","$ref":"quarto-resource-document-reveal-layout-center","description":"quarto-resource-document-reveal-layout-center"},"disable-layout":{"_internalId":212578,"type":"ref","$ref":"quarto-resource-document-reveal-layout-disable-layout","description":"quarto-resource-document-reveal-layout-disable-layout"},"code-block-height":{"_internalId":212579,"type":"ref","$ref":"quarto-resource-document-reveal-layout-code-block-height","description":"quarto-resource-document-reveal-layout-code-block-height"},"preview-links":{"_internalId":212580,"type":"ref","$ref":"quarto-resource-document-reveal-media-preview-links","description":"quarto-resource-document-reveal-media-preview-links"},"auto-play-media":{"_internalId":212581,"type":"ref","$ref":"quarto-resource-document-reveal-media-auto-play-media","description":"quarto-resource-document-reveal-media-auto-play-media"},"preload-iframes":{"_internalId":212582,"type":"ref","$ref":"quarto-resource-document-reveal-media-preload-iframes","description":"quarto-resource-document-reveal-media-preload-iframes"},"view-distance":{"_internalId":212583,"type":"ref","$ref":"quarto-resource-document-reveal-media-view-distance","description":"quarto-resource-document-reveal-media-view-distance"},"mobile-view-distance":{"_internalId":212584,"type":"ref","$ref":"quarto-resource-document-reveal-media-mobile-view-distance","description":"quarto-resource-document-reveal-media-mobile-view-distance"},"parallax-background-image":{"_internalId":212585,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-image","description":"quarto-resource-document-reveal-media-parallax-background-image"},"parallax-background-size":{"_internalId":212586,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-size","description":"quarto-resource-document-reveal-media-parallax-background-size"},"parallax-background-horizontal":{"_internalId":212587,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-horizontal","description":"quarto-resource-document-reveal-media-parallax-background-horizontal"},"parallax-background-vertical":{"_internalId":212588,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-vertical","description":"quarto-resource-document-reveal-media-parallax-background-vertical"},"progress":{"_internalId":212589,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-progress","description":"quarto-resource-document-reveal-navigation-progress"},"history":{"_internalId":212590,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-history","description":"quarto-resource-document-reveal-navigation-history"},"navigation-mode":{"_internalId":212591,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-navigation-mode","description":"quarto-resource-document-reveal-navigation-navigation-mode"},"touch":{"_internalId":212592,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-touch","description":"quarto-resource-document-reveal-navigation-touch"},"keyboard":{"_internalId":212593,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-keyboard","description":"quarto-resource-document-reveal-navigation-keyboard"},"mouse-wheel":{"_internalId":212594,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-mouse-wheel","description":"quarto-resource-document-reveal-navigation-mouse-wheel"},"hide-inactive-cursor":{"_internalId":212595,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hide-inactive-cursor","description":"quarto-resource-document-reveal-navigation-hide-inactive-cursor"},"hide-cursor-time":{"_internalId":212596,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hide-cursor-time","description":"quarto-resource-document-reveal-navigation-hide-cursor-time"},"loop":{"_internalId":212597,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-loop","description":"quarto-resource-document-reveal-navigation-loop"},"shuffle":{"_internalId":212598,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-shuffle","description":"quarto-resource-document-reveal-navigation-shuffle"},"controls":{"_internalId":212599,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls","description":"quarto-resource-document-reveal-navigation-controls"},"controls-layout":{"_internalId":212600,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-layout","description":"quarto-resource-document-reveal-navigation-controls-layout"},"controls-tutorial":{"_internalId":212601,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-tutorial","description":"quarto-resource-document-reveal-navigation-controls-tutorial"},"controls-back-arrows":{"_internalId":212602,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-back-arrows","description":"quarto-resource-document-reveal-navigation-controls-back-arrows"},"auto-slide":{"_internalId":212603,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide","description":"quarto-resource-document-reveal-navigation-auto-slide"},"auto-slide-stoppable":{"_internalId":212604,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide-stoppable","description":"quarto-resource-document-reveal-navigation-auto-slide-stoppable"},"auto-slide-method":{"_internalId":212605,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide-method","description":"quarto-resource-document-reveal-navigation-auto-slide-method"},"default-timing":{"_internalId":212606,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-default-timing","description":"quarto-resource-document-reveal-navigation-default-timing"},"pause":{"_internalId":212607,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-pause","description":"quarto-resource-document-reveal-navigation-pause"},"help":{"_internalId":212608,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-help","description":"quarto-resource-document-reveal-navigation-help"},"hash":{"_internalId":212609,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hash","description":"quarto-resource-document-reveal-navigation-hash"},"hash-type":{"_internalId":212610,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hash-type","description":"quarto-resource-document-reveal-navigation-hash-type"},"hash-one-based-index":{"_internalId":212611,"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":212612,"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":212613,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-fragment-in-url","description":"quarto-resource-document-reveal-navigation-fragment-in-url"},"slide-tone":{"_internalId":212614,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-slide-tone","description":"quarto-resource-document-reveal-navigation-slide-tone"},"jump-to-slide":{"_internalId":212615,"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":212616,"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":212617,"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":212618,"type":"ref","$ref":"quarto-resource-document-reveal-print-pdf-page-height-offset","description":"quarto-resource-document-reveal-print-pdf-page-height-offset"},"overview":{"_internalId":212619,"type":"ref","$ref":"quarto-resource-document-reveal-tools-overview","description":"quarto-resource-document-reveal-tools-overview"},"menu":{"_internalId":212620,"type":"ref","$ref":"quarto-resource-document-reveal-tools-menu","description":"quarto-resource-document-reveal-tools-menu"},"chalkboard":{"_internalId":212621,"type":"ref","$ref":"quarto-resource-document-reveal-tools-chalkboard","description":"quarto-resource-document-reveal-tools-chalkboard"},"multiplex":{"_internalId":212622,"type":"ref","$ref":"quarto-resource-document-reveal-tools-multiplex","description":"quarto-resource-document-reveal-tools-multiplex"},"scroll-view":{"_internalId":212623,"type":"ref","$ref":"quarto-resource-document-reveal-tools-scroll-view","description":"quarto-resource-document-reveal-tools-scroll-view"},"transition":{"_internalId":212624,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-transition","description":"quarto-resource-document-reveal-transitions-transition"},"transition-speed":{"_internalId":212625,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-transition-speed","description":"quarto-resource-document-reveal-transitions-transition-speed"},"background-transition":{"_internalId":212626,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-background-transition","description":"quarto-resource-document-reveal-transitions-background-transition"},"fragments":{"_internalId":212627,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-fragments","description":"quarto-resource-document-reveal-transitions-fragments"},"auto-animate":{"_internalId":212628,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate","description":"quarto-resource-document-reveal-transitions-auto-animate"},"auto-animate-easing":{"_internalId":212629,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-easing","description":"quarto-resource-document-reveal-transitions-auto-animate-easing"},"auto-animate-duration":{"_internalId":212630,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-duration","description":"quarto-resource-document-reveal-transitions-auto-animate-duration"},"auto-animate-unmatched":{"_internalId":212631,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-unmatched","description":"quarto-resource-document-reveal-transitions-auto-animate-unmatched"},"auto-animate-styles":{"_internalId":212632,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-styles","description":"quarto-resource-document-reveal-transitions-auto-animate-styles"},"incremental":{"_internalId":212633,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":212634,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"slide-number":{"_internalId":212635,"type":"ref","$ref":"quarto-resource-document-slides-slide-number","description":"quarto-resource-document-slides-slide-number"},"show-slide-number":{"_internalId":212636,"type":"ref","$ref":"quarto-resource-document-slides-show-slide-number","description":"quarto-resource-document-slides-show-slide-number"},"title-slide-attributes":{"_internalId":212637,"type":"ref","$ref":"quarto-resource-document-slides-title-slide-attributes","description":"quarto-resource-document-slides-title-slide-attributes"},"title-slide-style":{"_internalId":212638,"type":"ref","$ref":"quarto-resource-document-slides-title-slide-style","description":"quarto-resource-document-slides-title-slide-style"},"center-title-slide":{"_internalId":212639,"type":"ref","$ref":"quarto-resource-document-slides-center-title-slide","description":"quarto-resource-document-slides-center-title-slide"},"show-notes":{"_internalId":212640,"type":"ref","$ref":"quarto-resource-document-slides-show-notes","description":"quarto-resource-document-slides-show-notes"},"rtl":{"_internalId":212641,"type":"ref","$ref":"quarto-resource-document-slides-rtl","description":"quarto-resource-document-slides-rtl"},"df-print":{"_internalId":212642,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":212643,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"columns":{"_internalId":212644,"type":"ref","$ref":"quarto-resource-document-text-columns","description":"quarto-resource-document-text-columns"},"tab-stop":{"_internalId":212645,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":212646,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":212647,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":212648,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":212649,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":212650,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":212650,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-indent":{"_internalId":212651,"type":"ref","$ref":"quarto-resource-document-toc-toc-indent","description":"quarto-resource-document-toc-toc-indent"},"toc-depth":{"_internalId":212652,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-location":{"_internalId":212653,"type":"ref","$ref":"quarto-resource-document-toc-toc-location","description":"quarto-resource-document-toc-toc-location"},"toc-title":{"_internalId":212654,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"toc-expand":{"_internalId":212655,"type":"ref","$ref":"quarto-resource-document-toc-toc-expand","description":"quarto-resource-document-toc-toc-expand"},"lof":{"_internalId":212656,"type":"ref","$ref":"quarto-resource-document-toc-lof","description":"quarto-resource-document-toc-lof"},"lot":{"_internalId":212657,"type":"ref","$ref":"quarto-resource-document-toc-lot","description":"quarto-resource-document-toc-lot"},"search":{"_internalId":212658,"type":"ref","$ref":"quarto-resource-document-website-search","description":"quarto-resource-document-website-search"},"repo-actions":{"_internalId":212659,"type":"ref","$ref":"quarto-resource-document-website-repo-actions","description":"quarto-resource-document-website-repo-actions"},"aliases":{"_internalId":212660,"type":"ref","$ref":"quarto-resource-document-website-aliases","description":"quarto-resource-document-website-aliases"},"image":{"_internalId":212661,"type":"ref","$ref":"quarto-resource-document-website-image","description":"quarto-resource-document-website-image"},"image-height":{"_internalId":212662,"type":"ref","$ref":"quarto-resource-document-website-image-height","description":"quarto-resource-document-website-image-height"},"image-width":{"_internalId":212663,"type":"ref","$ref":"quarto-resource-document-website-image-width","description":"quarto-resource-document-website-image-width"},"image-alt":{"_internalId":212664,"type":"ref","$ref":"quarto-resource-document-website-image-alt","description":"quarto-resource-document-website-image-alt"},"image-lazy-loading":{"_internalId":212665,"type":"ref","$ref":"quarto-resource-document-website-image-lazy-loading","description":"quarto-resource-document-website-image-lazy-loading"},"axe":{"_internalId":212666,"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,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,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","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$|^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$))","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":5526,"type":"ref","$ref":"front-matter-execute","description":"be a front-matter-execute object"},{"_internalId":212669,"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":212765,"type":"object","description":"be an object","properties":{"project":{"_internalId":212737,"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":"Working directory for computations"},"render":{"_internalId":212685,"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":"Output directory"},"execute-dir":{"_internalId":212688,"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":"HTML library (JS/CSS/etc.) 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":"Additional file resources to be copied to output directory"},"resources":{"_internalId":212700,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"Additional file resources to be copied to output directory"},"documentation":"Options for quarto preview"},{"_internalId":212699,"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":"Options for quarto preview"}}],"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":212705,"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 pre-render step"},"preview":{"_internalId":212710,"type":"ref","$ref":"project-preview","description":"be project-preview","tags":{"description":"Options for `quarto preview`"},"documentation":"Scripts to run as a post-render step"},"pre-render":{"_internalId":212718,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":212717,"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":"Array of paths used to detect the project type within a directory"},"post-render":{"_internalId":212726,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":212725,"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":"Website configuration."},"detect":{"_internalId":212736,"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":212735,"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 configuration."}},"patternProperties":{},"closed":true,"documentation":"Files to render (defaults to all files)","tags":{"description":"Project configuration."}},"website":{"_internalId":212740,"type":"ref","$ref":"base-website","description":"be base-website","documentation":"Book title","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 path to the favicon for this website"},"description":{"type":"string","description":"be a string","tags":{"description":"Description metadata for HTML version of book"},"documentation":"Base URL for published website"},"favicon":{"type":"string","description":"be a string","tags":{"description":"The path to the favicon for this website"},"documentation":"Path to site (defaults to /). Not required if you\nspecify site-url."},"site-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for published website"},"documentation":"Base URL for website source code repository"},"site-path":{"type":"string","description":"be a string","tags":{"description":"Path to site (defaults to `/`). Not required if you specify `site-url`.\n"},"documentation":"The value of the target attribute for repo links"},"repo-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for website source code repository"},"documentation":"The value of the rel 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":"Subdirectory of repository containing website"},"repo-link-rel":{"type":"string","description":"be a string","tags":{"description":"The value of the rel attribute for repo links"},"documentation":"Branch of website source code (defaults to main)"},"repo-subdir":{"type":"string","description":"be a string","tags":{"description":"Subdirectory of repository containing website"},"documentation":"URL to use for the ‘report an issue’ repository action."},"repo-branch":{"type":"string","description":"be a string","tags":{"description":"Branch of website source code (defaults to `main`)"},"documentation":"Links to source repository actions"},"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":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 Google Analytics for this website"},{"_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 Google Analytics for this website"}}],"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":"The Google tracking Id or measurement Id of this website."},"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":"Anonymize the user ip address."},"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":"The version number of Google Analytics to use."},"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":"Enable Plausible Analytics for this website by providing a script\nsnippet or path to snippet file"},"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":"Path to a file containing the Plausible Analytics script snippet"}},"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":"Storage options for Google Analytics data"},"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":"The content of the announcement"}},"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":"Provides an announcement displayed at the top of the page."},"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 icon to display in the announcement"},"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 position of 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 type of announcement. Affects the appearance of the\nannouncement."},"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":"Request cookie consent before enabling scripts that set cookies"},"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 type of consent that should be requested"}},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Provides an announcement displayed at the top of the page."},"documentation":"Whether this announcement may be dismissed by the user."},"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":"Whether to use a dark or light appearance for the consent banner\n(light or dark)."},"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":"The url to the website’s cookie or privacy policy."},"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":"The language to be used when diplaying the cookie consent prompt\n(defaults to document language)."},"policy-url":{"type":"string","description":"be a string","tags":{"description":"The url to the website’s cookie or privacy policy."},"documentation":"The text to display for the cookie preferences link in the website\nfooter."},"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 full text search for website"},"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":"Location for search widget (navbar or\nsidebar)"}},"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 style of the consent banner that is displayed"},"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":"Number of matches to display (defaults to 20)"},"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":"Matches after which to collapse additional results"},"limit":{"type":"number","description":"be a number","tags":{"description":"Number of matches to display (defaults to 20)"},"documentation":"Provide button for copying search link"},"collapse-after":{"type":"number","description":"be a number","tags":{"description":"Matches after which to collapse additional results"},"documentation":"When false, do not merge navbar crumbs into the crumbs in\nsearch.json."},"copy-button":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide button for copying search link"},"documentation":"One or more keys that will act as a shortcut to launch search (single\ncharacters)"},"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":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":"Use external Algolia search index"},{"_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":"Use external Algolia search index"}}],"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":"The name of the index to use when performing a search"},"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":"The Search-Only API key to use to connect to Algolia"},"application-id":{"type":"string","description":"be a string","tags":{"description":"The unique ID used by Algolia to identify your application"},"documentation":"Enable tracking of Algolia analytics events"},"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 the display of the Algolia logo in the search results\nfooter."},"analytics-events":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable tracking of Algolia analytics events"},"documentation":"Field that contains the URL of index entries"},"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 title of index entries"},"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":"Field that contains the text 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 section of index entries"},"text":{"type":"string","description":"be a string","tags":{"description":"Field that contains the text of index entries"},"documentation":"Additional parameters to pass when executing a search"},"section":{"type":"string","description":"be a string","tags":{"description":"Field that contains the section of index entries"},"documentation":"Top navigation options"}},"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 title. Uses the project title if none is specified."}},"patternProperties":{},"closed":true,"tags":{"description":"Use external Algolia search index"},"documentation":"The unique ID used by Algolia to identify your application"}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Provide full text search for website"},"documentation":"Type of search UI (overlay or textbox)"},"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":"Alternate text for the logo image."},"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":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"The navbar’s background 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":"The navbar’s foreground 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":"Include a search box in 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":"Always show the navbar (keeping it pinned)."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search box in the navbar."},"documentation":"Collapse the navbar into a menu when the display becomes narrow."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Always show the navbar (keeping it pinned)."},"documentation":"The responsive breakpoint below which the navbar will collapse into a\nmenu (sm, md, lg (default),\nxl, xxl)."},"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":"List of items for the left side of the navbar."},"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":"List of items for the right side of the navbar."},"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":"The position of the collapsed navbar toggle when in responsive\nmode"},"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":"Collapse tools into the navbar menu when the display becomes\nnarrow."},"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":"Side navigation options"},"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":"The identifier for this 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":"Specification of image that will be displayed to the left of the\ntitle."},"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":"Specification of image that will be displayed in 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":"Alternate text for the logo image."},"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":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"Include a search control in the sidebar."},"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 sidebar tools"},"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 items for the sidebar"},"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 style of sidebar (docked or\nfloating)."},"contents":{"_internalId":780,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"The sidebar’s background color (named or hex color)."},"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":"The sidebar’s foreground 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":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"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":"Alignment of the items within the sidebar (left,\nright, or center)"},"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":"The depth at which the sidebar contents should be collapsed by\ndefault."},"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":"When collapsed, pin the collapsed sidebar to the top of the page."},"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 above sidebar 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":"Markdown to place below sidebar content (text or file path)"},"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":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."},"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":"Markdown to insert below each page’s body."}},"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":"Specification of image that will be displayed in 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":"Alternate text for the logo image."},"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":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"Include a search control in the sidebar."},"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 sidebar tools"},"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 items for the sidebar"},"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 style of sidebar (docked or\nfloating)."},"contents":{"_internalId":780,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"The sidebar’s background color (named or hex color)."},"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":"The sidebar’s foreground 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":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"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":"Alignment of the items within the sidebar (left,\nright, or center)"},"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":"The depth at which the sidebar contents should be collapsed by\ndefault."},"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":"When collapsed, pin the collapsed sidebar to the top of the page."},"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 above sidebar 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":"Markdown to place below sidebar content (text or file path)"},"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":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."},"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":"Markdown to insert below each page’s body."}},"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 sidebar title. Uses the project title if none is specified."},"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 place above margin content (text or file path)"},"body-footer":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert below each page’s body."},"documentation":"Markdown to place below margin content (text or file path)"},"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":"Provide next and previous article links in footer"},"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":"Provide a ‘back to top’ navigation button"},"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":"Whether to show navigation breadcrumbs for pages more than 1 level\ndeep"},"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":"Shared page footer"},"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":"Default site thumbnail image for twitter\n/open-graph"},"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":"Default site thumbnail image alt text for twitter\n/open-graph"},"image":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image for `twitter` /`open-graph`\n"},"documentation":"Publish open graph metadata"},"image-alt":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image alt text for `twitter` /`open-graph`\n"},"documentation":"Publish twitter card metadata"},"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":"A list of other links to appear below the TOC."},"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":"A list of code links to appear with this document."},"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":"A list of input documents that should be treated as drafts"},"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":"How to handle drafts that are encountered."},"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 subtitle"},"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":"Author or authors of the book"},"subtitle":{"type":"string","description":"be a string","tags":{"description":"Book subtitle"},"documentation":"Author or authors of the book"},"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":"Format string for dates in the book"},{"_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":"Format string for dates in the book"}}],"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":"Book abstract"},"date-format":{"type":"string","description":"be a string","tags":{"description":"Format string for dates in the book"},"documentation":"Book part and chapter files"},"abstract":{"type":"string","description":"be a string","tags":{"description":"Book abstract"},"documentation":"Book appendix files"},"chapters":{"_internalId":932,"type":"ref","$ref":"chapter-list","description":"be chapter-list","completions":[],"tags":{"hidden":true,"description":"Book part and chapter files"},"documentation":"Book references file"},"appendices":{"_internalId":937,"type":"ref","$ref":"chapter-list","description":"be chapter-list","completions":[],"tags":{"hidden":true,"description":"Book appendix files"},"documentation":"Base name for single-file output (e.g. PDF, ePub, docx)"},"references":{"type":"string","description":"be a string","tags":{"description":"Book references file"},"documentation":"Cover image (used in HTML and ePub formats)"},"output-file":{"type":"string","description":"be a string","tags":{"description":"Base name for single-file output (e.g. PDF, ePub, docx)"},"documentation":"Alternative text for cover image (used in HTML format)"},"cover-image":{"type":"string","description":"be a string","tags":{"description":"Cover image (used in HTML and ePub formats)"},"documentation":"Sharing buttons to include on navbar or sidebar (one or more of\ntwitter, facebook, linkedin)"},"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":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":"Download buttons for other formats to include on navbar or sidebar\n(one or more of pdf, epub, and\ndocx)"},{"_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":"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":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":"The Digital Object Identifier for this book."},{"_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":"The Digital Object Identifier for this book."}}],"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":"A url to the abstract for this item."},"doi":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"The Digital Object Identifier for this book."},"documentation":"Date the item has been accessed."},"abstract-url":{"type":"string","description":"be a string","tags":{"description":"A url to the abstract for this item."},"documentation":"Short markup, decoration, or annotation to the item (e.g., to\nindicate items included in a review)."},"accessed":{"_internalId":1410,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item has been accessed."},"documentation":"Archive storing the item"},"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":"Collection the item is part of within an archive."},"archive":{"type":"string","description":"be a string","tags":{"description":"Archive storing the item"},"documentation":"Storage location within an archive (e.g. a box and folder\nnumber)."},"archive-collection":{"type":"string","description":"be a string","tags":{"description":"Collection the item is part of within an archive."},"documentation":"Geographic location of the archive."},"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":"Issuing or judicial authority (e.g. “USPTO” for a patent, “Fairfax\nCircuit Court” for a legal case)."},"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":"Date the item was initially available"},"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":"Call number (to locate the item in a library)."},"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":"The person leading the session containing a presentation (e.g. the\norganizer of the container-title of a\nspeech)."},"call-number":{"type":"string","description":"be a string","tags":{"description":"Call number (to locate the item in a library)."},"documentation":"Chapter number (e.g. chapter number in a book; track number on an\nalbum)."},"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":"Identifier of the item in the input data file (analogous to BiTeX\nentrykey)."},"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":"Label identifying the item in in-text citations of label styles\n(e.g. “Ferr78”)."},"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":"Index (starting at 1) of the cited reference in the bibliography\n(generated by the CSL processor)."},"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":"Editor of the collection holding the item (e.g. the series editor for\na book)."},"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":"Number identifying the collection holding the item (e.g. the series\nnumber for a book)","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":"Title of the collection holding the item (e.g. the series title for a\nbook; the lecture series title for a presentation)."},"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":"Person compiling or selecting material for an item from the works of\nvarious persons or bodies (e.g. for an anthology)."},"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":"Composer (e.g. of a musical score)."},"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":"Author of the container holding the item (e.g. the book author for a\nbook chapter)."},"composer":{"_internalId":1464,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Composer (e.g. of a musical score)."},"documentation":"Title of the container holding the item."},"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":"Short/abbreviated form of container-title;"},"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":"A minor contributor to the item; typically cited using “with” before\nthe name when listed in a bibliography."},"container-title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of container-title;","hidden":true},"documentation":"Curator of an exhibit or collection (e.g. in a museum).","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":"Physical (e.g. size) or temporal (e.g. running time) dimensions of\nthe item."},"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":"Director (e.g. of a film)."},"dimensions":{"type":"string","description":"be a string","tags":{"description":"Physical (e.g. size) or temporal (e.g. running time) dimensions of the item."},"documentation":"Minor subdivision of a court with a jurisdiction for a\nlegal item"},"director":{"_internalId":1482,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Director (e.g. of a film)."},"documentation":"(Container) edition holding the item (e.g. “3” when citing a chapter\nin the third edition of a book)."},"division":{"type":"string","description":"be a string","tags":{"description":"Minor subdivision of a court with a `jurisdiction` for a legal item"},"documentation":"The editor of the item."},"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":"Managing editor (“Directeur de la Publication” in French)."},"editor":{"_internalId":1494,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The editor of the item."},"documentation":"Combined editor and translator of a work."},"editorial-director":{"_internalId":1497,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Managing editor (\"Directeur de la Publication\" in French)."},"documentation":"Date the event related to an item took place."},"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":"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":{"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":"Geographic location of the event related to the item\n(e.g. “Amsterdam, The Netherlands”)."},"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":"Executive producer of the item (e.g. of a television series)."},"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":"Number of a preceding note containing the first reference to the\nitem."},"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":"A url to the full text for this item."},"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":"Type, class, or subtype of the item"},"fulltext-url":{"type":"string","description":"be a string","tags":{"description":"A url to the full text for this item."},"documentation":"Guest (e.g. on a TV show or podcast)."},"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":"Host of the item (e.g. of a TV show or podcast)."},"guest":{"_internalId":1526,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Guest (e.g. on a TV show or podcast)."},"documentation":"A value which uniquely identifies this 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":"Illustrator (e.g. of a children’s book or graphic novel)."},"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":"Interviewer (e.g. of an interview)."},"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":"International Standard Book Number (e.g. “978-3-8474-1017-1”)."},"interviewer":{"_internalId":1542,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Interviewer (e.g. of an interview)."},"documentation":"International Standard Serial Number."},"isbn":{"type":"string","description":"be a string","tags":{"description":"International Standard Book Number (e.g. \"978-3-8474-1017-1\")."},"documentation":"Issue number of the item or container holding the 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":"Date the item was issued/published."},"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":"Geographic scope of relevance (e.g. “US” for a US patent; the court\nhearing a legal case)."},"issued":{"_internalId":1560,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item was issued/published."},"documentation":"Keyword(s) or tag(s) attached to the item."},"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":"The language of the item (used only for citation of the item)."},"keyword":{"type":"string","description":"be a string","tags":{"description":"Keyword(s) or tag(s) attached to the item."},"documentation":"The license information applicable to an 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":"A cite-specific pinpointer within the 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":"Description of the item’s format or medium (e.g. “CD”, “DVD”,\n“Album”, etc.)"},"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":"Narrator (e.g. of an audio book)."},"medium":{"type":"string","description":"be a string","tags":{"description":"Description of the item’s format or medium (e.g. \"CD\", \"DVD\", \"Album\", etc.)"},"documentation":"Descriptive text or notes about an item (e.g. in an annotated\nbibliography)."},"narrator":{"_internalId":1576,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Narrator (e.g. of an audio book)."},"documentation":"Number identifying the item (e.g. a report number)."},"note":{"type":"string","description":"be a string","tags":{"description":"Descriptive text or notes about an item (e.g. in an annotated bibliography)."},"documentation":"Total number of pages of the cited item."},"number":{"_internalId":1581,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the item (e.g. a report number)."},"documentation":"Total number of volumes, used when citing multi-volume books and\nsuch."},"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":"Organizer of an event (e.g. organizer of a workshop or\nconference)."},"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":"The original creator of a work."},"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":"Issue date of the original version."},"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":"Original publisher, for items that have been republished by a\ndifferent publisher."},"original-date":{"_internalId":1596,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Issue date of the original version."},"documentation":"Geographic location of the original publisher (e.g. “London,\nUK”)."},"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 original version (e.g. “Война и мир”, the untranslated\nRussian title of “War and Peace”)."},"original-publisher-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the original publisher (e.g. \"London, UK\")."},"documentation":"Range of pages the item (e.g. a journal article) covers in a\ncontainer (e.g. a journal issue)."},"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":"First page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"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":"Last 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":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":"Number of the specific part of the item being cited (e.g. part 2 of a\njournal article)."},"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":"Title of the specific part of an item being cited."},"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":"A url to the pdf for this item."},"part-title":{"type":"string","description":"be a string","tags":{"description":"Title of the specific part of an item being cited."},"documentation":"Performer of an item (e.g. an actor appearing in a film; a muscian\nperforming a piece of music)."},"pdf-url":{"type":"string","description":"be a string","tags":{"description":"A url to the pdf for this item."},"documentation":"PubMed Central reference number."},"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":"PubMed reference number."},"pmcid":{"type":"string","description":"be a string","tags":{"description":"PubMed Central reference number."},"documentation":"Printing number of the item or container holding the item."},"PMCID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"pmid":{"type":"string","description":"be a string","tags":{"description":"PubMed reference number."},"documentation":"Producer (e.g. of a television or radio broadcast)."},"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":"A public url for this item."},"producer":{"_internalId":1639,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Producer (e.g. of a television or radio broadcast)."},"documentation":"The publisher of the item."},"public-url":{"type":"string","description":"be a string","tags":{"description":"A public url for this item."},"documentation":"The geographic location of the publisher."},"publisher":{"type":"string","description":"be a string","tags":{"description":"The publisher of the item."},"documentation":"Recipient (e.g. of a letter)."},"publisher-place":{"type":"string","description":"be a string","tags":{"description":"The geographic location of the publisher."},"documentation":"Author of the item reviewed by the current item."},"recipient":{"_internalId":1648,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Recipient (e.g. of a letter)."},"documentation":"Type of the item being reviewed by the current item (e.g. book,\nfilm)."},"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":"Title of the item reviewed by the current item."},"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":"Scale of e.g. a map or model."},"reviewed-title":{"type":"string","description":"be a string","tags":{"description":"Title of the item reviewed by the current item."},"documentation":"Writer of a script or screenplay (e.g. of a film)."},"scale":{"type":"string","description":"be a string","tags":{"description":"Scale of e.g. a map or model."},"documentation":"Section of the item or container holding the item (e.g. “§2.0.1” for\na law; “politics” for a newspaper article)."},"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":"Creator of a series (e.g. of a television series)."},"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":"Source from whence the item originates (e.g. a library catalog or\ndatabase)."},"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":"Publication status of the item (e.g. “forthcoming”; “in press”;\n“advance online publication”; “retracted”)"},"source":{"type":"string","description":"be a string","tags":{"description":"Source from whence the item originates (e.g. a library catalog or database)."},"documentation":"Date the item (e.g. a manuscript) was submitted for publication."},"status":{"type":"string","description":"be a string","tags":{"description":"Publication status of the item (e.g. \"forthcoming\"; \"in press\"; \"advance online publication\"; \"retracted\")"},"documentation":"Supplement number of the item or container holding the item (e.g. for\nsecondary legal items that are regularly updated between editions)."},"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":"Short/abbreviated form oftitle."},"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":"Translator"},"title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of`title`.","hidden":true},"documentation":"The type\nof the item.","completions":[]},"translator":{"_internalId":1681,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Translator"},"documentation":"Uniform Resource Locator\n(e.g. “https://aem.asm.org/cgi/content/full/74/9/2766”)"},"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":"Version of the item (e.g. “2.0.9” for a software program)."},"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":"Volume number of the item (e.g. “2” when citing volume 2 of a book)\nor the container holding the item."},"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":"Title of the volume of the item or container holding the item."},"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":"Disambiguating year suffix in author-date styles (e.g. “a” in “Doe,\n1999a”)."},"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":"Manuscript configuration"},"year-suffix":{"type":"string","description":"be a string","tags":{"description":"Disambiguating year suffix in author-date styles (e.g. \"a\" in \"Doe, 1999a\")."},"documentation":"internal-schema-hack"}},"patternProperties":{},"closed":true,"tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true,"description":"Book configuration."},"documentation":"Description metadata for HTML version of book"},"manuscript":{"_internalId":212750,"type":"ref","$ref":"manuscript-schema","description":"be manuscript-schema","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":"Manuscript configuration"}},"type":{"_internalId":212753,"type":"enum","enum":["cd93424f-d5ba-4e95-91c6-1890eab59fc7"],"description":"be 'cd93424f-d5ba-4e95-91c6-1890eab59fc7'","completions":["cd93424f-d5ba-4e95-91c6-1890eab59fc7"],"exhaustiveCompletions":true,"documentation":"Enable babel language-specific shorthands in LaTeX output.","tags":{"description":"internal-schema-hack","hidden":true}},"engines":{"_internalId":212764,"type":"array","description":"be an array of values, where each element must be at least one of: a string, external-engine","items":{"_internalId":212763,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":212762,"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 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'.","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":212796,"type":"allOf","allOf":[{"_internalId":212794,"type":"object","description":"be a Quarto YAML front matter object","properties":{"execute":{"_internalId":212791,"type":"ref","$ref":"front-matter-execute","description":"be a front-matter-execute object"},"format":{"_internalId":212792,"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":212793,"type":"ref","$ref":"project-profile","description":"Specify a default profile and profile groups"}},"patternProperties":{}},{"_internalId":212791,"type":"ref","$ref":"front-matter-execute","description":"be a front-matter-execute object"},{"_internalId":212795,"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":212766,"type":"ref","$ref":"project-config-fields","description":"be an object"}],"description":"be a project configuration object","$id":"project-config"},"engine-markdown":{"_internalId":212844,"type":"object","description":"be an object","properties":{"label":{"_internalId":212798,"type":"ref","$ref":"quarto-resource-cell-attributes-label","description":"quarto-resource-cell-attributes-label"},"classes":{"_internalId":212799,"type":"ref","$ref":"quarto-resource-cell-attributes-classes","description":"quarto-resource-cell-attributes-classes"},"renderings":{"_internalId":212800,"type":"ref","$ref":"quarto-resource-cell-attributes-renderings","description":"quarto-resource-cell-attributes-renderings"},"title":{"_internalId":212801,"type":"ref","$ref":"quarto-resource-cell-card-title","description":"quarto-resource-cell-card-title"},"padding":{"_internalId":212802,"type":"ref","$ref":"quarto-resource-cell-card-padding","description":"quarto-resource-cell-card-padding"},"expandable":{"_internalId":212803,"type":"ref","$ref":"quarto-resource-cell-card-expandable","description":"quarto-resource-cell-card-expandable"},"width":{"_internalId":212804,"type":"ref","$ref":"quarto-resource-cell-card-width","description":"quarto-resource-cell-card-width"},"height":{"_internalId":212805,"type":"ref","$ref":"quarto-resource-cell-card-height","description":"quarto-resource-cell-card-height"},"content":{"_internalId":212806,"type":"ref","$ref":"quarto-resource-cell-card-content","description":"quarto-resource-cell-card-content"},"color":{"_internalId":212807,"type":"ref","$ref":"quarto-resource-cell-card-color","description":"quarto-resource-cell-card-color"},"eval":{"_internalId":212808,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":212809,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":212810,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":212811,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":212812,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":212813,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"lst-label":{"_internalId":212814,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-label","description":"quarto-resource-cell-codeoutput-lst-label"},"lst-cap":{"_internalId":212815,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-cap","description":"quarto-resource-cell-codeoutput-lst-cap"},"fig-cap":{"_internalId":212816,"type":"ref","$ref":"quarto-resource-cell-figure-fig-cap","description":"quarto-resource-cell-figure-fig-cap"},"fig-subcap":{"_internalId":212817,"type":"ref","$ref":"quarto-resource-cell-figure-fig-subcap","description":"quarto-resource-cell-figure-fig-subcap"},"fig-link":{"_internalId":212818,"type":"ref","$ref":"quarto-resource-cell-figure-fig-link","description":"quarto-resource-cell-figure-fig-link"},"fig-align":{"_internalId":212819,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-alt":{"_internalId":212820,"type":"ref","$ref":"quarto-resource-cell-figure-fig-alt","description":"quarto-resource-cell-figure-fig-alt"},"fig-env":{"_internalId":212821,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":212822,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"fig-scap":{"_internalId":212823,"type":"ref","$ref":"quarto-resource-cell-figure-fig-scap","description":"quarto-resource-cell-figure-fig-scap"},"layout":{"_internalId":212824,"type":"ref","$ref":"quarto-resource-cell-layout-layout","description":"quarto-resource-cell-layout-layout"},"layout-ncol":{"_internalId":212825,"type":"ref","$ref":"quarto-resource-cell-layout-layout-ncol","description":"quarto-resource-cell-layout-layout-ncol"},"layout-nrow":{"_internalId":212826,"type":"ref","$ref":"quarto-resource-cell-layout-layout-nrow","description":"quarto-resource-cell-layout-layout-nrow"},"layout-align":{"_internalId":212827,"type":"ref","$ref":"quarto-resource-cell-layout-layout-align","description":"quarto-resource-cell-layout-layout-align"},"layout-valign":{"_internalId":212828,"type":"ref","$ref":"quarto-resource-cell-layout-layout-valign","description":"quarto-resource-cell-layout-layout-valign"},"column":{"_internalId":212829,"type":"ref","$ref":"quarto-resource-cell-pagelayout-column","description":"quarto-resource-cell-pagelayout-column"},"fig-column":{"_internalId":212830,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-column","description":"quarto-resource-cell-pagelayout-fig-column"},"tbl-column":{"_internalId":212831,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-column","description":"quarto-resource-cell-pagelayout-tbl-column"},"cap-location":{"_internalId":212832,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":212833,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":212834,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-cap":{"_internalId":212835,"type":"ref","$ref":"quarto-resource-cell-table-tbl-cap","description":"quarto-resource-cell-table-tbl-cap"},"tbl-subcap":{"_internalId":212836,"type":"ref","$ref":"quarto-resource-cell-table-tbl-subcap","description":"quarto-resource-cell-table-tbl-subcap"},"html-table-processing":{"_internalId":212837,"type":"ref","$ref":"quarto-resource-cell-table-html-table-processing","description":"quarto-resource-cell-table-html-table-processing"},"output":{"_internalId":212838,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":212839,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":212840,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":212841,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"panel":{"_internalId":212842,"type":"ref","$ref":"quarto-resource-cell-textoutput-panel","description":"quarto-resource-cell-textoutput-panel"},"output-location":{"_internalId":212843,"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":212939,"type":"object","description":"be an object","properties":{"label":{"_internalId":212846,"type":"ref","$ref":"quarto-resource-cell-attributes-label","description":"quarto-resource-cell-attributes-label"},"classes":{"_internalId":212847,"type":"ref","$ref":"quarto-resource-cell-attributes-classes","description":"quarto-resource-cell-attributes-classes"},"renderings":{"_internalId":212848,"type":"ref","$ref":"quarto-resource-cell-attributes-renderings","description":"quarto-resource-cell-attributes-renderings"},"cache":{"_internalId":212849,"type":"ref","$ref":"quarto-resource-cell-cache-cache","description":"quarto-resource-cell-cache-cache"},"cache-path":{"_internalId":212850,"type":"ref","$ref":"quarto-resource-cell-cache-cache-path","description":"quarto-resource-cell-cache-cache-path"},"cache-vars":{"_internalId":212851,"type":"ref","$ref":"quarto-resource-cell-cache-cache-vars","description":"quarto-resource-cell-cache-cache-vars"},"cache-globals":{"_internalId":212852,"type":"ref","$ref":"quarto-resource-cell-cache-cache-globals","description":"quarto-resource-cell-cache-cache-globals"},"cache-lazy":{"_internalId":212853,"type":"ref","$ref":"quarto-resource-cell-cache-cache-lazy","description":"quarto-resource-cell-cache-cache-lazy"},"cache-rebuild":{"_internalId":212854,"type":"ref","$ref":"quarto-resource-cell-cache-cache-rebuild","description":"quarto-resource-cell-cache-cache-rebuild"},"cache-comments":{"_internalId":212855,"type":"ref","$ref":"quarto-resource-cell-cache-cache-comments","description":"quarto-resource-cell-cache-cache-comments"},"dependson":{"_internalId":212856,"type":"ref","$ref":"quarto-resource-cell-cache-dependson","description":"quarto-resource-cell-cache-dependson"},"autodep":{"_internalId":212857,"type":"ref","$ref":"quarto-resource-cell-cache-autodep","description":"quarto-resource-cell-cache-autodep"},"title":{"_internalId":212858,"type":"ref","$ref":"quarto-resource-cell-card-title","description":"quarto-resource-cell-card-title"},"padding":{"_internalId":212859,"type":"ref","$ref":"quarto-resource-cell-card-padding","description":"quarto-resource-cell-card-padding"},"expandable":{"_internalId":212860,"type":"ref","$ref":"quarto-resource-cell-card-expandable","description":"quarto-resource-cell-card-expandable"},"width":{"_internalId":212861,"type":"ref","$ref":"quarto-resource-cell-card-width","description":"quarto-resource-cell-card-width"},"height":{"_internalId":212862,"type":"ref","$ref":"quarto-resource-cell-card-height","description":"quarto-resource-cell-card-height"},"content":{"_internalId":212863,"type":"ref","$ref":"quarto-resource-cell-card-content","description":"quarto-resource-cell-card-content"},"color":{"_internalId":212864,"type":"ref","$ref":"quarto-resource-cell-card-color","description":"quarto-resource-cell-card-color"},"eval":{"_internalId":212865,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":212866,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":212867,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":212868,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":212869,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":212870,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"lst-label":{"_internalId":212871,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-label","description":"quarto-resource-cell-codeoutput-lst-label"},"lst-cap":{"_internalId":212872,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-cap","description":"quarto-resource-cell-codeoutput-lst-cap"},"tidy":{"_internalId":212873,"type":"ref","$ref":"quarto-resource-cell-codeoutput-tidy","description":"quarto-resource-cell-codeoutput-tidy"},"tidy-opts":{"_internalId":212874,"type":"ref","$ref":"quarto-resource-cell-codeoutput-tidy-opts","description":"quarto-resource-cell-codeoutput-tidy-opts"},"collapse":{"_internalId":212875,"type":"ref","$ref":"quarto-resource-cell-codeoutput-collapse","description":"quarto-resource-cell-codeoutput-collapse"},"prompt":{"_internalId":212876,"type":"ref","$ref":"quarto-resource-cell-codeoutput-prompt","description":"quarto-resource-cell-codeoutput-prompt"},"highlight":{"_internalId":212877,"type":"ref","$ref":"quarto-resource-cell-codeoutput-highlight","description":"quarto-resource-cell-codeoutput-highlight"},"class-source":{"_internalId":212878,"type":"ref","$ref":"quarto-resource-cell-codeoutput-class-source","description":"quarto-resource-cell-codeoutput-class-source"},"attr-source":{"_internalId":212879,"type":"ref","$ref":"quarto-resource-cell-codeoutput-attr-source","description":"quarto-resource-cell-codeoutput-attr-source"},"fig-width":{"_internalId":212880,"type":"ref","$ref":"quarto-resource-cell-figure-fig-width","description":"quarto-resource-cell-figure-fig-width"},"fig-height":{"_internalId":212881,"type":"ref","$ref":"quarto-resource-cell-figure-fig-height","description":"quarto-resource-cell-figure-fig-height"},"fig-cap":{"_internalId":212882,"type":"ref","$ref":"quarto-resource-cell-figure-fig-cap","description":"quarto-resource-cell-figure-fig-cap"},"fig-subcap":{"_internalId":212883,"type":"ref","$ref":"quarto-resource-cell-figure-fig-subcap","description":"quarto-resource-cell-figure-fig-subcap"},"fig-link":{"_internalId":212884,"type":"ref","$ref":"quarto-resource-cell-figure-fig-link","description":"quarto-resource-cell-figure-fig-link"},"fig-align":{"_internalId":212885,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-alt":{"_internalId":212886,"type":"ref","$ref":"quarto-resource-cell-figure-fig-alt","description":"quarto-resource-cell-figure-fig-alt"},"fig-env":{"_internalId":212887,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":212888,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"fig-scap":{"_internalId":212889,"type":"ref","$ref":"quarto-resource-cell-figure-fig-scap","description":"quarto-resource-cell-figure-fig-scap"},"fig-format":{"_internalId":212890,"type":"ref","$ref":"quarto-resource-cell-figure-fig-format","description":"quarto-resource-cell-figure-fig-format"},"fig-dpi":{"_internalId":212891,"type":"ref","$ref":"quarto-resource-cell-figure-fig-dpi","description":"quarto-resource-cell-figure-fig-dpi"},"fig-asp":{"_internalId":212892,"type":"ref","$ref":"quarto-resource-cell-figure-fig-asp","description":"quarto-resource-cell-figure-fig-asp"},"out-width":{"_internalId":212893,"type":"ref","$ref":"quarto-resource-cell-figure-out-width","description":"quarto-resource-cell-figure-out-width"},"out-height":{"_internalId":212894,"type":"ref","$ref":"quarto-resource-cell-figure-out-height","description":"quarto-resource-cell-figure-out-height"},"fig-keep":{"_internalId":212895,"type":"ref","$ref":"quarto-resource-cell-figure-fig-keep","description":"quarto-resource-cell-figure-fig-keep"},"fig-show":{"_internalId":212896,"type":"ref","$ref":"quarto-resource-cell-figure-fig-show","description":"quarto-resource-cell-figure-fig-show"},"out-extra":{"_internalId":212897,"type":"ref","$ref":"quarto-resource-cell-figure-out-extra","description":"quarto-resource-cell-figure-out-extra"},"external":{"_internalId":212898,"type":"ref","$ref":"quarto-resource-cell-figure-external","description":"quarto-resource-cell-figure-external"},"sanitize":{"_internalId":212899,"type":"ref","$ref":"quarto-resource-cell-figure-sanitize","description":"quarto-resource-cell-figure-sanitize"},"interval":{"_internalId":212900,"type":"ref","$ref":"quarto-resource-cell-figure-interval","description":"quarto-resource-cell-figure-interval"},"aniopts":{"_internalId":212901,"type":"ref","$ref":"quarto-resource-cell-figure-aniopts","description":"quarto-resource-cell-figure-aniopts"},"animation-hook":{"_internalId":212902,"type":"ref","$ref":"quarto-resource-cell-figure-animation-hook","description":"quarto-resource-cell-figure-animation-hook"},"child":{"_internalId":212903,"type":"ref","$ref":"quarto-resource-cell-include-child","description":"quarto-resource-cell-include-child"},"file":{"_internalId":212904,"type":"ref","$ref":"quarto-resource-cell-include-file","description":"quarto-resource-cell-include-file"},"code":{"_internalId":212905,"type":"ref","$ref":"quarto-resource-cell-include-code","description":"quarto-resource-cell-include-code"},"purl":{"_internalId":212906,"type":"ref","$ref":"quarto-resource-cell-include-purl","description":"quarto-resource-cell-include-purl"},"layout":{"_internalId":212907,"type":"ref","$ref":"quarto-resource-cell-layout-layout","description":"quarto-resource-cell-layout-layout"},"layout-ncol":{"_internalId":212908,"type":"ref","$ref":"quarto-resource-cell-layout-layout-ncol","description":"quarto-resource-cell-layout-layout-ncol"},"layout-nrow":{"_internalId":212909,"type":"ref","$ref":"quarto-resource-cell-layout-layout-nrow","description":"quarto-resource-cell-layout-layout-nrow"},"layout-align":{"_internalId":212910,"type":"ref","$ref":"quarto-resource-cell-layout-layout-align","description":"quarto-resource-cell-layout-layout-align"},"layout-valign":{"_internalId":212911,"type":"ref","$ref":"quarto-resource-cell-layout-layout-valign","description":"quarto-resource-cell-layout-layout-valign"},"column":{"_internalId":212912,"type":"ref","$ref":"quarto-resource-cell-pagelayout-column","description":"quarto-resource-cell-pagelayout-column"},"fig-column":{"_internalId":212913,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-column","description":"quarto-resource-cell-pagelayout-fig-column"},"tbl-column":{"_internalId":212914,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-column","description":"quarto-resource-cell-pagelayout-tbl-column"},"cap-location":{"_internalId":212915,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":212916,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":212917,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-cap":{"_internalId":212918,"type":"ref","$ref":"quarto-resource-cell-table-tbl-cap","description":"quarto-resource-cell-table-tbl-cap"},"tbl-subcap":{"_internalId":212919,"type":"ref","$ref":"quarto-resource-cell-table-tbl-subcap","description":"quarto-resource-cell-table-tbl-subcap"},"tbl-colwidths":{"_internalId":212920,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"html-table-processing":{"_internalId":212921,"type":"ref","$ref":"quarto-resource-cell-table-html-table-processing","description":"quarto-resource-cell-table-html-table-processing"},"output":{"_internalId":212922,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":212923,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":212924,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":212925,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"panel":{"_internalId":212926,"type":"ref","$ref":"quarto-resource-cell-textoutput-panel","description":"quarto-resource-cell-textoutput-panel"},"output-location":{"_internalId":212927,"type":"ref","$ref":"quarto-resource-cell-textoutput-output-location","description":"quarto-resource-cell-textoutput-output-location"},"message":{"_internalId":212928,"type":"ref","$ref":"quarto-resource-cell-textoutput-message","description":"quarto-resource-cell-textoutput-message"},"results":{"_internalId":212929,"type":"ref","$ref":"quarto-resource-cell-textoutput-results","description":"quarto-resource-cell-textoutput-results"},"comment":{"_internalId":212930,"type":"ref","$ref":"quarto-resource-cell-textoutput-comment","description":"quarto-resource-cell-textoutput-comment"},"class-output":{"_internalId":212931,"type":"ref","$ref":"quarto-resource-cell-textoutput-class-output","description":"quarto-resource-cell-textoutput-class-output"},"attr-output":{"_internalId":212932,"type":"ref","$ref":"quarto-resource-cell-textoutput-attr-output","description":"quarto-resource-cell-textoutput-attr-output"},"class-warning":{"_internalId":212933,"type":"ref","$ref":"quarto-resource-cell-textoutput-class-warning","description":"quarto-resource-cell-textoutput-class-warning"},"attr-warning":{"_internalId":212934,"type":"ref","$ref":"quarto-resource-cell-textoutput-attr-warning","description":"quarto-resource-cell-textoutput-attr-warning"},"class-message":{"_internalId":212935,"type":"ref","$ref":"quarto-resource-cell-textoutput-class-message","description":"quarto-resource-cell-textoutput-class-message"},"attr-message":{"_internalId":212936,"type":"ref","$ref":"quarto-resource-cell-textoutput-attr-message","description":"quarto-resource-cell-textoutput-attr-message"},"class-error":{"_internalId":212937,"type":"ref","$ref":"quarto-resource-cell-textoutput-class-error","description":"quarto-resource-cell-textoutput-class-error"},"attr-error":{"_internalId":212938,"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":212992,"type":"object","description":"be an object","properties":{"label":{"_internalId":212941,"type":"ref","$ref":"quarto-resource-cell-attributes-label","description":"quarto-resource-cell-attributes-label"},"classes":{"_internalId":212942,"type":"ref","$ref":"quarto-resource-cell-attributes-classes","description":"quarto-resource-cell-attributes-classes"},"renderings":{"_internalId":212943,"type":"ref","$ref":"quarto-resource-cell-attributes-renderings","description":"quarto-resource-cell-attributes-renderings"},"tags":{"_internalId":212944,"type":"ref","$ref":"quarto-resource-cell-attributes-tags","description":"quarto-resource-cell-attributes-tags"},"id":{"_internalId":212945,"type":"ref","$ref":"quarto-resource-cell-attributes-id","description":"quarto-resource-cell-attributes-id"},"export":{"_internalId":212946,"type":"ref","$ref":"quarto-resource-cell-attributes-export","description":"quarto-resource-cell-attributes-export"},"title":{"_internalId":212947,"type":"ref","$ref":"quarto-resource-cell-card-title","description":"quarto-resource-cell-card-title"},"padding":{"_internalId":212948,"type":"ref","$ref":"quarto-resource-cell-card-padding","description":"quarto-resource-cell-card-padding"},"expandable":{"_internalId":212949,"type":"ref","$ref":"quarto-resource-cell-card-expandable","description":"quarto-resource-cell-card-expandable"},"width":{"_internalId":212950,"type":"ref","$ref":"quarto-resource-cell-card-width","description":"quarto-resource-cell-card-width"},"height":{"_internalId":212951,"type":"ref","$ref":"quarto-resource-cell-card-height","description":"quarto-resource-cell-card-height"},"context":{"_internalId":212952,"type":"ref","$ref":"quarto-resource-cell-card-context","description":"quarto-resource-cell-card-context"},"content":{"_internalId":212953,"type":"ref","$ref":"quarto-resource-cell-card-content","description":"quarto-resource-cell-card-content"},"color":{"_internalId":212954,"type":"ref","$ref":"quarto-resource-cell-card-color","description":"quarto-resource-cell-card-color"},"eval":{"_internalId":212955,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":212956,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":212957,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":212958,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":212959,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":212960,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"lst-label":{"_internalId":212961,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-label","description":"quarto-resource-cell-codeoutput-lst-label"},"lst-cap":{"_internalId":212962,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-cap","description":"quarto-resource-cell-codeoutput-lst-cap"},"fig-cap":{"_internalId":212963,"type":"ref","$ref":"quarto-resource-cell-figure-fig-cap","description":"quarto-resource-cell-figure-fig-cap"},"fig-subcap":{"_internalId":212964,"type":"ref","$ref":"quarto-resource-cell-figure-fig-subcap","description":"quarto-resource-cell-figure-fig-subcap"},"fig-link":{"_internalId":212965,"type":"ref","$ref":"quarto-resource-cell-figure-fig-link","description":"quarto-resource-cell-figure-fig-link"},"fig-align":{"_internalId":212966,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-alt":{"_internalId":212967,"type":"ref","$ref":"quarto-resource-cell-figure-fig-alt","description":"quarto-resource-cell-figure-fig-alt"},"fig-env":{"_internalId":212968,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":212969,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"fig-scap":{"_internalId":212970,"type":"ref","$ref":"quarto-resource-cell-figure-fig-scap","description":"quarto-resource-cell-figure-fig-scap"},"layout":{"_internalId":212971,"type":"ref","$ref":"quarto-resource-cell-layout-layout","description":"quarto-resource-cell-layout-layout"},"layout-ncol":{"_internalId":212972,"type":"ref","$ref":"quarto-resource-cell-layout-layout-ncol","description":"quarto-resource-cell-layout-layout-ncol"},"layout-nrow":{"_internalId":212973,"type":"ref","$ref":"quarto-resource-cell-layout-layout-nrow","description":"quarto-resource-cell-layout-layout-nrow"},"layout-align":{"_internalId":212974,"type":"ref","$ref":"quarto-resource-cell-layout-layout-align","description":"quarto-resource-cell-layout-layout-align"},"layout-valign":{"_internalId":212975,"type":"ref","$ref":"quarto-resource-cell-layout-layout-valign","description":"quarto-resource-cell-layout-layout-valign"},"column":{"_internalId":212976,"type":"ref","$ref":"quarto-resource-cell-pagelayout-column","description":"quarto-resource-cell-pagelayout-column"},"fig-column":{"_internalId":212977,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-column","description":"quarto-resource-cell-pagelayout-fig-column"},"tbl-column":{"_internalId":212978,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-column","description":"quarto-resource-cell-pagelayout-tbl-column"},"cap-location":{"_internalId":212979,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":212980,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":212981,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-cap":{"_internalId":212982,"type":"ref","$ref":"quarto-resource-cell-table-tbl-cap","description":"quarto-resource-cell-table-tbl-cap"},"tbl-subcap":{"_internalId":212983,"type":"ref","$ref":"quarto-resource-cell-table-tbl-subcap","description":"quarto-resource-cell-table-tbl-subcap"},"tbl-colwidths":{"_internalId":212984,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"html-table-processing":{"_internalId":212985,"type":"ref","$ref":"quarto-resource-cell-table-html-table-processing","description":"quarto-resource-cell-table-html-table-processing"},"output":{"_internalId":212986,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":212987,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":212988,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":212989,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"panel":{"_internalId":212990,"type":"ref","$ref":"quarto-resource-cell-textoutput-panel","description":"quarto-resource-cell-textoutput-panel"},"output-location":{"_internalId":212991,"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":213040,"type":"object","description":"be an object","properties":{"label":{"_internalId":212994,"type":"ref","$ref":"quarto-resource-cell-attributes-label","description":"quarto-resource-cell-attributes-label"},"classes":{"_internalId":212995,"type":"ref","$ref":"quarto-resource-cell-attributes-classes","description":"quarto-resource-cell-attributes-classes"},"renderings":{"_internalId":212996,"type":"ref","$ref":"quarto-resource-cell-attributes-renderings","description":"quarto-resource-cell-attributes-renderings"},"title":{"_internalId":212997,"type":"ref","$ref":"quarto-resource-cell-card-title","description":"quarto-resource-cell-card-title"},"padding":{"_internalId":212998,"type":"ref","$ref":"quarto-resource-cell-card-padding","description":"quarto-resource-cell-card-padding"},"expandable":{"_internalId":212999,"type":"ref","$ref":"quarto-resource-cell-card-expandable","description":"quarto-resource-cell-card-expandable"},"width":{"_internalId":213000,"type":"ref","$ref":"quarto-resource-cell-card-width","description":"quarto-resource-cell-card-width"},"height":{"_internalId":213001,"type":"ref","$ref":"quarto-resource-cell-card-height","description":"quarto-resource-cell-card-height"},"content":{"_internalId":213002,"type":"ref","$ref":"quarto-resource-cell-card-content","description":"quarto-resource-cell-card-content"},"color":{"_internalId":213003,"type":"ref","$ref":"quarto-resource-cell-card-color","description":"quarto-resource-cell-card-color"},"eval":{"_internalId":213004,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":213005,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":213006,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":213007,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":213008,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":213009,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"lst-label":{"_internalId":213010,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-label","description":"quarto-resource-cell-codeoutput-lst-label"},"lst-cap":{"_internalId":213011,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-cap","description":"quarto-resource-cell-codeoutput-lst-cap"},"fig-cap":{"_internalId":213012,"type":"ref","$ref":"quarto-resource-cell-figure-fig-cap","description":"quarto-resource-cell-figure-fig-cap"},"fig-subcap":{"_internalId":213013,"type":"ref","$ref":"quarto-resource-cell-figure-fig-subcap","description":"quarto-resource-cell-figure-fig-subcap"},"fig-link":{"_internalId":213014,"type":"ref","$ref":"quarto-resource-cell-figure-fig-link","description":"quarto-resource-cell-figure-fig-link"},"fig-align":{"_internalId":213015,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-alt":{"_internalId":213016,"type":"ref","$ref":"quarto-resource-cell-figure-fig-alt","description":"quarto-resource-cell-figure-fig-alt"},"fig-env":{"_internalId":213017,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":213018,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"fig-scap":{"_internalId":213019,"type":"ref","$ref":"quarto-resource-cell-figure-fig-scap","description":"quarto-resource-cell-figure-fig-scap"},"layout":{"_internalId":213020,"type":"ref","$ref":"quarto-resource-cell-layout-layout","description":"quarto-resource-cell-layout-layout"},"layout-ncol":{"_internalId":213021,"type":"ref","$ref":"quarto-resource-cell-layout-layout-ncol","description":"quarto-resource-cell-layout-layout-ncol"},"layout-nrow":{"_internalId":213022,"type":"ref","$ref":"quarto-resource-cell-layout-layout-nrow","description":"quarto-resource-cell-layout-layout-nrow"},"layout-align":{"_internalId":213023,"type":"ref","$ref":"quarto-resource-cell-layout-layout-align","description":"quarto-resource-cell-layout-layout-align"},"layout-valign":{"_internalId":213024,"type":"ref","$ref":"quarto-resource-cell-layout-layout-valign","description":"quarto-resource-cell-layout-layout-valign"},"column":{"_internalId":213025,"type":"ref","$ref":"quarto-resource-cell-pagelayout-column","description":"quarto-resource-cell-pagelayout-column"},"fig-column":{"_internalId":213026,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-column","description":"quarto-resource-cell-pagelayout-fig-column"},"tbl-column":{"_internalId":213027,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-column","description":"quarto-resource-cell-pagelayout-tbl-column"},"cap-location":{"_internalId":213028,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":213029,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":213030,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-cap":{"_internalId":213031,"type":"ref","$ref":"quarto-resource-cell-table-tbl-cap","description":"quarto-resource-cell-table-tbl-cap"},"tbl-subcap":{"_internalId":213032,"type":"ref","$ref":"quarto-resource-cell-table-tbl-subcap","description":"quarto-resource-cell-table-tbl-subcap"},"html-table-processing":{"_internalId":213033,"type":"ref","$ref":"quarto-resource-cell-table-html-table-processing","description":"quarto-resource-cell-table-html-table-processing"},"output":{"_internalId":213034,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":213035,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":213036,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":213037,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"panel":{"_internalId":213038,"type":"ref","$ref":"quarto-resource-cell-textoutput-panel","description":"quarto-resource-cell-textoutput-panel"},"output-location":{"_internalId":213039,"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-numbering-page-numbering":{"_internalId":217749,"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 `i`, or `false` to omit page numbering.\n","$id":"quarto-resource-document-numbering-page-numbering"}} \ 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"},"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":"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":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":"Displays a ‘reader-mode’ tool which allows users to hide the sidebar\nand table of contents when viewing a page."},{"_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":"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":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":"Storage options for Google Analytics data"},"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":"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":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":"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":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":"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":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":"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":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 type of announcement. Affects the appearance of the\nannouncement."},"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":"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":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":"The style of the consent banner that is displayed"},"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":"Whether to use a dark or light appearance for the consent banner\n(light or dark)."},"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":"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":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":"Type of search UI (overlay or textbox)"},"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":"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":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":"Whether to include search result parents when displaying items in\nsearch results (when possible)."},{"_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":"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":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":"Use external Algolia search index"},"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":"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":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":"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":688,"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":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":"Specification of image that will be displayed to the left of the\ntitle."},"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":"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":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":"List of items for the left side of the navbar."},"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":"List of items for the right side of the navbar."},"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":"The position of the collapsed navbar toggle when in responsive\nmode"},"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":"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":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":"The sidebar title. Uses the project title if none is specified."},"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":"Specification of image that will be displayed in the sidebar."},"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":"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":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":"List of items for the sidebar"},"contents":{"_internalId":780,"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":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":"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":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":"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":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":"Markdown to place below sidebar content (text or file path)"},"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":"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":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":"The sidebar title. Uses the project title if none is specified."},"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":"Specification of image that will be displayed in the sidebar."},"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":"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":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":"List of items for the sidebar"},"contents":{"_internalId":780,"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":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":"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":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":"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":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":"Markdown to place below sidebar content (text or file path)"},"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":"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":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":"Markdown to place below margin content (text or file path)"},"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":"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":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":"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":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":"Publish twitter card metadata"},"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":"A list of other links to appear below the TOC."},"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":"A list of code links to appear with this document."},"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":"A list of input documents that should be treated as drafts"},"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":"How to handle drafts that are encountered."},"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 subtitle"}},"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":"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":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":"Displays a ‘reader-mode’ tool which allows users to hide the sidebar\nand table of contents when viewing a page."},{"_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":"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":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":"Storage options for Google Analytics data"},"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":"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":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":"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":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":"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":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":"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":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 type of announcement. Affects the appearance of the\nannouncement."},"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":"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":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":"The style of the consent banner that is displayed"},"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":"Whether to use a dark or light appearance for the consent banner\n(light or dark)."},"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":"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":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":"Type of search UI (overlay or textbox)"},"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":"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":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":"Whether to include search result parents when displaying items in\nsearch results (when possible)."},{"_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":"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":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":"Use external Algolia search index"},"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":"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":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":"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":688,"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":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":"Specification of image that will be displayed to the left of the\ntitle."},"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":"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":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":"List of items for the left side of the navbar."},"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":"List of items for the right side of the navbar."},"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":"The position of the collapsed navbar toggle when in responsive\nmode"},"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":"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":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":"The sidebar title. Uses the project title if none is specified."},"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":"Specification of image that will be displayed in the sidebar."},"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":"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":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":"List of items for the sidebar"},"contents":{"_internalId":780,"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":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":"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":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":"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":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":"Markdown to place below sidebar content (text or file path)"},"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":"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":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":"The sidebar title. Uses the project title if none is specified."},"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":"Specification of image that will be displayed in the sidebar."},"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":"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":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":"List of items for the sidebar"},"contents":{"_internalId":780,"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":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":"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":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":"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":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":"Markdown to place below sidebar content (text or file path)"},"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":"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":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":"Markdown to place below margin content (text or file path)"},"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":"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":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":"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":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":"Publish twitter card metadata"},"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":"A list of other links to appear below the TOC."},"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":"A list of code links to appear with this document."},"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":"A list of input documents that should be treated as drafts"},"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":"How to handle drafts that are encountered."},"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 subtitle"},"subtitle":{"type":"string","description":"be a string","tags":{"description":"Book subtitle"},"documentation":"Author or authors of the book"},"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":"Book publication date"},{"_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":"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":932,"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":937,"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":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":"Download buttons for other formats to include on navbar or sidebar\n(one or more of pdf, epub, and\ndocx)"},{"_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":"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":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":"Custom tools for navbar or sidebar"},{"_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":"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":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":"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":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":"Date the item has been accessed."},"accessed":{"_internalId":1410,"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":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":"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":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":"Chapter number (e.g. chapter number in a book; track number on an\nalbum)."},"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":"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":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":"Editor of the collection holding the item (e.g. the series editor for\na book).","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":"Number identifying the collection holding the item (e.g. the series\nnumber for a book)"},"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":"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":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":"Composer (e.g. of a musical score)."},"composer":{"_internalId":1464,"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":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":"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":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":"Curator of an exhibit or collection (e.g. in a museum)."},"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":"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":1482,"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":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":"The editor of the item."},"editor":{"_internalId":1494,"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":1497,"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":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":"Date the event related to an item took place."},"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":"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":1514,"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":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":"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":1526,"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":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":"A value which uniquely identifies this item."},"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":"Illustrator (e.g. of a children’s book or graphic novel)."},"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":"Interviewer (e.g. of an interview)."},"interviewer":{"_internalId":1542,"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":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":"Date the item was issued/published."},"issued":{"_internalId":1560,"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":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":"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":1576,"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":1581,"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":1584,"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":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":"Organizer of an event (e.g. organizer of a workshop or\nconference)."},"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":"The original creator of a work."},"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":"Issue date of the original version."},"original-date":{"_internalId":1596,"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":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":"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":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":"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":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":"Number of the specific part of the item being cited (e.g. part 2 of a\njournal article)."},"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":"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":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":"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":1636,"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":1639,"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":1648,"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":1651,"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":1660,"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":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":"Creator of a series (e.g. of a television series)."},"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":"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":1673,"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":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":"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":1681,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Translator"},"documentation":"The type\nof the item."},"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":"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":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":"Volume number of the item (e.g. “2” when citing volume 2 of a book)\nor the container holding the item."},"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":"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":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":"Date the item has been accessed."},"accessed":{"_internalId":1410,"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":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":"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":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":"Chapter number (e.g. chapter number in a book; track number on an\nalbum)."},"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":"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":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":"Editor of the collection holding the item (e.g. the series editor for\na book).","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":"Number identifying the collection holding the item (e.g. the series\nnumber for a book)"},"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":"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":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":"Composer (e.g. of a musical score)."},"composer":{"_internalId":1464,"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":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":"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":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":"Curator of an exhibit or collection (e.g. in a museum)."},"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":"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":1482,"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":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":"The editor of the item."},"editor":{"_internalId":1494,"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":1497,"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":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":"Date the event related to an item took place."},"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":"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":1514,"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":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":"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":1526,"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":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":"A value which uniquely identifies this item."},"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":"Interviewer (e.g. of an interview)."},"interviewer":{"_internalId":1542,"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":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":"Date the item was issued/published."},"issued":{"_internalId":1560,"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":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":"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":1576,"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":1581,"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":1584,"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":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":"Organizer of an event (e.g. organizer of a workshop or\nconference)."},"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":"The original creator of a work."},"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":"Issue date of the original version."},"original-date":{"_internalId":1596,"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":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":"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":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":"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":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":"Number of the specific part of the item being cited (e.g. part 2 of a\njournal article)."},"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":"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":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":"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":1636,"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":1639,"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":1648,"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":1651,"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":1660,"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":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":"Creator of a series (e.g. of a television series)."},"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":"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":1673,"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":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":"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":1681,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Translator"},"documentation":"The type\nof the item."},"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":"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":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":"Volume number of the item (e.g. “2” when citing volume 2 of a book)\nor the container holding the item."},"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":"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":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":"Date the item has been accessed."},"accessed":{"_internalId":1410,"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":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":"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":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":"Chapter number (e.g. chapter number in a book; track number on an\nalbum)."},"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":"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":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":"Editor of the collection holding the item (e.g. the series editor for\na book).","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":"Number identifying the collection holding the item (e.g. the series\nnumber for a book)"},"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":"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":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":"Composer (e.g. of a musical score)."},"composer":{"_internalId":1464,"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":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":"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":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":"Curator of an exhibit or collection (e.g. in a museum)."},"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":"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":1482,"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":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":"The editor of the item."},"editor":{"_internalId":1494,"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":1497,"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":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":"Date the event related to an item took place."},"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":"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":1514,"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":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":"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":1526,"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":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":"A value which uniquely identifies this item."},"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":"Interviewer (e.g. of an interview)."},"interviewer":{"_internalId":1542,"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":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":"Date the item was issued/published."},"issued":{"_internalId":1560,"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":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":"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":1576,"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":1581,"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":1584,"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":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":"Organizer of an event (e.g. organizer of a workshop or\nconference)."},"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":"The original creator of a work."},"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":"Issue date of the original version."},"original-date":{"_internalId":1596,"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":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":"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":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":"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":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":"Number of the specific part of the item being cited (e.g. part 2 of a\njournal article)."},"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":"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":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":"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":1636,"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":1639,"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":1648,"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":1651,"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":1660,"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":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":"Creator of a series (e.g. of a television series)."},"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":"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":1673,"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":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":"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":1681,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Translator"},"documentation":"The type\nof the item."},"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":"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":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":"Volume number of the item (e.g. “2” when citing volume 2 of a book)\nor the container holding the item."},"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":"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":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":2169,"type":"anyOf","anyOf":[{"_internalId":2155,"type":"ref","$ref":"logo-specifier","description":"be logo-specifier"},{"_internalId":2168,"type":"object","description":"be an object","properties":{"light":{"_internalId":2162,"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":2167,"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: 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\n"},"documentation":"Any of the ways a logo can be specified: string, object, or\nlight/dark object of string or object"},"logo-light-dark-specifier-path-optional":{"_internalId":2188,"type":"anyOf","anyOf":[{"_internalId":2174,"type":"ref","$ref":"logo-specifier-path-optional","description":"be logo-specifier-path-optional"},{"_internalId":2187,"type":"object","description":"be an object","properties":{"light":{"_internalId":2181,"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":2186,"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":2201,"type":"object","description":"be an object","properties":{"light":{"_internalId":2195,"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":2200,"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":2276,"type":"object","description":"be an object","properties":{"palette":{"_internalId":2215,"type":"object","description":"be an object","properties":{},"patternProperties":{},"additionalProperties":{"_internalId":2214,"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":2220,"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":2225,"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":2230,"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":2235,"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":2240,"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":2245,"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":2250,"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":2255,"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":2260,"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":2265,"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":2270,"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":2275,"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":2295,"type":"anyOf","anyOf":[{"_internalId":2281,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value"},{"_internalId":2294,"type":"object","description":"be an object","properties":{"light":{"_internalId":2288,"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":2293,"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":2366,"type":"object","description":"be an object","properties":{"palette":{"_internalId":2305,"type":"object","description":"be an object","properties":{},"patternProperties":{},"additionalProperties":{"_internalId":2304,"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":2310,"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":2315,"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":2320,"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":2325,"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":2330,"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":2335,"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":2340,"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":2345,"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":2350,"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":2355,"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":2360,"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":2365,"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":2376,"type":"anyOf","anyOf":[{"_internalId":2371,"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":2395,"type":"anyOf","anyOf":[{"_internalId":2381,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},{"_internalId":2394,"type":"object","description":"be an object","properties":{"light":{"_internalId":2388,"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":2393,"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":2398,"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":2425,"type":"object","description":"be an object","properties":{"fonts":{"_internalId":2406,"type":"array","description":"be an array of values, where each element must be brand-font","items":{"_internalId":2405,"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":2409,"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":2412,"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":2415,"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":2418,"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":2421,"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":2424,"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":2452,"type":"object","description":"be an object","properties":{"fonts":{"_internalId":2433,"type":"array","description":"be an array of values, where each element must be brand-font","items":{"_internalId":2432,"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":2436,"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":2439,"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":2442,"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":2445,"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":2448,"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":2451,"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":2470,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2469,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2465,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"line-height":{"_internalId":2468,"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":2492,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2491,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"weight":{"_internalId":2481,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"style":{"_internalId":2484,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},"color":{"_internalId":2487,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"line-height":{"_internalId":2490,"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":2514,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2513,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"weight":{"_internalId":2503,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"style":{"_internalId":2506,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},"color":{"_internalId":2509,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"line-height":{"_internalId":2512,"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":2535,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2534,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2527,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2530,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"background-color":{"_internalId":2533,"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":2556,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2555,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2548,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2551,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"background-color":{"_internalId":2554,"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":2577,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2576,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2569,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2572,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"background-color":{"_internalId":2575,"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":2598,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2597,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2590,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2593,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"background-color":{"_internalId":2596,"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":2605,"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":2629,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2628,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2618,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2621,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"background-color":{"_internalId":2624,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"line-height":{"_internalId":2627,"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":2653,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2652,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2642,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2645,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"background-color":{"_internalId":2648,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"line-height":{"_internalId":2651,"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":2672,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2671,"type":"object","description":"be an object","properties":{"weight":{"_internalId":2662,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2665,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"background-color":{"_internalId":2668,"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":2691,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2690,"type":"object","description":"be an object","properties":{"weight":{"_internalId":2681,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2684,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"background-color":{"_internalId":2687,"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":2694,"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":2709,"type":"anyOf","anyOf":[{"_internalId":2699,"type":"ref","$ref":"brand-font-google","description":"be brand-font-google"},{"_internalId":2702,"type":"ref","$ref":"brand-font-bunny","description":"be brand-font-bunny"},{"_internalId":2705,"type":"ref","$ref":"brand-font-file","description":"be brand-font-file"},{"_internalId":2708,"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":2712,"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":2715,"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":2741,"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":2730,"type":"anyOf","anyOf":[{"_internalId":2728,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},{"_internalId":2729,"type":"array","description":"be an array of values, where each element must be brand-font-weight","items":{"_internalId":2728,"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":2737,"type":"anyOf","anyOf":[{"_internalId":2735,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},{"_internalId":2736,"type":"array","description":"be an array of values, where each element must be brand-font-style","items":{"_internalId":2735,"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":2740,"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":2741,"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":2730,"type":"anyOf","anyOf":[{"_internalId":2728,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},{"_internalId":2729,"type":"array","description":"be an array of values, where each element must be brand-font-weight","items":{"_internalId":2728,"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":2737,"type":"anyOf","anyOf":[{"_internalId":2735,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},{"_internalId":2736,"type":"array","description":"be an array of values, where each element must be brand-font-style","items":{"_internalId":2735,"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":2740,"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":2746,"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":2741,"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":2730,"type":"anyOf","anyOf":[{"_internalId":2728,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},{"_internalId":2729,"type":"array","description":"be an array of values, where each element must be brand-font-weight","items":{"_internalId":2728,"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":2737,"type":"anyOf","anyOf":[{"_internalId":2735,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},{"_internalId":2736,"type":"array","description":"be an array of values, where each element must be brand-font-style","items":{"_internalId":2735,"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":2740,"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":2754,"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":2741,"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":2730,"type":"anyOf","anyOf":[{"_internalId":2728,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},{"_internalId":2729,"type":"array","description":"be an array of values, where each element must be brand-font-weight","items":{"_internalId":2728,"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":2737,"type":"anyOf","anyOf":[{"_internalId":2735,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},{"_internalId":2736,"type":"array","description":"be an array of values, where each element must be brand-font-style","items":{"_internalId":2735,"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":2740,"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":2762,"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":2798,"type":"object","description":"be an object","properties":{"source":{"_internalId":2770,"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":2797,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":2796,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2795,"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":2791,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"style":{"_internalId":2794,"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":2820,"type":"object","description":"be an object","properties":{"meta":{"_internalId":2807,"type":"ref","$ref":"brand-meta","description":"be brand-meta"},"logo":{"_internalId":2810,"type":"ref","$ref":"brand-logo-single","description":"be brand-logo-single"},"color":{"_internalId":2813,"type":"ref","$ref":"brand-color-single","description":"be brand-color-single"},"typography":{"_internalId":2816,"type":"ref","$ref":"brand-typography-single","description":"be brand-typography-single"},"defaults":{"_internalId":2819,"type":"ref","$ref":"brand-defaults","description":"be brand-defaults"}},"patternProperties":{},"closed":true,"$id":"brand-single"},"brand-unified":{"_internalId":2838,"type":"object","description":"be an object","properties":{"meta":{"_internalId":2825,"type":"ref","$ref":"brand-meta","description":"be brand-meta"},"logo":{"_internalId":2828,"type":"ref","$ref":"brand-logo-unified","description":"be brand-logo-unified"},"color":{"_internalId":2831,"type":"ref","$ref":"brand-color-unified","description":"be brand-color-unified"},"typography":{"_internalId":2834,"type":"ref","$ref":"brand-typography-unified","description":"be brand-typography-unified"},"defaults":{"_internalId":2837,"type":"ref","$ref":"brand-defaults","description":"be brand-defaults"}},"patternProperties":{},"closed":true,"$id":"brand-unified"},"brand-path-only-light-dark":{"_internalId":2850,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2849,"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":2879,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":2875,"type":"object","description":"be an object","properties":{"light":{"_internalId":2866,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2865,"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":2874,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2873,"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":2878,"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":2889,"type":"object","description":"be an object","properties":{"bootstrap":{"_internalId":2884,"type":"ref","$ref":"brand-defaults-bootstrap","description":"be brand-defaults-bootstrap"},"quarto":{"_internalId":2887,"type":"object","description":"be an object","properties":{},"patternProperties":{}}},"patternProperties":{},"$id":"brand-defaults"},"brand-defaults-bootstrap":{"_internalId":2908,"type":"object","description":"be an object","properties":{"defaults":{"_internalId":2907,"type":"object","description":"be an object","properties":{},"patternProperties":{},"additionalProperties":{"_internalId":2906,"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"},"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":2917,"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":2922,"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":2936,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2935,"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":2959,"type":"anyOf","anyOf":[{"_internalId":2952,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2951,"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":2958,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"_internalId":2957,"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":2970,"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":2979,"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":2986,"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":2991,"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":2999,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2998,"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":3009,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3008,"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":3017,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3016,"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":3022,"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":3029,"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":3041,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3040,"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":3046,"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":3058,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3057,"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":3064,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3063,"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":3074,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3073,"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":3086,"type":"anyOf","anyOf":[{"_internalId":3079,"type":"enum","enum":[true],"description":"be 'true'","completions":["true"],"exhaustiveCompletions":true},{"_internalId":3085,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3084,"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":3092,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3091,"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":3099,"type":"anyOf","anyOf":[{"_internalId":3097,"type":"enum","enum":["default","left","right","center"],"description":"be one of: `default`, `left`, `right`, `center`","completions":["default","left","right","center"],"exhaustiveCompletions":true},{"_internalId":3098,"type":"array","description":"be an array of values, where each element must be one of: `default`, `left`, `right`, `center`","items":{"_internalId":3097,"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":3105,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3104,"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":3111,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3110,"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":3123,"type":"anyOf","anyOf":[{"_internalId":3119,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3118,"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":3122,"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":3129,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3128,"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":3132,"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":3145,"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":3159,"type":"anyOf","anyOf":[{"_internalId":3152,"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":3158,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"_internalId":3157,"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":3162,"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":3180,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3179,"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":3199,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3198,"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":3197,"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":3206,"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":3209,"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":3212,"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":3215,"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":3218,"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":3221,"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"],"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":3224,"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"],"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":3227,"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"],"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":3233,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3232,"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":3245,"type":"anyOf","anyOf":[{"_internalId":3238,"type":"enum","enum":[true],"description":"be 'true'","completions":["true"],"exhaustiveCompletions":true},{"_internalId":3244,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3243,"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":3258,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3252,"type":"enum","enum":["auto"],"description":"be 'auto'","completions":["auto"],"exhaustiveCompletions":true},{"_internalId":3257,"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":3261,"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":3273,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3268,"type":"enum","enum":["asis"],"description":"be 'asis'","completions":["asis"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"},{"_internalId":3271,"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":3282,"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":3285,"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":3288,"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":3291,"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":3299,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3298,"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":3305,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3304,"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":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 warning output"},"documentation":"Class name(s) for warning output","$id":"quarto-resource-cell-textoutput-class-warning"},"quarto-resource-cell-textoutput-attr-warning":{"_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 warning output"},"documentation":"Attribute(s) for warning output","$id":"quarto-resource-cell-textoutput-attr-warning"},"quarto-resource-cell-textoutput-class-message":{"_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 message output"},"documentation":"Class name(s) for message output","$id":"quarto-resource-cell-textoutput-class-message"},"quarto-resource-cell-textoutput-attr-message":{"_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 message output"},"documentation":"Attribute(s) for message output","$id":"quarto-resource-cell-textoutput-attr-message"},"quarto-resource-cell-textoutput-class-error":{"_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 error output"},"documentation":"Class name(s) for error output","$id":"quarto-resource-cell-textoutput-class-error"},"quarto-resource-cell-textoutput-attr-error":{"_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 error output"},"documentation":"Attribute(s) for error output","$id":"quarto-resource-cell-textoutput-attr-error"},"quarto-resource-document-about-about":{"_internalId":3350,"type":"anyOf","anyOf":[{"_internalId":3346,"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":3349,"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":3357,"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":3360,"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":3363,"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":3374,"type":"anyOf","anyOf":[{"_internalId":3372,"type":"anyOf","anyOf":[{"_internalId":3368,"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":3373,"type":"array","description":"be an array of values, where each element must be at least one of: an object, a string","items":{"_internalId":3372,"type":"anyOf","anyOf":[{"_internalId":3368,"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":3385,"type":"anyOf","anyOf":[{"_internalId":3383,"type":"anyOf","anyOf":[{"_internalId":3379,"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":3384,"type":"array","description":"be an array of values, where each element must be at least one of: an object, a string","items":{"_internalId":3383,"type":"anyOf","anyOf":[{"_internalId":3379,"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":3386,"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":3388,"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":3390,"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":3402,"type":"anyOf","anyOf":[{"_internalId":3400,"type":"anyOf","anyOf":[{"_internalId":3396,"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":3401,"type":"array","description":"be an array of values, where each element must be at least one of: an object, a string","items":{"_internalId":3400,"type":"anyOf","anyOf":[{"_internalId":3396,"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":3413,"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":3427,"type":"anyOf","anyOf":[{"_internalId":3424,"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":3435,"type":"anyOf","anyOf":[{"_internalId":3432,"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":3445,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3444,"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":3464,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3463,"type":"object","description":"be an object","properties":{"source":{"_internalId":3458,"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":3471,"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":3478,"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":3490,"type":"anyOf","anyOf":[{"_internalId":3487,"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":3497,"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":3504,"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":3527,"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":3673,"type":"anyOf","anyOf":[{"_internalId":3532,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true},{"_internalId":3672,"type":"object","description":"be an object","properties":{"custom":{"_internalId":3560,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":3559,"type":"object","description":"be an object","properties":{"kind":{"_internalId":3541,"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":3558,"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":3617,"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":3620,"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":3623,"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":3626,"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":3629,"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":3632,"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":3635,"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":3638,"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":3641,"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":3644,"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":3647,"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":3650,"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":3653,"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":3662,"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":3665,"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":3678,"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":3681,"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":3711,"type":"anyOf","anyOf":[{"_internalId":3709,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3708,"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":3710,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":3709,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3708,"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":3752,"type":"anyOf","anyOf":[{"_internalId":3716,"type":"enum","enum":["source","visual"],"description":"be one of: `source`, `visual`","completions":["source","visual"],"exhaustiveCompletions":true},{"_internalId":3751,"type":"object","description":"be an object","properties":{"mode":{"_internalId":3721,"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":3746,"type":"object","description":"be an object","properties":{"wrap":{"_internalId":3731,"type":"anyOf","anyOf":[{"_internalId":3728,"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":3745,"type":"object","description":"be an object","properties":{"location":{"_internalId":3740,"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":3763,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3762,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3761,"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":3776,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3775,"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":3774,"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":3779,"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":3782,"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":3796,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3795,"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":3813,"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":3823,"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":3822,"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":3832,"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":3837,"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":3864,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"},{"_internalId":3863,"type":"object","description":"be an object","properties":{"kernelspec":{"_internalId":3862,"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":3881,"type":"object","description":"be an object","properties":{"exeflags":{"_internalId":3873,"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":3880,"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":3895,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3894,"type":"object","description":"be an object","properties":{"opts_knit":{"_internalId":3890,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":"Knit options."},"documentation":"Knit options."},"opts_chunk":{"_internalId":3893,"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":3903,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3902,"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":3911,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3910,"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":3935,"type":"anyOf","anyOf":[{"_internalId":3916,"type":"enum","enum":["shiny"],"description":"be 'shiny'","completions":["shiny"],"exhaustiveCompletions":true},{"_internalId":3934,"type":"object","description":"be an object","properties":{"type":{"_internalId":3921,"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":3927,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3926,"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":3933,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3932,"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":3942,"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":3957,"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":3979,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3978,"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":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":"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":3997,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3996,"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":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 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":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 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":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":["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":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 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":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":["$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":4038,"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":4044,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4043,"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":4055,"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"],"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":4061,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","completions":["yes","no","none","small","medium","big","first","next","odd","even","normal"]},{"_internalId":4060,"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":4064,"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":4173,"type":"anyOf","anyOf":[{"_internalId":4171,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4170,"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":4169,"type":"anyOf","anyOf":[{"_internalId":4167,"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":4108,"type":"anyOf","anyOf":[{"_internalId":4106,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4105,"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":4107,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":4106,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4105,"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":4137,"type":"anyOf","anyOf":[{"_internalId":4135,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4119,"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":4124,"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":4134,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4133,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4131,"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":4136,"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":4135,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4119,"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":4124,"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":4134,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4133,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4131,"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":4166,"type":"anyOf","anyOf":[{"_internalId":4164,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4148,"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":4153,"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":4163,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4162,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4160,"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":4165,"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":4164,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4148,"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":4153,"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":4163,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4162,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4160,"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":4168,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":4167,"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":4108,"type":"anyOf","anyOf":[{"_internalId":4106,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4105,"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":4107,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":4106,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4105,"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":4137,"type":"anyOf","anyOf":[{"_internalId":4135,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4119,"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":4124,"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":4134,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4133,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4131,"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":4136,"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":4135,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4119,"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":4124,"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":4134,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4133,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4131,"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":4166,"type":"anyOf","anyOf":[{"_internalId":4164,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4148,"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":4153,"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":4163,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4162,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4160,"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":4165,"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":4164,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4148,"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":4153,"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":4163,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4162,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4160,"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":4172,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":4171,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4170,"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":4169,"type":"anyOf","anyOf":[{"_internalId":4167,"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":4108,"type":"anyOf","anyOf":[{"_internalId":4106,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4105,"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":4107,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":4106,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4105,"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":4137,"type":"anyOf","anyOf":[{"_internalId":4135,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4119,"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":4124,"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":4134,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4133,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4131,"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":4136,"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":4135,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4119,"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":4124,"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":4134,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4133,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4131,"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":4166,"type":"anyOf","anyOf":[{"_internalId":4164,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4148,"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":4153,"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":4163,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4162,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4160,"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":4165,"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":4164,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4148,"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":4153,"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":4163,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4162,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4160,"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":4168,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":4167,"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":4108,"type":"anyOf","anyOf":[{"_internalId":4106,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4105,"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":4107,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":4106,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4105,"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":4137,"type":"anyOf","anyOf":[{"_internalId":4135,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4119,"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":4124,"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":4134,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4133,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4131,"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":4136,"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":4135,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4119,"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":4124,"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":4134,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4133,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4131,"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":4166,"type":"anyOf","anyOf":[{"_internalId":4164,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4148,"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":4153,"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":4163,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4162,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4160,"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":4165,"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":4164,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4148,"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":4153,"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":4163,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4162,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4160,"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":4182,"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":4187,"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":4188,"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":4190,"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":4194,"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":4209,"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":4214,"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":4230,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4229,"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":4236,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4235,"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":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 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":4254,"type":"anyOf","anyOf":[{"_internalId":4252,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4251,"type":"ref","$ref":"smart-include","description":"be smart-include"}],"description":"be at least one of: a string, smart-include"},{"_internalId":4253,"type":"array","description":"be an array of values, where each element must be at least one of: a string, smart-include","items":{"_internalId":4252,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4251,"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":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 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":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 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":4284,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4283,"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":4290,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4289,"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":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":["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":4309,"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":4318,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4316,"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":4323,"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":4340,"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":4345,"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":4354,"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":4362,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4361,"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":4369,"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":4375,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4374,"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":4378,"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":4394,"type":"object","description":"be an object","properties":{"content-mode":{"_internalId":4385,"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 in an HTML page."},"documentation":"The base width of the margin (right) column in an HTML page."},"body-width":{"type":"string","description":"be a string","tags":{"description":"The base width of the body (center) column in an HTML page."},"documentation":"The base width of the body (center) column in an HTML page."},"gutter-width":{"type":"string","description":"be a string","tags":{"description":"The width of the gutter that appears between columns in an HTML page."},"documentation":"The width of the gutter that appears between columns in an HTML\npage."}},"patternProperties":{},"closed":true,"documentation":"Properties of the grid system used to layout Quarto HTML pages.","tags":{"description":{"short":"Properties of the grid system used to layout Quarto HTML pages."}},"$id":"quarto-resource-document-layout-grid"},"quarto-resource-document-layout-appendix-style":{"_internalId":4400,"type":"anyOf","anyOf":[{"_internalId":4399,"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":4412,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4411,"type":"anyOf","anyOf":[{"_internalId":4409,"type":"enum","enum":["display","bibtex"],"description":"be one of: `display`, `bibtex`","completions":["display","bibtex"],"exhaustiveCompletions":true},{"_internalId":4410,"type":"array","description":"be an array of values, where each element must be one of: `display`, `bibtex`","items":{"_internalId":4409,"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":4418,"type":"anyOf","anyOf":[{"_internalId":4417,"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":4425,"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":4445,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4444,"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":4451,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4450,"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":4458,"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":4498,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4475,"type":"enum","enum":["auto"],"description":"be 'auto'","completions":["auto"],"exhaustiveCompletions":true},{"_internalId":4497,"type":"object","description":"be an object","properties":{"match":{"_internalId":4482,"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":4487,"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":4492,"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":4536,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4535,"type":"anyOf","anyOf":[{"_internalId":4533,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4523,"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":4532,"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":4534,"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":4533,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4523,"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":4532,"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":4544,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4543,"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":4553,"type":"anyOf","anyOf":[{"_internalId":4549,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true},{"_internalId":4552,"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":4562,"type":"anyOf","anyOf":[{"_internalId":4558,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true},{"_internalId":4561,"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":4581,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4580,"type":"anyOf","anyOf":[{"_internalId":4578,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4577,"type":"ref","$ref":"notebook-view-schema","description":"be notebook-view-schema"}],"description":"be at least one of: a string, notebook-view-schema"},{"_internalId":4579,"type":"array","description":"be an array of values, where each element must be at least one of: a string, notebook-view-schema","items":{"_internalId":4578,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4577,"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":4584,"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":4589,"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":4596,"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":4613,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4612,"type":"anyOf","anyOf":[{"_internalId":4610,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4609,"type":"ref","$ref":"website-listing","description":"be website-listing"}],"description":"be at least one of: a string, website-listing"},{"_internalId":4611,"type":"array","description":"be an array of values, where each element must be at least one of: a string, website-listing","items":{"_internalId":4610,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4609,"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":4619,"type":"object","description":"be an object","properties":{"theme":{"_internalId":4618,"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":4625,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4624,"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":4662,"type":"anyOf","anyOf":[{"_internalId":4659,"type":"object","description":"be an object","properties":{"year":{"_internalId":4646,"type":"anyOf","anyOf":[{"_internalId":4644,"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":4645,"type":"array","description":"be an array of values, where each element must be at least one of: a string, a number","items":{"_internalId":4644,"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":4652,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"The holder of the copyright."},"documentation":"The holder of the copyright."},{"_internalId":4651,"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":4658,"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":4657,"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":4680,"type":"anyOf","anyOf":[{"_internalId":4678,"type":"anyOf","anyOf":[{"_internalId":4675,"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":4679,"type":"array","description":"be an array of values, where each element must be at least one of: an object, a string","items":{"_internalId":4678,"type":"anyOf","anyOf":[{"_internalId":4675,"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":4704,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"_internalId":4703,"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":4715,"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":"Sets the page numbering style and location for the document.","$id":"quarto-resource-document-numbering-page-numbering"},"quarto-resource-document-numbering-pagenumbering":{"_internalId":4721,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4720,"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":"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-pagenumbering"},"quarto-resource-document-numbering-top-level-division":{"_internalId":4724,"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":"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-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":"Use the specified file as a style reference in producing a docx,\npptx, or odt file.","$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":"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-options-reference-doc"},"quarto-resource-document-options-brand":{"_internalId":4731,"type":"ref","$ref":"brand-path-bool-light-dark","description":"be brand-path-bool-light-dark","documentation":"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":4756,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4740,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}},{"_internalId":4755,"type":"object","description":"be an object","properties":{"light":{"_internalId":4748,"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 dark theme name, theme scss file, or a mix of both."},{"_internalId":4747,"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 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]}},"dark":{"_internalId":4754,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"The dark theme name, theme scss file, or a mix of both."},"documentation":"Classes to apply to the body of the document."},{"_internalId":4753,"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":"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]}}},"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 light 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":"Disables the built in html features like theming, anchor sections,\ncode block behavior, and more.","$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 inclusion of Pandoc default CSS for this document.","$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":"One or more CSS style sheets.","$id":"quarto-resource-document-options-document-css"},"quarto-resource-document-options-css":{"_internalId":4768,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4767,"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 hover over a section title to see an anchor link.","$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 tabsets to present content.","$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 smooth scrolling within the page.","$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 setting dark mode based on the\nprefers-color-scheme media query.","$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":"Method use to render math in HTML output","$id":"quarto-resource-document-options-respect-user-color-scheme"},"quarto-resource-document-options-html-math-method":{"_internalId":4790,"type":"anyOf","anyOf":[{"_internalId":4781,"type":"ref","$ref":"math-methods","description":"be math-methods"},{"_internalId":4789,"type":"object","description":"be an object","properties":{"method":{"_internalId":4786,"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":"Wrap sections in <section> tags and attach\nidentifiers to the enclosing <section> rather than\nthe heading itself.","$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":"Specify a prefix to be added to all identifiers and internal\nlinks.","$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":"Method for obfuscating mailto: links in HTML documents.","$id":"quarto-resource-document-options-identifier-prefix"},"quarto-resource-document-options-email-obfuscation":{"_internalId":4797,"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 <q> tags for quotes in HTML.","$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 the specified engine when producing PDF output.","$id":"quarto-resource-document-options-html-q-tags"},"quarto-resource-document-options-pdf-engine":{"_internalId":4802,"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 given string as a command-line argument to the\npdf-engine.","$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":"Pass multiple command-line arguments to the\npdf-engine.","$id":"quarto-resource-document-options-pdf-engine-opt"},"quarto-resource-document-options-pdf-engine-opts":{"_internalId":4809,"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":"Whether to produce a Beamer article from 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":"Add an extra Beamer option using \\setbeameroption{}.","$id":"quarto-resource-document-options-beamerarticle"},"quarto-resource-document-options-beameroption":{"_internalId":4817,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4816,"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 aspect ratio for this presentation.","$id":"quarto-resource-document-options-beameroption"},"quarto-resource-document-options-aspectratio":{"_internalId":4820,"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 logo image.","$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 image for the title slide.","$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":"Controls navigation symbols for the presentation (empty,\nframe, vertical, or\nhorizontal)","$id":"quarto-resource-document-options-titlegraphic"},"quarto-resource-document-options-navigation":{"_internalId":4827,"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":"Whether to enable title pages for new sections.","$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 color theme for this presentation, passed to\n\\usecolortheme.","$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 options for this presentation, passed to\n\\usecolortheme.","$id":"quarto-resource-document-options-colortheme"},"quarto-resource-document-options-colorthemeoptions":{"_internalId":4837,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4836,"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 font theme for this presentation, passed to\n\\usefonttheme.","$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 options for this presentation, passed to\n\\usefonttheme.","$id":"quarto-resource-document-options-fonttheme"},"quarto-resource-document-options-fontthemeoptions":{"_internalId":4845,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4844,"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 inner theme for this presentation, passed to\n\\useinnertheme.","$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 options for this presentation, passed to\n\\useinnertheme.","$id":"quarto-resource-document-options-innertheme"},"quarto-resource-document-options-innerthemeoptions":{"_internalId":4853,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4852,"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 outer theme for this presentation, passed to\n\\useoutertheme.","$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 options for this presentation, passed to\n\\useoutertheme.","$id":"quarto-resource-document-options-outertheme"},"quarto-resource-document-options-outerthemeoptions":{"_internalId":4861,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4860,"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":"Options passed to LaTeX Beamer themes inside\n\\usetheme.","$id":"quarto-resource-document-options-outerthemeoptions"},"quarto-resource-document-options-themeoptions":{"_internalId":4867,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4866,"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":"The section number in man pages.","$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":"Enable and disable extensions for markdown output (e.g. “+emoji”)","$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":"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-variant"},"quarto-resource-document-options-markdown-headings":{"_internalId":4874,"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":"Determines which ipynb cell output formats are rendered\n(none, all, or best).","$id":"quarto-resource-document-options-markdown-headings"},"quarto-resource-document-options-ipynb-output":{"_internalId":4877,"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":"semver version range for required quarto version","$id":"quarto-resource-document-options-ipynb-output"},"quarto-resource-document-options-quarto-required":{"type":"string","description":"be a string","documentation":"The mode to use when previewing this document.","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":"Adds the necessary setup to the document preamble to generate PDF/A\nof the type specified.","$id":"quarto-resource-document-options-preview-mode"},"quarto-resource-document-pdfa-pdfa":{"_internalId":4888,"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":"When used in conjunction with pdfa, specifies the ICC\nprofile to use in the PDF, e.g. default.cmyk.","$id":"quarto-resource-document-pdfa-pdfa"},"quarto-resource-document-pdfa-pdfaiccprofile":{"_internalId":4894,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4893,"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 output\nintent for the colors.","$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":"Document bibliography (BibTeX or CSL). May be a single file or a list\nof files","$id":"quarto-resource-document-pdfa-pdfaintent"},"quarto-resource-document-references-bibliography":{"_internalId":4902,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4901,"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":"Citation Style Language file to use for formatting references.","$id":"quarto-resource-document-references-bibliography"},"quarto-resource-document-references-csl":{"type":"string","description":"be a string","documentation":"Enables a hover popup for citation that shows the reference\ninformation.","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":"Where citation information should be displayed (document\nor margin)","$id":"quarto-resource-document-references-citations-hover"},"quarto-resource-document-references-citation-location":{"_internalId":4909,"type":"enum","enum":["document","margin"],"description":"be one of: `document`, `margin`","completions":["document","margin"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"Where citation information should be displayed (`document` or `margin`)"},"documentation":"Method used to format citations (citeproc,\nnatbib, or biblatex).","$id":"quarto-resource-document-references-citation-location"},"quarto-resource-document-references-cite-method":{"_internalId":4912,"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":"Turn on built-in citation processing","$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":"A list of options for 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":4920,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4919,"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":"One or more options to provide for natbib when\ngenerating a bibliography.","$id":"quarto-resource-document-references-biblatexoptions"},"quarto-resource-document-references-natbiboptions":{"_internalId":4926,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4925,"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 style to use\n(e.g. \\bibliographystyle{dinat}) when using\nnatbib or biblatex.","$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. #set bibliography(style: \"apa\")) when using typst\nbuilt-in citation system (e.g when not citeproc: true).","$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 title to use when using natbib or\nbiblatex.","$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":"Controls whether to output bibliography configuration for\nnatbib or biblatex when cite method is not\nciteproc.","$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":"JSON file containing abbreviations of journals that should be used in\nformatted bibliographies.","$id":"quarto-resource-document-references-biblio-config"},"quarto-resource-document-references-citation-abbreviations":{"type":"string","description":"be a string","documentation":"If true, citations will be hyperlinked to the corresponding\nbibliography entries (for author-date and numerical styles only).\nDefaults to false.","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, DOIs, PMCIDs, PMID, and URLs in bibliographies will be\nrendered as hyperlinks.","$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":"Places footnote references or superscripted numerical citations after\nfollowing punctuation.","$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":"Format to read from","$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":"Output file to write to","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":4947,"type":"ref","$ref":"pandoc-format-output-file","description":"be pandoc-format-output-file","documentation":"Extension to use for generated output file","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":"Use the specified file as a custom template for the generated\ndocument.","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":"Include the specified files as partials accessible to the template\nfor the generated content.","$id":"quarto-resource-document-render-template"},"quarto-resource-document-render-template-partials":{"_internalId":4957,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4956,"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":"Produce a standalone HTML file with no external dependencies","$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":"Embed math libraries (e.g. MathJax) within\nself-contained output.","$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":"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-self-contained-math"},"quarto-resource-document-render-filters":{"_internalId":4966,"type":"ref","$ref":"pandoc-format-filters","description":"be pandoc-format-filters","documentation":"Specify Lua scripts that implement shortcode handlers","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":4969,"type":"ref","$ref":"pandoc-shortcodes","description":"be pandoc-shortcodes","documentation":"Keep the markdown file generated by executing code","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 notebook file generated from 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":"Filters to pre-process ipynb files before rendering to markdown","$id":"quarto-resource-document-render-keep-ipynb"},"quarto-resource-document-render-ipynb-filters":{"_internalId":4978,"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":"Specify which nodes should be run interactively (displaying output\nfrom expressions)","$id":"quarto-resource-document-render-ipynb-filters"},"quarto-resource-document-render-ipynb-shell-interactivity":{"_internalId":4981,"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":"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-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":"Keep the intermediate typst file used during render.","$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 tex 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":"Extract images and other media contained in or linked from the source\ndocument to the path DIR.","$id":"quarto-resource-document-render-keep-tex"},"quarto-resource-document-render-extract-media":{"type":"string","description":"be a string","documentation":"List of paths to search for images and other resources.","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":4994,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"documentation":"Specify a default extension to use when image paths/URLs have no\nextension.","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":"Specifies a custom abbreviations file, with abbreviations one to a\nline.","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":"Specify the default dpi (dots per inch) value for conversion from\npixels to inch/ centimeters and vice versa.","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":"If none, do not process tables in HTML input.","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":5003,"type":"enum","enum":["none"],"description":"be 'none'","completions":["none"],"exhaustiveCompletions":true,"documentation":"If none, ignore any divs with\nhtml-pre-tag-processing=parse enabled.","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":5006,"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":"CSS property translation","$id":"quarto-resource-document-render-html-pre-tag-processing"},"quarto-resource-document-render-css-property-processing":{"_internalId":5009,"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":"If true, attempt to use rsvg-convert to\nconvert SVG images to PDF.","$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":"Logo image (placed in bottom right corner of slides)","$id":"quarto-resource-document-render-use-rsvg-convert"},"quarto-resource-document-reveal-content-logo":{"_internalId":5014,"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":"Footer to include on all 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":"Allow content that overflows slides vertically to scroll","$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":"Use a smaller default font for slide content","$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":"Location of output relative to the code that generated it\n(default, fragment, slide,\ncolumn, or column-location)","$id":"quarto-resource-document-reveal-content-smaller"},"quarto-resource-document-reveal-content-output-location":{"_internalId":5023,"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":"Flags if the presentation is running in an embedded mode","$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 display mode that will be used to show slides","$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":"For slides with a single top-level image, automatically stretch it to\nfill the slide.","$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":"The ‘normal’ width of the presentation","$id":"quarto-resource-document-reveal-layout-auto-stretch"},"quarto-resource-document-reveal-layout-width":{"_internalId":5036,"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’ height of the presentation","$id":"quarto-resource-document-reveal-layout-width"},"quarto-resource-document-reveal-layout-height":{"_internalId":5043,"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":"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-height"},"quarto-resource-document-reveal-layout-margin":{"_internalId":5063,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"_internalId":5062,"type":"object","description":"be an object","properties":{"x":{"type":"string","description":"be a string","tags":{"description":"Horizontal margin (e.g. 5cm)"},"documentation":"Vertical margin (e.g. 5cm)"},"y":{"type":"string","description":"be a string","tags":{"description":"Vertical margin (e.g. 5cm)"},"documentation":"Top margin (e.g. 5cm)"},"top":{"type":"string","description":"be a string","tags":{"description":"Top margin (e.g. 5cm)"},"documentation":"Bottom margin (e.g. 5cm)"},"bottom":{"type":"string","description":"be a string","tags":{"description":"Bottom margin (e.g. 5cm)"},"documentation":"Left margin (e.g. 5cm)"},"left":{"type":"string","description":"be a string","tags":{"description":"Left margin (e.g. 5cm)"},"documentation":"Right margin (e.g. 5cm)"},"right":{"type":"string","description":"be a string","tags":{"description":"Right margin (e.g. 5cm)"},"documentation":"Bounds for smallest possible scale to apply to content"}},"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":"Horizontal 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":"Bounds for largest 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":"Vertical centering of slides","$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":"Disables the default reveal.js slide layout (scaling and\ncentering)","$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":"Sets the maximum height for source code blocks that appear in the\npresentation.","$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":"Open links in an iframe preview overlay (true,\nfalse, or auto)","$id":"quarto-resource-document-reveal-layout-code-block-height"},"quarto-resource-document-reveal-media-preview-links":{"_internalId":5081,"type":"anyOf","anyOf":[{"_internalId":5078,"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":"Autoplay embedded media (null, true, or\nfalse). Default is null (only when\nautoplay attribute is specified)","$id":"quarto-resource-document-reveal-media-preview-links"},"quarto-resource-document-reveal-media-auto-play-media":{"_internalId":5084,"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":"Global override for preloading lazy-loaded iframes\n(null, true, or false).","$id":"quarto-resource-document-reveal-media-auto-play-media"},"quarto-resource-document-reveal-media-preload-iframes":{"_internalId":5087,"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":"Number of slides away from the current slide to pre-load resources\nfor","$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 (on mobile devices).","$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":"Parallax background image","$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 size (e.g. ‘2100px 900px’)","$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":"Number of pixels to move the parallax background horizontally per\nslide.","$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 vertically 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":"Display a presentation progress bar","$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":"Push each slide change to the browser history","$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":"Navigation progression (linear, vertical,\nor grid)","$id":"quarto-resource-document-reveal-navigation-history"},"quarto-resource-document-reveal-navigation-navigation-mode":{"_internalId":5106,"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 touch navigation on devices with touch input","$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 keyboard shortcuts for navigation","$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 slide navigation via mouse wheel","$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":"Hide cursor if inactive","$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":"Time before the cursor is hidden (in ms)","$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":"Loop the presentation","$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":"Randomize the order of slides each time the presentation loads","$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":"Show arrow controls for navigating through slides (true,\nfalse, or auto).","$id":"quarto-resource-document-reveal-navigation-shuffle"},"quarto-resource-document-reveal-navigation-controls":{"_internalId":5128,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5127,"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":"Location for navigation controls (edges or\nbottom-right)","$id":"quarto-resource-document-reveal-navigation-controls"},"quarto-resource-document-reveal-navigation-controls-layout":{"_internalId":5131,"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":"Help the user learn the controls by providing visual hints.","$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":"Visibility rule for backwards navigation arrows (faded,\nhidden, or visible).","$id":"quarto-resource-document-reveal-navigation-controls-tutorial"},"quarto-resource-document-reveal-navigation-controls-back-arrows":{"_internalId":5136,"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":"Automatically progress all slides at the specified interval","$id":"quarto-resource-document-reveal-navigation-controls-back-arrows"},"quarto-resource-document-reveal-navigation-auto-slide":{"_internalId":5144,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"_internalId":5143,"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":"Stop auto-sliding after user input","$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":"Navigation method to use when auto sliding (defaults to\nnavigateNext)","$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":"Expected average seconds per slide (used by pacing timer in speaker\nview)","$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":"Flags whether it should be possible to pause the presentation\n(blackout)","$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":"Show a help overlay when the ? key is pressed","$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":"Add the current slide to the URL hash","$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":"URL hash type (number or title)","$id":"quarto-resource-document-reveal-navigation-hash"},"quarto-resource-document-reveal-navigation-hash-type":{"_internalId":5159,"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":"Use 1 based indexing for hash links to match slide number","$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":"Monitor the hash and change slides accordingly","$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":"Include the current fragment in the URL","$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":"Play a subtle sound when changing slides","$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":"Deactivate jump to slide feature.","$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":"Slides that are too tall to fit within a single page will expand onto\nmultiple pages","$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":"Prints each fragment on a separate slide","$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":"Offset used to reduce the height of content within exported PDF\npages.","$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":"Enable the slide overview mode","$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":"Configuration for revealjs menu.","$id":"quarto-resource-document-reveal-tools-overview"},"quarto-resource-document-reveal-tools-menu":{"_internalId":5194,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5193,"type":"object","description":"be an object","properties":{"side":{"_internalId":5186,"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":"Width of the menu"},"width":{"type":"string","description":"be a string","completions":["normal","wide","third","half","full"],"tags":{"description":"Width of the menu"},"documentation":"Add slide numbers to menu items"},"numbers":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Add slide numbers to menu items"},"documentation":"For slides with no title, attempt to use the start of the text\ncontent as the title instead."},"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":"Configuration for revealjs chalkboard."}},"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":"Side of the presentation where the menu will be shown\n(left or right)","$id":"quarto-resource-document-reveal-tools-menu"},"quarto-resource-document-reveal-tools-chalkboard":{"_internalId":5217,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5216,"type":"object","description":"be an object","properties":{"theme":{"_internalId":5203,"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":"The drawing width of the boardmarker. Defaults to 3. Larger values\ndraw thicker lines."},"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 chalk. Defaults to 7. Larger values draw\nthicker 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":"Optional file name for pre-recorded drawings (download drawings using\nthe D key)"},"src":{"type":"string","description":"be a string","tags":{"description":"Optional file name for pre-recorded drawings (download drawings using the `D` key)\n"},"documentation":"Configuration option to prevent changes to existing drawings"},"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":"Add chalkboard buttons at the bottom of the slide"},"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":"Gives the duration (in ms) of the transition for a slide change, so\nthat the notes canvas is drawn after the transition is completed."},"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":"Configuration for reveal presentation multiplexing."}},"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":"Visual theme for drawing surface (chalkboard or\nwhiteboard)","$id":"quarto-resource-document-reveal-tools-chalkboard"},"quarto-resource-document-reveal-tools-multiplex":{"_internalId":5231,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5230,"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":"Unique presentation id provided by multiplex token server"},"id":{"type":"string","description":"be a string","tags":{"description":"Unique presentation id provided by multiplex token server"},"documentation":"Secret provided by multiplex token server"},"secret":{"type":"string","description":"be a string","tags":{"description":"Secret provided by multiplex token server"},"documentation":"Control the scroll view feature of Revealjs"}},"patternProperties":{}}],"description":"be at least one of: `true` or `false`, an object","tags":{"formats":["revealjs"],"description":"Configuration for reveal presentation multiplexing."},"documentation":"Multiplex token server (defaults to Reveal-hosted server)","$id":"quarto-resource-document-reveal-tools-multiplex"},"quarto-resource-document-reveal-tools-scroll-view":{"_internalId":5257,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5256,"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":"Show the scrollbar while scrolling, hide while idle (default\nauto). Set to ‘true’ to always show, false to\nalways hide."},"progress":{"_internalId":5247,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5246,"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":"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."},"snap":{"_internalId":5250,"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":"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."},"layout":{"_internalId":5253,"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":"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."},"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 slides"}},"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":"Activate scroll view by default for the presentation. Otherwise, it\nis manually avalaible by adding ?view=scroll to url.","$id":"quarto-resource-document-reveal-tools-scroll-view"},"quarto-resource-document-reveal-transitions-transition":{"_internalId":5260,"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":"Slide transition speed (default, fast, or\nslow)","$id":"quarto-resource-document-reveal-transitions-transition"},"quarto-resource-document-reveal-transitions-transition-speed":{"_internalId":5263,"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":"Transition style for full page slide backgrounds","$id":"quarto-resource-document-reveal-transitions-transition-speed"},"quarto-resource-document-reveal-transitions-background-transition":{"_internalId":5266,"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":"Turns fragments on and off globally","$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":"Globally enable/disable auto-animate (enabled by default)","$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":"Default CSS easing function for auto-animation","$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":"Duration (in seconds) of auto-animate transition","$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":"Auto-animate unmatched elements.","$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":"CSS properties that can be auto-animated (positional styles like top,\nleft, etc. are always animated).","$id":"quarto-resource-document-reveal-transitions-auto-animate-unmatched"},"quarto-resource-document-reveal-transitions-auto-animate-styles":{"_internalId":5282,"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":5281,"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":"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-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":"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-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":"Display the page number of the current slide","$id":"quarto-resource-document-slides-slide-level"},"quarto-resource-document-slides-slide-number":{"_internalId":5294,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5293,"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":"Contexts in which the slide number appears (all,\nprint, or speaker)","$id":"quarto-resource-document-slides-slide-number"},"quarto-resource-document-slides-show-slide-number":{"_internalId":5297,"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":"Additional attributes for the title slide of a reveal.js\npresentation.","$id":"quarto-resource-document-slides-show-slide-number"},"quarto-resource-document-slides-title-slide-attributes":{"_internalId":5312,"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":"URL or path to the background image."},"data-background-image":{"type":"string","description":"be a string","tags":{"description":"URL or path to the background image."},"documentation":"CSS background size (defaults to cover)"},"data-background-size":{"type":"string","description":"be a string","tags":{"description":"CSS background size (defaults to `cover`)"},"documentation":"CSS background position (defaults to center)"},"data-background-position":{"type":"string","description":"be a string","tags":{"description":"CSS background position (defaults to `center`)"},"documentation":"CSS background repeat (defaults to no-repeat)"},"data-background-repeat":{"type":"string","description":"be a string","tags":{"description":"CSS background repeat (defaults to `no-repeat`)"},"documentation":"Opacity of the background image on a 0-1 scale. 0 is transparent and\n1 is fully opaque."},"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":"The title slide style. Use pandoc to select the Pandoc\ndefault title slide style."}},"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 color for title slide background","$id":"quarto-resource-document-slides-title-slide-attributes"},"quarto-resource-document-slides-title-slide-style":{"_internalId":5315,"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":"Vertical centering of title slide","$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":"Make speaker notes visible to all viewers","$id":"quarto-resource-document-slides-center-title-slide"},"quarto-resource-document-slides-show-notes":{"_internalId":5325,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5324,"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":"Change the presentation direction to be RTL","$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":"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-rtl"},"quarto-resource-document-tables-df-print":{"_internalId":5330,"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":"Determine how text is wrapped in the output (auto,\nnone, or preserve).","$id":"quarto-resource-document-tables-df-print"},"quarto-resource-document-text-wrap":{"_internalId":5333,"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":"For text formats, specify length of lines in characters. For\ntypst, number of columns for body text.","$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":"Specify the number of spaces per tab (default is 4).","$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":"Preserve tabs within code instead of converting them to spaces.","$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":"Manually specify line endings (lf, crlf, or\nnative).","$id":"quarto-resource-document-text-preserve-tabs"},"quarto-resource-document-text-eol":{"_internalId":5342,"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":"Strip out HTML comments in source, rather than passing them on to\noutput.","$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":"Use only ASCII characters in output.","$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":"Include an automatically generated table of contents","$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":"The amount of indentation to use for each level of the table of\ncontents. The default is “1.5em”.","$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":"Specify the number of section levels to include in the table of\ncontents. The default is 3","$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":"Location for table of contents (body, left,\nright (default), left-body,\nright-body).","$id":"quarto-resource-document-toc-toc-depth"},"quarto-resource-document-toc-toc-location":{"_internalId":5355,"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":"The title used for the table of contents.","$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":"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-title"},"quarto-resource-document-toc-toc-expand":{"_internalId":5364,"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":"Print a list of figures in the document.","$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":"Print a list of tables 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"],"description":"Print a list of tables in the document."},"documentation":"Setting this to false prevents this document from being included in\nsearches.","$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 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-search"},"quarto-resource-document-website-repo-actions":{"_internalId":5382,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5381,"type":"anyOf","anyOf":[{"_internalId":5379,"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":"URLs that alias this document, when included in a website."},{"_internalId":5380,"type":"array","description":"be an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","items":{"_internalId":5379,"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":"URLs that alias this document, when included in a website."}}],"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":"Links to source repository actions","$id":"quarto-resource-document-website-repo-actions"},"quarto-resource-document-website-aliases":{"_internalId":5387,"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 path to a preview image for this document.","$id":"quarto-resource-document-website-aliases"},"quarto-resource-document-website-image":{"_internalId":5394,"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 height of the 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 width 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 alt text for preview image on this page.","$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":"If true, the preview image will only load when it comes into\nview.","$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":"Project configuration.","$id":"quarto-resource-document-website-image-lazy-loading"},"quarto-resource-project-project":{"_internalId":5467,"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":5415,"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":5418,"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":5430,"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":5429,"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":5435,"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":5440,"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":5448,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":5447,"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":5456,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":5455,"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":5466,"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":5465,"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."},"$id":"quarto-resource-project-project"},"quarto-resource-project-website":{"_internalId":5470,"type":"ref","$ref":"base-website","description":"be base-website","documentation":"Book configuration.","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":"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":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":"Displays a ‘reader-mode’ tool which allows users to hide the sidebar\nand table of contents when viewing a page."},{"_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":"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":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":"Storage options for Google Analytics data"},"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":"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":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":"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":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":"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":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":"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":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 type of announcement. Affects the appearance of the\nannouncement."},"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":"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":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":"The style of the consent banner that is displayed"},"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":"Whether to use a dark or light appearance for the consent banner\n(light or dark)."},"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":"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":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":"Type of search UI (overlay or textbox)"},"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":"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":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":"Whether to include search result parents when displaying items in\nsearch results (when possible)."},{"_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":"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":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":"Use external Algolia search index"},"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":"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":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":"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":688,"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":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":"Specification of image that will be displayed to the left of the\ntitle."},"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":"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":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":"List of items for the left side of the navbar."},"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":"List of items for the right side of the navbar."},"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":"The position of the collapsed navbar toggle when in responsive\nmode"},"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":"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":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":"The sidebar title. Uses the project title if none is specified."},"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":"Specification of image that will be displayed in the sidebar."},"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":"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":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":"List of items for the sidebar"},"contents":{"_internalId":780,"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":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":"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":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":"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":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":"Markdown to place below sidebar content (text or file path)"},"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":"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":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":"The sidebar title. Uses the project title if none is specified."},"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":"Specification of image that will be displayed in the sidebar."},"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":"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":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":"List of items for the sidebar"},"contents":{"_internalId":780,"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":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":"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":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":"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":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":"Markdown to place below sidebar content (text or file path)"},"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":"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":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":"Markdown to place below margin content (text or file path)"},"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":"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":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":"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":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":"Publish twitter card metadata"},"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":"A list of other links to appear below the TOC."},"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":"A list of code links to appear with this document."},"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":"A list of input documents that should be treated as drafts"},"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":"How to handle drafts that are encountered."},"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 subtitle"},"subtitle":{"type":"string","description":"be a string","tags":{"description":"Book subtitle"},"documentation":"Author or authors of the book"},"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":"Book publication date"},{"_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":"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":932,"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":937,"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":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":"Download buttons for other formats to include on navbar or sidebar\n(one or more of pdf, epub, and\ndocx)"},{"_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":"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":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":"Custom tools for navbar or sidebar"},{"_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":"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":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":"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":1410,"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":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":"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":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":"Chapter number (e.g. chapter number in a book; track number on an\nalbum)."},"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":"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":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":"Editor of the collection holding the item (e.g. the series editor for\na book).","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":"Number identifying the collection holding the item (e.g. the series\nnumber for a book)"},"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":"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":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":"Composer (e.g. of a musical score)."},"composer":{"_internalId":1464,"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":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":"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":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":"Curator of an exhibit or collection (e.g. in a museum)."},"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":"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":1482,"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":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":"The editor of the item."},"editor":{"_internalId":1494,"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":1497,"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":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":"Date the event related to an item took place."},"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":"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":1514,"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":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":"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":1526,"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":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":"A value which uniquely identifies this item."},"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":"Illustrator (e.g. of a children’s book or graphic novel)."},"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":"Interviewer (e.g. of an interview)."},"interviewer":{"_internalId":1542,"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":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":"Date the item was issued/published."},"issued":{"_internalId":1560,"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":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":"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":1576,"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":1581,"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":1584,"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":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":"Organizer of an event (e.g. organizer of a workshop or\nconference)."},"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":"The original creator of a work."},"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":"Issue date of the original version."},"original-date":{"_internalId":1596,"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":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":"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":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":"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":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":"Number of the specific part of the item being cited (e.g. part 2 of a\njournal article)."},"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":"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":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":"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":1636,"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":1639,"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":1648,"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":1651,"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":1660,"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":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":"Creator of a series (e.g. of a television series)."},"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":"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":1673,"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":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":"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":1681,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Translator"},"documentation":"The type\nof the item."},"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":"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":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":"Volume number of the item (e.g. “2” when citing volume 2 of a book)\nor the container holding the item."},"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":"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","$id":"quarto-resource-project-book"},"quarto-resource-project-manuscript":{"_internalId":5480,"type":"ref","$ref":"manuscript-schema","description":"be manuscript-schema","documentation":"internal-schema-hack","tags":{"description":"Manuscript configuration"},"$id":"quarto-resource-project-manuscript"},"quarto-resource-project-type":{"_internalId":5483,"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},"$id":"quarto-resource-project-type"},"quarto-resource-project-engines":{"_internalId":5494,"type":"array","description":"be an array of values, where each element must be at least one of: a string, external-engine","items":{"_internalId":5493,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":5492,"type":"ref","$ref":"external-engine","description":"be external-engine"}],"description":"be at least one of: a string, external-engine"},"documentation":"When defined, run axe-core accessibility tests on the document.","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":5505,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5504,"type":"object","description":"be an object","properties":{"output":{"_internalId":5503,"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":"The logo image."}},"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":"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.","$id":"quarto-resource-document-a11y-axe"},"quarto-resource-document-typst-logo":{"_internalId":5508,"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":"Project configuration.","$id":"quarto-resource-document-typst-logo"},"front-matter-execute":{"_internalId":5532,"type":"object","description":"be an object","properties":{"eval":{"_internalId":5509,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":5510,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":5511,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":5512,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":5513,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":5514,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"engine":{"_internalId":5515,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":5516,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":5517,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":5518,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":5519,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":5520,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":5521,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":5522,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":5523,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":5524,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":5525,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":5526,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"keep-md":{"_internalId":5527,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":5528,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":5529,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":5530,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":5531,"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":212787,"type":"anyOf","anyOf":[{"_internalId":212783,"type":"anyOf","anyOf":[{"_internalId":212703,"type":"string","pattern":"^(.+-)?ansi([-+].+)?$","description":"be 'ansi'","completions":["ansi"]},{"_internalId":212704,"type":"string","pattern":"^(.+-)?asciidoc([-+].+)?$","description":"be 'asciidoc'","completions":["asciidoc"]},{"_internalId":212705,"type":"string","pattern":"^(.+-)?asciidoc_legacy([-+].+)?$","description":"be 'asciidoc_legacy'","completions":["asciidoc_legacy"]},{"_internalId":212706,"type":"string","pattern":"^(.+-)?asciidoctor([-+].+)?$","description":"be 'asciidoctor'","completions":["asciidoctor"]},{"_internalId":212707,"type":"string","pattern":"^(.+-)?bbcode([-+].+)?$","description":"be 'bbcode'","completions":["bbcode"]},{"_internalId":212708,"type":"string","pattern":"^(.+-)?bbcode_fluxbb([-+].+)?$","description":"be 'bbcode_fluxbb'","completions":["bbcode_fluxbb"]},{"_internalId":212709,"type":"string","pattern":"^(.+-)?bbcode_hubzilla([-+].+)?$","description":"be 'bbcode_hubzilla'","completions":["bbcode_hubzilla"]},{"_internalId":212710,"type":"string","pattern":"^(.+-)?bbcode_phpbb([-+].+)?$","description":"be 'bbcode_phpbb'","completions":["bbcode_phpbb"]},{"_internalId":212711,"type":"string","pattern":"^(.+-)?bbcode_steam([-+].+)?$","description":"be 'bbcode_steam'","completions":["bbcode_steam"]},{"_internalId":212712,"type":"string","pattern":"^(.+-)?bbcode_xenforo([-+].+)?$","description":"be 'bbcode_xenforo'","completions":["bbcode_xenforo"]},{"_internalId":212713,"type":"string","pattern":"^(.+-)?beamer([-+].+)?$","description":"be 'beamer'","completions":["beamer"]},{"_internalId":212714,"type":"string","pattern":"^(.+-)?biblatex([-+].+)?$","description":"be 'biblatex'","completions":["biblatex"]},{"_internalId":212715,"type":"string","pattern":"^(.+-)?bibtex([-+].+)?$","description":"be 'bibtex'","completions":["bibtex"]},{"_internalId":212716,"type":"string","pattern":"^(.+-)?chunkedhtml([-+].+)?$","description":"be 'chunkedhtml'","completions":["chunkedhtml"]},{"_internalId":212717,"type":"string","pattern":"^(.+-)?commonmark([-+].+)?$","description":"be 'commonmark'","completions":["commonmark"]},{"_internalId":212718,"type":"string","pattern":"^(.+-)?commonmark_x([-+].+)?$","description":"be 'commonmark_x'","completions":["commonmark_x"]},{"_internalId":212719,"type":"string","pattern":"^(.+-)?context([-+].+)?$","description":"be 'context'","completions":["context"]},{"_internalId":212720,"type":"string","pattern":"^(.+-)?csljson([-+].+)?$","description":"be 'csljson'","completions":["csljson"]},{"_internalId":212721,"type":"string","pattern":"^(.+-)?djot([-+].+)?$","description":"be 'djot'","completions":["djot"]},{"_internalId":212722,"type":"string","pattern":"^(.+-)?docbook([-+].+)?$","description":"be 'docbook'","completions":["docbook"]},{"_internalId":212723,"type":"string","pattern":"^(.+-)?docbook4([-+].+)?$","description":"be 'docbook4'"},{"_internalId":212724,"type":"string","pattern":"^(.+-)?docbook5([-+].+)?$","description":"be 'docbook5'"},{"_internalId":212725,"type":"string","pattern":"^(.+-)?docx([-+].+)?$","description":"be 'docx'","completions":["docx"]},{"_internalId":212726,"type":"string","pattern":"^(.+-)?dokuwiki([-+].+)?$","description":"be 'dokuwiki'","completions":["dokuwiki"]},{"_internalId":212727,"type":"string","pattern":"^(.+-)?dzslides([-+].+)?$","description":"be 'dzslides'","completions":["dzslides"]},{"_internalId":212728,"type":"string","pattern":"^(.+-)?epub([-+].+)?$","description":"be 'epub'","completions":["epub"]},{"_internalId":212729,"type":"string","pattern":"^(.+-)?epub2([-+].+)?$","description":"be 'epub2'"},{"_internalId":212730,"type":"string","pattern":"^(.+-)?epub3([-+].+)?$","description":"be 'epub3'"},{"_internalId":212731,"type":"string","pattern":"^(.+-)?fb2([-+].+)?$","description":"be 'fb2'","completions":["fb2"]},{"_internalId":212732,"type":"string","pattern":"^(.+-)?gfm([-+].+)?$","description":"be 'gfm'","completions":["gfm"]},{"_internalId":212733,"type":"string","pattern":"^(.+-)?haddock([-+].+)?$","description":"be 'haddock'","completions":["haddock"]},{"_internalId":212734,"type":"string","pattern":"^(.+-)?html([-+].+)?$","description":"be 'html'","completions":["html"]},{"_internalId":212735,"type":"string","pattern":"^(.+-)?html4([-+].+)?$","description":"be 'html4'"},{"_internalId":212736,"type":"string","pattern":"^(.+-)?html5([-+].+)?$","description":"be 'html5'"},{"_internalId":212737,"type":"string","pattern":"^(.+-)?icml([-+].+)?$","description":"be 'icml'","completions":["icml"]},{"_internalId":212738,"type":"string","pattern":"^(.+-)?ipynb([-+].+)?$","description":"be 'ipynb'","completions":["ipynb"]},{"_internalId":212739,"type":"string","pattern":"^(.+-)?jats([-+].+)?$","description":"be 'jats'","completions":["jats"]},{"_internalId":212740,"type":"string","pattern":"^(.+-)?jats_archiving([-+].+)?$","description":"be 'jats_archiving'","completions":["jats_archiving"]},{"_internalId":212741,"type":"string","pattern":"^(.+-)?jats_articleauthoring([-+].+)?$","description":"be 'jats_articleauthoring'","completions":["jats_articleauthoring"]},{"_internalId":212742,"type":"string","pattern":"^(.+-)?jats_publishing([-+].+)?$","description":"be 'jats_publishing'","completions":["jats_publishing"]},{"_internalId":212743,"type":"string","pattern":"^(.+-)?jira([-+].+)?$","description":"be 'jira'","completions":["jira"]},{"_internalId":212744,"type":"string","pattern":"^(.+-)?json([-+].+)?$","description":"be 'json'","completions":["json"]},{"_internalId":212745,"type":"string","pattern":"^(.+-)?latex([-+].+)?$","description":"be 'latex'","completions":["latex"]},{"_internalId":212746,"type":"string","pattern":"^(.+-)?man([-+].+)?$","description":"be 'man'","completions":["man"]},{"_internalId":212747,"type":"string","pattern":"^(.+-)?markdown([-+].+)?$","description":"be 'markdown'","completions":["markdown"]},{"_internalId":212748,"type":"string","pattern":"^(.+-)?markdown_github([-+].+)?$","description":"be 'markdown_github'","completions":["markdown_github"]},{"_internalId":212749,"type":"string","pattern":"^(.+-)?markdown_mmd([-+].+)?$","description":"be 'markdown_mmd'","completions":["markdown_mmd"]},{"_internalId":212750,"type":"string","pattern":"^(.+-)?markdown_phpextra([-+].+)?$","description":"be 'markdown_phpextra'","completions":["markdown_phpextra"]},{"_internalId":212751,"type":"string","pattern":"^(.+-)?markdown_strict([-+].+)?$","description":"be 'markdown_strict'","completions":["markdown_strict"]},{"_internalId":212752,"type":"string","pattern":"^(.+-)?markua([-+].+)?$","description":"be 'markua'","completions":["markua"]},{"_internalId":212753,"type":"string","pattern":"^(.+-)?mediawiki([-+].+)?$","description":"be 'mediawiki'","completions":["mediawiki"]},{"_internalId":212754,"type":"string","pattern":"^(.+-)?ms([-+].+)?$","description":"be 'ms'","completions":["ms"]},{"_internalId":212755,"type":"string","pattern":"^(.+-)?muse([-+].+)?$","description":"be 'muse'","completions":["muse"]},{"_internalId":212756,"type":"string","pattern":"^(.+-)?native([-+].+)?$","description":"be 'native'","completions":["native"]},{"_internalId":212757,"type":"string","pattern":"^(.+-)?odt([-+].+)?$","description":"be 'odt'","completions":["odt"]},{"_internalId":212758,"type":"string","pattern":"^(.+-)?opendocument([-+].+)?$","description":"be 'opendocument'","completions":["opendocument"]},{"_internalId":212759,"type":"string","pattern":"^(.+-)?opml([-+].+)?$","description":"be 'opml'","completions":["opml"]},{"_internalId":212760,"type":"string","pattern":"^(.+-)?org([-+].+)?$","description":"be 'org'","completions":["org"]},{"_internalId":212761,"type":"string","pattern":"^(.+-)?pdf([-+].+)?$","description":"be 'pdf'","completions":["pdf"]},{"_internalId":212762,"type":"string","pattern":"^(.+-)?plain([-+].+)?$","description":"be 'plain'","completions":["plain"]},{"_internalId":212763,"type":"string","pattern":"^(.+-)?pptx([-+].+)?$","description":"be 'pptx'","completions":["pptx"]},{"_internalId":212764,"type":"string","pattern":"^(.+-)?revealjs([-+].+)?$","description":"be 'revealjs'","completions":["revealjs"]},{"_internalId":212765,"type":"string","pattern":"^(.+-)?rst([-+].+)?$","description":"be 'rst'","completions":["rst"]},{"_internalId":212766,"type":"string","pattern":"^(.+-)?rtf([-+].+)?$","description":"be 'rtf'","completions":["rtf"]},{"_internalId":212767,"type":"string","pattern":"^(.+-)?s5([-+].+)?$","description":"be 's5'","completions":["s5"]},{"_internalId":212768,"type":"string","pattern":"^(.+-)?slideous([-+].+)?$","description":"be 'slideous'","completions":["slideous"]},{"_internalId":212769,"type":"string","pattern":"^(.+-)?slidy([-+].+)?$","description":"be 'slidy'","completions":["slidy"]},{"_internalId":212770,"type":"string","pattern":"^(.+-)?tei([-+].+)?$","description":"be 'tei'","completions":["tei"]},{"_internalId":212771,"type":"string","pattern":"^(.+-)?texinfo([-+].+)?$","description":"be 'texinfo'","completions":["texinfo"]},{"_internalId":212772,"type":"string","pattern":"^(.+-)?textile([-+].+)?$","description":"be 'textile'","completions":["textile"]},{"_internalId":212773,"type":"string","pattern":"^(.+-)?typst([-+].+)?$","description":"be 'typst'","completions":["typst"]},{"_internalId":212774,"type":"string","pattern":"^(.+-)?vimdoc([-+].+)?$","description":"be 'vimdoc'","completions":["vimdoc"]},{"_internalId":212775,"type":"string","pattern":"^(.+-)?xml([-+].+)?$","description":"be 'xml'","completions":["xml"]},{"_internalId":212776,"type":"string","pattern":"^(.+-)?xwiki([-+].+)?$","description":"be 'xwiki'","completions":["xwiki"]},{"_internalId":212777,"type":"string","pattern":"^(.+-)?zimwiki([-+].+)?$","description":"be 'zimwiki'","completions":["zimwiki"]},{"_internalId":212778,"type":"string","pattern":"^(.+-)?md([-+].+)?$","description":"be 'md'","completions":["md"]},{"_internalId":212779,"type":"string","pattern":"^(.+-)?hugo([-+].+)?$","description":"be 'hugo'","completions":["hugo"]},{"_internalId":212780,"type":"string","pattern":"^(.+-)?dashboard([-+].+)?$","description":"be 'dashboard'","completions":["dashboard"]},{"_internalId":212781,"type":"string","pattern":"^(.+-)?email([-+].+)?$","description":"be 'email'","completions":["email"]},{"_internalId":212782,"type":"string","pattern":"^.+.lua$","description":"be a string that satisfies regex \"^.+.lua$\""}],"description":"be the name of a pandoc-supported output format"},{"_internalId":212784,"type":"object","description":"be an object","properties":{},"patternProperties":{},"propertyNames":{"_internalId":212782,"type":"string","pattern":"^.+.lua$","description":"be a string that satisfies regex \"^.+.lua$\""}},{"_internalId":212786,"type":"allOf","allOf":[{"_internalId":212785,"type":"object","description":"be an object","properties":{},"patternProperties":{"^(.+-)?ansi([-+].+)?$":{"_internalId":8140,"type":"anyOf","anyOf":[{"_internalId":8138,"type":"object","description":"be an object","properties":{"eval":{"_internalId":8042,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":8043,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":8044,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":8045,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":8046,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":8047,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":8048,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":8049,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":8050,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":8051,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":8052,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":8053,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":8054,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":8055,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":8056,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":8057,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":8058,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":8059,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":8060,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":8061,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":8062,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":8063,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":8064,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":8065,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":8066,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":8067,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":8068,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":8069,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":8070,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":8071,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":8072,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":8073,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":8074,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":8075,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":8076,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":8076,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":8077,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":8078,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":8079,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":8080,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":8081,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":8082,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":8083,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":8084,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":8085,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":8086,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":8087,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":8088,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":8089,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":8090,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":8091,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":8092,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":8093,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":8094,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":8095,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":8096,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":8097,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":8098,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":8099,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":8100,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":8101,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":8102,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":8103,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":8104,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":8105,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":8106,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":8107,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":8108,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":8109,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":8110,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":8111,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":8112,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":8113,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":8113,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":8114,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":8115,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":8116,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":8117,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":8118,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":8119,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":8120,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":8121,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":8122,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":8123,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":8124,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":8125,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":8126,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":8127,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":8128,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":8129,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":8130,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":8131,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":8132,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":8133,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":8134,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":8135,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":8136,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":8136,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":8137,"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,grid,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":8139,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?asciidoc([-+].+)?$":{"_internalId":10749,"type":"anyOf","anyOf":[{"_internalId":10747,"type":"object","description":"be an object","properties":{"eval":{"_internalId":10649,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":10650,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":10651,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":10652,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":10653,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":10654,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":10655,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":10656,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":10657,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":10658,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":10659,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"order":{"_internalId":10660,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":10661,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":10662,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":10663,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":10664,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":10665,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":10666,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":10667,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":10668,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":10669,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":10670,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":10671,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":10672,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":10673,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":10674,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":10675,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":10676,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":10677,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":10678,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":10679,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":10680,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":10681,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":10682,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":10683,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":10684,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":10684,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":10685,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":10686,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":10687,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":10688,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":10689,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":10690,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":10691,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":10692,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":10693,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":10694,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":10695,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":10696,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":10697,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":10698,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":10699,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":10700,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":10701,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":10702,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":10703,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":10704,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":10705,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":10706,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":10707,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":10708,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":10709,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":10710,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":10711,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":10712,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"keywords":{"_internalId":10713,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"number-sections":{"_internalId":10714,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":10715,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":10716,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":10717,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":10718,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":10719,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":10720,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":10721,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":10722,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":10722,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":10723,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":10724,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":10725,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":10726,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":10727,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":10728,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":10729,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":10730,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":10731,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":10732,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":10733,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":10734,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":10735,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":10736,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":10737,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":10738,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":10739,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":10740,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":10741,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":10742,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":10743,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":10744,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":10745,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":10745,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":10746,"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,grid,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":10748,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?asciidoc_legacy([-+].+)?$":{"_internalId":13356,"type":"anyOf","anyOf":[{"_internalId":13354,"type":"object","description":"be an object","properties":{"eval":{"_internalId":13258,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":13259,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":13260,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":13261,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":13262,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":13263,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":13264,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":13265,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":13266,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":13267,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":13268,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":13269,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":13270,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":13271,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":13272,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":13273,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":13274,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":13275,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":13276,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":13277,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":13278,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":13279,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":13280,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":13281,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":13282,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":13283,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":13284,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":13285,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":13286,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":13287,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":13288,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":13289,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":13290,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":13291,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":13292,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":13292,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":13293,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":13294,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":13295,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":13296,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":13297,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":13298,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":13299,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":13300,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":13301,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":13302,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":13303,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":13304,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":13305,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":13306,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":13307,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":13308,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":13309,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":13310,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":13311,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":13312,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":13313,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":13314,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":13315,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":13316,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":13317,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":13318,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":13319,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":13320,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":13321,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":13322,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":13323,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":13324,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":13325,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":13326,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":13327,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":13328,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":13329,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":13329,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":13330,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":13331,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":13332,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":13333,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":13334,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":13335,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":13336,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":13337,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":13338,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":13339,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":13340,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":13341,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":13342,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":13343,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":13344,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":13345,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":13346,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":13347,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":13348,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":13349,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":13350,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":13351,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":13352,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":13352,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":13353,"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,grid,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":13355,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?asciidoctor([-+].+)?$":{"_internalId":15965,"type":"anyOf","anyOf":[{"_internalId":15963,"type":"object","description":"be an object","properties":{"eval":{"_internalId":15865,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":15866,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":15867,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":15868,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":15869,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":15870,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":15871,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":15872,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":15873,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":15874,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":15875,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"order":{"_internalId":15876,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":15877,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":15878,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":15879,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":15880,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":15881,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":15882,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":15883,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":15884,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":15885,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":15886,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":15887,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":15888,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":15889,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":15890,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":15891,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":15892,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":15893,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":15894,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":15895,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":15896,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":15897,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":15898,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":15899,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":15900,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":15900,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":15901,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":15902,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":15903,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":15904,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":15905,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":15906,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":15907,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":15908,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":15909,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":15910,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":15911,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":15912,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":15913,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":15914,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":15915,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":15916,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":15917,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":15918,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":15919,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":15920,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":15921,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":15922,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":15923,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":15924,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":15925,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":15926,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":15927,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":15928,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"keywords":{"_internalId":15929,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"number-sections":{"_internalId":15930,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":15931,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":15932,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":15933,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":15934,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":15935,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":15936,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":15937,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":15938,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":15938,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":15939,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":15940,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":15941,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":15942,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":15943,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":15944,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":15945,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":15946,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":15947,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":15948,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":15949,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":15950,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":15951,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":15952,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":15953,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":15954,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":15955,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":15956,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":15957,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":15958,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":15959,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":15960,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":15961,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":15961,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":15962,"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,grid,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":15964,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode([-+].+)?$":{"_internalId":18572,"type":"anyOf","anyOf":[{"_internalId":18570,"type":"object","description":"be an object","properties":{"eval":{"_internalId":18474,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":18475,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":18476,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":18477,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":18478,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":18479,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":18480,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":18481,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":18482,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":18483,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":18484,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":18485,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":18486,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":18487,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":18488,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":18489,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":18490,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":18491,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":18492,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":18493,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":18494,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":18495,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":18496,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":18497,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":18498,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":18499,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":18500,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":18501,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":18502,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":18503,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":18504,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":18505,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":18506,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":18507,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":18508,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":18508,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":18509,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":18510,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":18511,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":18512,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":18513,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":18514,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":18515,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":18516,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":18517,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":18518,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":18519,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":18520,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":18521,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":18522,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":18523,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":18524,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":18525,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":18526,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":18527,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":18528,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":18529,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":18530,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":18531,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":18532,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":18533,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":18534,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":18535,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":18536,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":18537,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":18538,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":18539,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":18540,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":18541,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":18542,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":18543,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":18544,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":18545,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":18545,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":18546,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":18547,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":18548,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":18549,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":18550,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":18551,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":18552,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":18553,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":18554,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":18555,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":18556,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":18557,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":18558,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":18559,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":18560,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":18561,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":18562,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":18563,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":18564,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":18565,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":18566,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":18567,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":18568,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":18568,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":18569,"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,grid,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":18571,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode_fluxbb([-+].+)?$":{"_internalId":21179,"type":"anyOf","anyOf":[{"_internalId":21177,"type":"object","description":"be an object","properties":{"eval":{"_internalId":21081,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":21082,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":21083,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":21084,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":21085,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":21086,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":21087,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":21088,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":21089,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":21090,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":21091,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":21092,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":21093,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":21094,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":21095,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":21096,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":21097,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":21098,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":21099,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":21100,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":21101,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":21102,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":21103,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":21104,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":21105,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":21106,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":21107,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":21108,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":21109,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":21110,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":21111,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":21112,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":21113,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":21114,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":21115,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":21115,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":21116,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":21117,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":21118,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":21119,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":21120,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":21121,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":21122,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":21123,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":21124,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":21125,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":21126,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":21127,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":21128,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":21129,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":21130,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":21131,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":21132,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":21133,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":21134,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":21135,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":21136,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":21137,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":21138,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":21139,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":21140,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":21141,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":21142,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":21143,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":21144,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":21145,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":21146,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":21147,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":21148,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":21149,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":21150,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":21151,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":21152,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":21152,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":21153,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":21154,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":21155,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":21156,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":21157,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":21158,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":21159,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":21160,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":21161,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":21162,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":21163,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":21164,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":21165,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":21166,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":21167,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":21168,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":21169,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":21170,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":21171,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":21172,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":21173,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":21174,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":21175,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":21175,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":21176,"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,grid,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":21178,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode_hubzilla([-+].+)?$":{"_internalId":23786,"type":"anyOf","anyOf":[{"_internalId":23784,"type":"object","description":"be an object","properties":{"eval":{"_internalId":23688,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":23689,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":23690,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":23691,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":23692,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":23693,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":23694,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":23695,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":23696,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":23697,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":23698,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":23699,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":23700,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":23701,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":23702,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":23703,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":23704,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":23705,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":23706,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":23707,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":23708,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":23709,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":23710,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":23711,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":23712,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":23713,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":23714,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":23715,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":23716,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":23717,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":23718,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":23719,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":23720,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":23721,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":23722,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":23722,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":23723,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":23724,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":23725,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":23726,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":23727,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":23728,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":23729,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":23730,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":23731,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":23732,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":23733,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":23734,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":23735,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":23736,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":23737,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":23738,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":23739,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":23740,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":23741,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":23742,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":23743,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":23744,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":23745,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":23746,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":23747,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":23748,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":23749,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":23750,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":23751,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":23752,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":23753,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":23754,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":23755,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":23756,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":23757,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":23758,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":23759,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":23759,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":23760,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":23761,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":23762,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":23763,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":23764,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":23765,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":23766,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":23767,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":23768,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":23769,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":23770,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":23771,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":23772,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":23773,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":23774,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":23775,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":23776,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":23777,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":23778,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":23779,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":23780,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":23781,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":23782,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":23782,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":23783,"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,grid,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":23785,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode_phpbb([-+].+)?$":{"_internalId":26393,"type":"anyOf","anyOf":[{"_internalId":26391,"type":"object","description":"be an object","properties":{"eval":{"_internalId":26295,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":26296,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":26297,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":26298,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":26299,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":26300,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":26301,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":26302,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":26303,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":26304,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":26305,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":26306,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":26307,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":26308,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":26309,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":26310,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":26311,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":26312,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":26313,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":26314,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":26315,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":26316,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":26317,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":26318,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":26319,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":26320,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":26321,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":26322,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":26323,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":26324,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":26325,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":26326,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":26327,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":26328,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":26329,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":26329,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":26330,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":26331,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":26332,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":26333,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":26334,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":26335,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":26336,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":26337,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":26338,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":26339,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":26340,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":26341,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":26342,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":26343,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":26344,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":26345,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":26346,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":26347,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":26348,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":26349,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":26350,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":26351,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":26352,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":26353,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":26354,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":26355,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":26356,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":26357,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":26358,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":26359,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":26360,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":26361,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":26362,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":26363,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":26364,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":26365,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":26366,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":26366,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":26367,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":26368,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":26369,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":26370,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":26371,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":26372,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":26373,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":26374,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":26375,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":26376,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":26377,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":26378,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":26379,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":26380,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":26381,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":26382,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":26383,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":26384,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":26385,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":26386,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":26387,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":26388,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":26389,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":26389,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":26390,"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,grid,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":26392,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode_steam([-+].+)?$":{"_internalId":29000,"type":"anyOf","anyOf":[{"_internalId":28998,"type":"object","description":"be an object","properties":{"eval":{"_internalId":28902,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":28903,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":28904,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":28905,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":28906,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":28907,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":28908,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":28909,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":28910,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":28911,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":28912,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":28913,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":28914,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":28915,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":28916,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":28917,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":28918,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":28919,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":28920,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":28921,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":28922,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":28923,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":28924,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":28925,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":28926,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":28927,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":28928,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":28929,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":28930,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":28931,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":28932,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":28933,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":28934,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":28935,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":28936,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":28936,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":28937,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":28938,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":28939,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":28940,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":28941,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":28942,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":28943,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":28944,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":28945,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":28946,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":28947,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":28948,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":28949,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":28950,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":28951,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":28952,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":28953,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":28954,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":28955,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":28956,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":28957,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":28958,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":28959,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":28960,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":28961,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":28962,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":28963,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":28964,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":28965,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":28966,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":28967,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":28968,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":28969,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":28970,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":28971,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":28972,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":28973,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":28973,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":28974,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":28975,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":28976,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":28977,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":28978,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":28979,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":28980,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":28981,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":28982,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":28983,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":28984,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":28985,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":28986,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":28987,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":28988,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":28989,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":28990,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":28991,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":28992,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":28993,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":28994,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":28995,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":28996,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":28996,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":28997,"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,grid,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":28999,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode_xenforo([-+].+)?$":{"_internalId":31607,"type":"anyOf","anyOf":[{"_internalId":31605,"type":"object","description":"be an object","properties":{"eval":{"_internalId":31509,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":31510,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":31511,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":31512,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":31513,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":31514,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":31515,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":31516,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":31517,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":31518,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":31519,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":31520,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":31521,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":31522,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":31523,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":31524,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":31525,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":31526,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":31527,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":31528,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":31529,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":31530,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":31531,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":31532,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":31533,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":31534,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":31535,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":31536,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":31537,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":31538,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":31539,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":31540,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":31541,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":31542,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":31543,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":31543,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":31544,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":31545,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":31546,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":31547,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":31548,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":31549,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":31550,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":31551,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":31552,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":31553,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":31554,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":31555,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":31556,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":31557,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":31558,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":31559,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":31560,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":31561,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":31562,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":31563,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":31564,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":31565,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":31566,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":31567,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":31568,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":31569,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":31570,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":31571,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":31572,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":31573,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":31574,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":31575,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":31576,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":31577,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":31578,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":31579,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":31580,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":31580,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":31581,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":31582,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":31583,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":31584,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":31585,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":31586,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":31587,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":31588,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":31589,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":31590,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":31591,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":31592,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":31593,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":31594,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":31595,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":31596,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":31597,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":31598,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":31599,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":31600,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":31601,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":31602,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":31603,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":31603,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":31604,"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,grid,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":31606,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?beamer([-+].+)?$":{"_internalId":34319,"type":"anyOf","anyOf":[{"_internalId":34317,"type":"object","description":"be an object","properties":{"eval":{"_internalId":34116,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":34117,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-line-numbers":{"_internalId":34118,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":34119,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-env":{"_internalId":34120,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":34121,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"cap-location":{"_internalId":34122,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":34123,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":34124,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":34125,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":34126,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":34127,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":34128,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":34129,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":34130,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":34131,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":34132,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":34133,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":34134,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":34135,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"abstract":{"_internalId":34136,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"thanks":{"_internalId":34137,"type":"ref","$ref":"quarto-resource-document-attributes-thanks","description":"quarto-resource-document-attributes-thanks"},"order":{"_internalId":34138,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":34139,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":34140,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-block-border-left":{"_internalId":34141,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":34142,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"highlight-style":{"_internalId":34143,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":34144,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":34145,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"listings":{"_internalId":34146,"type":"ref","$ref":"quarto-resource-document-code-listings","description":"quarto-resource-document-code-listings"},"indented-code-classes":{"_internalId":34147,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"linkcolor":{"_internalId":34148,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"filecolor":{"_internalId":34149,"type":"ref","$ref":"quarto-resource-document-colors-filecolor","description":"quarto-resource-document-colors-filecolor"},"citecolor":{"_internalId":34150,"type":"ref","$ref":"quarto-resource-document-colors-citecolor","description":"quarto-resource-document-colors-citecolor"},"urlcolor":{"_internalId":34151,"type":"ref","$ref":"quarto-resource-document-colors-urlcolor","description":"quarto-resource-document-colors-urlcolor"},"toccolor":{"_internalId":34152,"type":"ref","$ref":"quarto-resource-document-colors-toccolor","description":"quarto-resource-document-colors-toccolor"},"colorlinks":{"_internalId":34153,"type":"ref","$ref":"quarto-resource-document-colors-colorlinks","description":"quarto-resource-document-colors-colorlinks"},"crossref":{"_internalId":34154,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":34155,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":34156,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":34157,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":34158,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":34159,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":34160,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":34161,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":34162,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":34163,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":34164,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":34165,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":34166,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":34167,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":34168,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":34169,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":34170,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":34171,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":34172,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":34173,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"mainfont":{"_internalId":34174,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":34175,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":34176,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"fontenc":{"_internalId":34177,"type":"ref","$ref":"quarto-resource-document-fonts-fontenc","description":"quarto-resource-document-fonts-fontenc"},"fontfamily":{"_internalId":34178,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamily","description":"quarto-resource-document-fonts-fontfamily"},"fontfamilyoptions":{"_internalId":34179,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamilyoptions","description":"quarto-resource-document-fonts-fontfamilyoptions"},"sansfont":{"_internalId":34180,"type":"ref","$ref":"quarto-resource-document-fonts-sansfont","description":"quarto-resource-document-fonts-sansfont"},"mathfont":{"_internalId":34181,"type":"ref","$ref":"quarto-resource-document-fonts-mathfont","description":"quarto-resource-document-fonts-mathfont"},"CJKmainfont":{"_internalId":34182,"type":"ref","$ref":"quarto-resource-document-fonts-CJKmainfont","description":"quarto-resource-document-fonts-CJKmainfont"},"mainfontoptions":{"_internalId":34183,"type":"ref","$ref":"quarto-resource-document-fonts-mainfontoptions","description":"quarto-resource-document-fonts-mainfontoptions"},"sansfontoptions":{"_internalId":34184,"type":"ref","$ref":"quarto-resource-document-fonts-sansfontoptions","description":"quarto-resource-document-fonts-sansfontoptions"},"monofontoptions":{"_internalId":34185,"type":"ref","$ref":"quarto-resource-document-fonts-monofontoptions","description":"quarto-resource-document-fonts-monofontoptions"},"mathfontoptions":{"_internalId":34186,"type":"ref","$ref":"quarto-resource-document-fonts-mathfontoptions","description":"quarto-resource-document-fonts-mathfontoptions"},"CJKoptions":{"_internalId":34187,"type":"ref","$ref":"quarto-resource-document-fonts-CJKoptions","description":"quarto-resource-document-fonts-CJKoptions"},"microtypeoptions":{"_internalId":34188,"type":"ref","$ref":"quarto-resource-document-fonts-microtypeoptions","description":"quarto-resource-document-fonts-microtypeoptions"},"linestretch":{"_internalId":34189,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"links-as-notes":{"_internalId":34190,"type":"ref","$ref":"quarto-resource-document-footnotes-links-as-notes","description":"quarto-resource-document-footnotes-links-as-notes"},"funding":{"_internalId":34191,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":34192,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":34192,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":34193,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":34194,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":34195,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":34196,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":34197,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":34198,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":34199,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":34200,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":34201,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":34202,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":34203,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":34204,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":34205,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":34206,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":34207,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":34208,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":34209,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":34210,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":34211,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":34212,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":34213,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":34214,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":34215,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":34216,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":34217,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":34218,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"shorthands":{"_internalId":34219,"type":"ref","$ref":"quarto-resource-document-language-shorthands","description":"quarto-resource-document-language-shorthands"},"dir":{"_internalId":34220,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"latex-auto-mk":{"_internalId":34221,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-mk","description":"quarto-resource-document-latexmk-latex-auto-mk"},"latex-auto-install":{"_internalId":34222,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-install","description":"quarto-resource-document-latexmk-latex-auto-install"},"latex-min-runs":{"_internalId":34223,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-min-runs","description":"quarto-resource-document-latexmk-latex-min-runs"},"latex-max-runs":{"_internalId":34224,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-max-runs","description":"quarto-resource-document-latexmk-latex-max-runs"},"latex-clean":{"_internalId":34225,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-clean","description":"quarto-resource-document-latexmk-latex-clean"},"latex-makeindex":{"_internalId":34226,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex","description":"quarto-resource-document-latexmk-latex-makeindex"},"latex-makeindex-opts":{"_internalId":34227,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex-opts","description":"quarto-resource-document-latexmk-latex-makeindex-opts"},"latex-tlmgr-opts":{"_internalId":34228,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tlmgr-opts","description":"quarto-resource-document-latexmk-latex-tlmgr-opts"},"latex-output-dir":{"_internalId":34229,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-output-dir","description":"quarto-resource-document-latexmk-latex-output-dir"},"latex-tinytex":{"_internalId":34230,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tinytex","description":"quarto-resource-document-latexmk-latex-tinytex"},"latex-input-paths":{"_internalId":34231,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-input-paths","description":"quarto-resource-document-latexmk-latex-input-paths"},"documentclass":{"_internalId":34232,"type":"ref","$ref":"quarto-resource-document-layout-documentclass","description":"quarto-resource-document-layout-documentclass"},"classoption":{"_internalId":34233,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"pagestyle":{"_internalId":34234,"type":"ref","$ref":"quarto-resource-document-layout-pagestyle","description":"quarto-resource-document-layout-pagestyle"},"papersize":{"_internalId":34235,"type":"ref","$ref":"quarto-resource-document-layout-papersize","description":"quarto-resource-document-layout-papersize"},"grid":{"_internalId":34236,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"margin-left":{"_internalId":34237,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":34238,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":34239,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":34240,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"geometry":{"_internalId":34241,"type":"ref","$ref":"quarto-resource-document-layout-geometry","description":"quarto-resource-document-layout-geometry"},"hyperrefoptions":{"_internalId":34242,"type":"ref","$ref":"quarto-resource-document-layout-hyperrefoptions","description":"quarto-resource-document-layout-hyperrefoptions"},"indent":{"_internalId":34243,"type":"ref","$ref":"quarto-resource-document-layout-indent","description":"quarto-resource-document-layout-indent"},"block-headings":{"_internalId":34244,"type":"ref","$ref":"quarto-resource-document-layout-block-headings","description":"quarto-resource-document-layout-block-headings"},"keywords":{"_internalId":34245,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":34246,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"title-meta":{"_internalId":34247,"type":"ref","$ref":"quarto-resource-document-metadata-title-meta","description":"quarto-resource-document-metadata-title-meta"},"author-meta":{"_internalId":34248,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":34249,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":34250,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":34251,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"secnumdepth":{"_internalId":34252,"type":"ref","$ref":"quarto-resource-document-numbering-secnumdepth","description":"quarto-resource-document-numbering-secnumdepth"},"shift-heading-level-by":{"_internalId":34253,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":34254,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":34255,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":34256,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"pdf-engine":{"_internalId":34257,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":34258,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":34259,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"beameroption":{"_internalId":34260,"type":"ref","$ref":"quarto-resource-document-options-beameroption","description":"quarto-resource-document-options-beameroption"},"aspectratio":{"_internalId":34261,"type":"ref","$ref":"quarto-resource-document-options-aspectratio","description":"quarto-resource-document-options-aspectratio"},"logo":{"_internalId":34262,"type":"ref","$ref":"quarto-resource-document-options-logo","description":"quarto-resource-document-options-logo"},"titlegraphic":{"_internalId":34263,"type":"ref","$ref":"quarto-resource-document-options-titlegraphic","description":"quarto-resource-document-options-titlegraphic"},"navigation":{"_internalId":34264,"type":"ref","$ref":"quarto-resource-document-options-navigation","description":"quarto-resource-document-options-navigation"},"section-titles":{"_internalId":34265,"type":"ref","$ref":"quarto-resource-document-options-section-titles","description":"quarto-resource-document-options-section-titles"},"colortheme":{"_internalId":34266,"type":"ref","$ref":"quarto-resource-document-options-colortheme","description":"quarto-resource-document-options-colortheme"},"colorthemeoptions":{"_internalId":34267,"type":"ref","$ref":"quarto-resource-document-options-colorthemeoptions","description":"quarto-resource-document-options-colorthemeoptions"},"fonttheme":{"_internalId":34268,"type":"ref","$ref":"quarto-resource-document-options-fonttheme","description":"quarto-resource-document-options-fonttheme"},"fontthemeoptions":{"_internalId":34269,"type":"ref","$ref":"quarto-resource-document-options-fontthemeoptions","description":"quarto-resource-document-options-fontthemeoptions"},"innertheme":{"_internalId":34270,"type":"ref","$ref":"quarto-resource-document-options-innertheme","description":"quarto-resource-document-options-innertheme"},"innerthemeoptions":{"_internalId":34271,"type":"ref","$ref":"quarto-resource-document-options-innerthemeoptions","description":"quarto-resource-document-options-innerthemeoptions"},"outertheme":{"_internalId":34272,"type":"ref","$ref":"quarto-resource-document-options-outertheme","description":"quarto-resource-document-options-outertheme"},"outerthemeoptions":{"_internalId":34273,"type":"ref","$ref":"quarto-resource-document-options-outerthemeoptions","description":"quarto-resource-document-options-outerthemeoptions"},"themeoptions":{"_internalId":34274,"type":"ref","$ref":"quarto-resource-document-options-themeoptions","description":"quarto-resource-document-options-themeoptions"},"quarto-required":{"_internalId":34275,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":34276,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":34277,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"cite-method":{"_internalId":34278,"type":"ref","$ref":"quarto-resource-document-references-cite-method","description":"quarto-resource-document-references-cite-method"},"citeproc":{"_internalId":34279,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"biblatexoptions":{"_internalId":34280,"type":"ref","$ref":"quarto-resource-document-references-biblatexoptions","description":"quarto-resource-document-references-biblatexoptions"},"natbiboptions":{"_internalId":34281,"type":"ref","$ref":"quarto-resource-document-references-natbiboptions","description":"quarto-resource-document-references-natbiboptions"},"biblio-style":{"_internalId":34282,"type":"ref","$ref":"quarto-resource-document-references-biblio-style","description":"quarto-resource-document-references-biblio-style"},"biblio-title":{"_internalId":34283,"type":"ref","$ref":"quarto-resource-document-references-biblio-title","description":"quarto-resource-document-references-biblio-title"},"biblio-config":{"_internalId":34284,"type":"ref","$ref":"quarto-resource-document-references-biblio-config","description":"quarto-resource-document-references-biblio-config"},"citation-abbreviations":{"_internalId":34285,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"link-citations":{"_internalId":34286,"type":"ref","$ref":"quarto-resource-document-references-link-citations","description":"quarto-resource-document-references-link-citations"},"link-bibliography":{"_internalId":34287,"type":"ref","$ref":"quarto-resource-document-references-link-bibliography","description":"quarto-resource-document-references-link-bibliography"},"notes-after-punctuation":{"_internalId":34288,"type":"ref","$ref":"quarto-resource-document-references-notes-after-punctuation","description":"quarto-resource-document-references-notes-after-punctuation"},"from":{"_internalId":34289,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":34289,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":34290,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":34291,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":34292,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":34293,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":34294,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":34295,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":34296,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":34297,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":34298,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":34299,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":34300,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"keep-tex":{"_internalId":34301,"type":"ref","$ref":"quarto-resource-document-render-keep-tex","description":"quarto-resource-document-render-keep-tex"},"extract-media":{"_internalId":34302,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":34303,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":34304,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":34305,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":34306,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":34307,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"use-rsvg-convert":{"_internalId":34308,"type":"ref","$ref":"quarto-resource-document-render-use-rsvg-convert","description":"quarto-resource-document-render-use-rsvg-convert"},"incremental":{"_internalId":34309,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":34310,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":34311,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":34312,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":34313,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":34313,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-title":{"_internalId":34314,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"lof":{"_internalId":34315,"type":"ref","$ref":"quarto-resource-document-toc-lof","description":"quarto-resource-document-toc-lof"},"lot":{"_internalId":34316,"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,grid,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":34318,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?biblatex([-+].+)?$":{"_internalId":36926,"type":"anyOf","anyOf":[{"_internalId":36924,"type":"object","description":"be an object","properties":{"eval":{"_internalId":36828,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":36829,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":36830,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":36831,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":36832,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":36833,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":36834,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":36835,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":36836,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":36837,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":36838,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":36839,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":36840,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":36841,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":36842,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":36843,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":36844,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":36845,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":36846,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":36847,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":36848,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":36849,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":36850,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":36851,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":36852,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":36853,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":36854,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":36855,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":36856,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":36857,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":36858,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":36859,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":36860,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":36861,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":36862,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":36862,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":36863,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":36864,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":36865,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":36866,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":36867,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":36868,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":36869,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":36870,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":36871,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":36872,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":36873,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":36874,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":36875,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":36876,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":36877,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":36878,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":36879,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":36880,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":36881,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":36882,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":36883,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":36884,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":36885,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":36886,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":36887,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":36888,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":36889,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":36890,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":36891,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":36892,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":36893,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":36894,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":36895,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":36896,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":36897,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":36898,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":36899,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":36899,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":36900,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":36901,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":36902,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":36903,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":36904,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":36905,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":36906,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":36907,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":36908,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":36909,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":36910,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":36911,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":36912,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":36913,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":36914,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":36915,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":36916,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":36917,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":36918,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":36919,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":36920,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":36921,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":36922,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":36922,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":36923,"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,grid,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":36925,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bibtex([-+].+)?$":{"_internalId":39533,"type":"anyOf","anyOf":[{"_internalId":39531,"type":"object","description":"be an object","properties":{"eval":{"_internalId":39435,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":39436,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":39437,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":39438,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":39439,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":39440,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":39441,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":39442,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":39443,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":39444,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":39445,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":39446,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":39447,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":39448,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":39449,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":39450,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":39451,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":39452,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":39453,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":39454,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":39455,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":39456,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":39457,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":39458,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":39459,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":39460,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":39461,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":39462,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":39463,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":39464,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":39465,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":39466,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":39467,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":39468,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":39469,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":39469,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":39470,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":39471,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":39472,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":39473,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":39474,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":39475,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":39476,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":39477,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":39478,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":39479,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":39480,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":39481,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":39482,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":39483,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":39484,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":39485,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":39486,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":39487,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":39488,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":39489,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":39490,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":39491,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":39492,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":39493,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":39494,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":39495,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":39496,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":39497,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":39498,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":39499,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":39500,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":39501,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":39502,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":39503,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":39504,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":39505,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":39506,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":39506,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":39507,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":39508,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":39509,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":39510,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":39511,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":39512,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":39513,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":39514,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":39515,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":39516,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":39517,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":39518,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":39519,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":39520,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":39521,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":39522,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":39523,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":39524,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":39525,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":39526,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":39527,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":39528,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":39529,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":39529,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":39530,"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,grid,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":39532,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?chunkedhtml([-+].+)?$":{"_internalId":42141,"type":"anyOf","anyOf":[{"_internalId":42139,"type":"object","description":"be an object","properties":{"eval":{"_internalId":42042,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":42043,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":42044,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":42045,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":42046,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":42047,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":42048,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":42049,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":42050,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":42051,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":42052,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":42053,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":42054,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":42055,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":42056,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":42057,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":42058,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":42059,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":42060,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":42061,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":42062,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":42063,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":42064,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":42065,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":42066,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":42067,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":42068,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":42069,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":42070,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":42071,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":42072,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":42073,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":42074,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"split-level":{"_internalId":42075,"type":"ref","$ref":"quarto-resource-document-formatting-split-level","description":"quarto-resource-document-formatting-split-level"},"funding":{"_internalId":42076,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":42077,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":42077,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":42078,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":42079,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":42080,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":42081,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":42082,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":42083,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":42084,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":42085,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":42086,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":42087,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":42088,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":42089,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":42090,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":42091,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":42092,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":42093,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":42094,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":42095,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":42096,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":42097,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":42098,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":42099,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":42100,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":42101,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":42102,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":42103,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":42104,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":42105,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":42106,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":42107,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":42108,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":42109,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":42110,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":42111,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":42112,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":42113,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":42114,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":42114,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":42115,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":42116,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":42117,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":42118,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":42119,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":42120,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":42121,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":42122,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":42123,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":42124,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":42125,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":42126,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":42127,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":42128,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":42129,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":42130,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":42131,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":42132,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":42133,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":42134,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":42135,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":42136,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":42137,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":42137,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":42138,"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,grid,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":42140,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?commonmark([-+].+)?$":{"_internalId":44755,"type":"anyOf","anyOf":[{"_internalId":44753,"type":"object","description":"be an object","properties":{"eval":{"_internalId":44650,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":44651,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":44652,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":44653,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":44654,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":44655,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":44656,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":44657,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":44658,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":44659,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":44660,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":44661,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":44662,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":44663,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":44664,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":44665,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":44666,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":44667,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":44668,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":44669,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":44670,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":44671,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":44672,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":44673,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":44674,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":44675,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":44676,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":44677,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":44678,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":44679,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":44680,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":44681,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":44682,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":44683,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":44684,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":44685,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":44685,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":44686,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":44687,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":44688,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":44689,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":44690,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":44691,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":44692,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":44693,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":44694,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":44695,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":44696,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":44697,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":44698,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":44699,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":44700,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":44701,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":44702,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":44703,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":44704,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":44705,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":44706,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":44707,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":44708,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":44709,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":44710,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":44711,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":44712,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":44713,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":44714,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":44715,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":44716,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":44717,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":44718,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":44719,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":44720,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":44721,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":44722,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":44723,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":44724,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":44725,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":44726,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":44726,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":44727,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":44728,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":44729,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":44730,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":44731,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":44732,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":44733,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":44734,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":44735,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":44736,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":44737,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":44738,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":44739,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":44740,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":44741,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":44742,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":44743,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":44744,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":44745,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":44746,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":44747,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":44748,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":44749,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":44750,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":44751,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":44751,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":44752,"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,grid,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":44754,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?commonmark_x([-+].+)?$":{"_internalId":47369,"type":"anyOf","anyOf":[{"_internalId":47367,"type":"object","description":"be an object","properties":{"eval":{"_internalId":47264,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":47265,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":47266,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":47267,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":47268,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":47269,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":47270,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":47271,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":47272,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":47273,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":47274,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":47275,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":47276,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":47277,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":47278,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":47279,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":47280,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":47281,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":47282,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":47283,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":47284,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":47285,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":47286,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":47287,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":47288,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":47289,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":47290,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":47291,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":47292,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":47293,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":47294,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":47295,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":47296,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":47297,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":47298,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":47299,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":47299,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":47300,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":47301,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":47302,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":47303,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":47304,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":47305,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":47306,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":47307,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":47308,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":47309,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":47310,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":47311,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":47312,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":47313,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":47314,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":47315,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":47316,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":47317,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":47318,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":47319,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":47320,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":47321,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":47322,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":47323,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":47324,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":47325,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":47326,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":47327,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":47328,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":47329,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":47330,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":47331,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":47332,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":47333,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":47334,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":47335,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":47336,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":47337,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":47338,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":47339,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":47340,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":47340,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":47341,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":47342,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":47343,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":47344,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":47345,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":47346,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":47347,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":47348,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":47349,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":47350,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":47351,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":47352,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":47353,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":47354,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":47355,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":47356,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":47357,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":47358,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":47359,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":47360,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":47361,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":47362,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":47363,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":47364,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":47365,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":47365,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":47366,"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,grid,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":47368,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?context([-+].+)?$":{"_internalId":50005,"type":"anyOf","anyOf":[{"_internalId":50003,"type":"object","description":"be an object","properties":{"eval":{"_internalId":49878,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":49879,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":49880,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":49881,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":49882,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":49883,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":49884,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":49885,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":49886,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":49887,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":49888,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":49889,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"order":{"_internalId":49890,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":49891,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":49892,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"linkcolor":{"_internalId":49893,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"contrastcolor":{"_internalId":49894,"type":"ref","$ref":"quarto-resource-document-colors-contrastcolor","description":"quarto-resource-document-colors-contrastcolor"},"crossref":{"_internalId":49895,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":49896,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":49897,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":49898,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":49899,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":49900,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":49901,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":49902,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":49903,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":49904,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":49905,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":49906,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":49907,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":49908,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":49909,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":49910,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":49911,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":49912,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":49913,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":49914,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"mainfont":{"_internalId":49915,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":49916,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":49917,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"linestretch":{"_internalId":49918,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"interlinespace":{"_internalId":49919,"type":"ref","$ref":"quarto-resource-document-fonts-interlinespace","description":"quarto-resource-document-fonts-interlinespace"},"linkstyle":{"_internalId":49920,"type":"ref","$ref":"quarto-resource-document-fonts-linkstyle","description":"quarto-resource-document-fonts-linkstyle"},"whitespace":{"_internalId":49921,"type":"ref","$ref":"quarto-resource-document-fonts-whitespace","description":"quarto-resource-document-fonts-whitespace"},"indenting":{"_internalId":49922,"type":"ref","$ref":"quarto-resource-document-formatting-indenting","description":"quarto-resource-document-formatting-indenting"},"funding":{"_internalId":49923,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":49924,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":49924,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":49925,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":49926,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":49927,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":49928,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":49929,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":49930,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":49931,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":49932,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":49933,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":49934,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":49935,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":49936,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":49937,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":49938,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":49939,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":49940,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":49941,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":49942,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":49943,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":49944,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":49945,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":49946,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"headertext":{"_internalId":49947,"type":"ref","$ref":"quarto-resource-document-includes-headertext","description":"quarto-resource-document-includes-headertext"},"footertext":{"_internalId":49948,"type":"ref","$ref":"quarto-resource-document-includes-footertext","description":"quarto-resource-document-includes-footertext"},"includesource":{"_internalId":49949,"type":"ref","$ref":"quarto-resource-document-includes-includesource","description":"quarto-resource-document-includes-includesource"},"metadata-file":{"_internalId":49950,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":49951,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":49952,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":49953,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":49954,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"layout":{"_internalId":49955,"type":"ref","$ref":"quarto-resource-document-layout-layout","description":"quarto-resource-document-layout-layout"},"grid":{"_internalId":49956,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"margin-left":{"_internalId":49957,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":49958,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":49959,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":49960,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"keywords":{"_internalId":49961,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"number-sections":{"_internalId":49962,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":49963,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"pagenumbering":{"_internalId":49964,"type":"ref","$ref":"quarto-resource-document-numbering-pagenumbering","description":"quarto-resource-document-numbering-pagenumbering"},"top-level-division":{"_internalId":49965,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":49966,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"pdf-engine":{"_internalId":49967,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":49968,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":49969,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"quarto-required":{"_internalId":49970,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"pdfa":{"_internalId":49971,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfa","description":"quarto-resource-document-pdfa-pdfa"},"pdfaiccprofile":{"_internalId":49972,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfaiccprofile","description":"quarto-resource-document-pdfa-pdfaiccprofile"},"pdfaintent":{"_internalId":49973,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfaintent","description":"quarto-resource-document-pdfa-pdfaintent"},"bibliography":{"_internalId":49974,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":49975,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":49976,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":49977,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":49978,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":49978,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":49979,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":49980,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":49981,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":49982,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":49983,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":49984,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":49985,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":49986,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":49987,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":49988,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":49989,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":49990,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":49991,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":49992,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":49993,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":49994,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":49995,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":49996,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":49997,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":49998,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":49999,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":50000,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":50001,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":50001,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":50002,"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,grid,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":50004,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?csljson([-+].+)?$":{"_internalId":52612,"type":"anyOf","anyOf":[{"_internalId":52610,"type":"object","description":"be an object","properties":{"eval":{"_internalId":52514,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":52515,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":52516,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":52517,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":52518,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":52519,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":52520,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":52521,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":52522,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":52523,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":52524,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":52525,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":52526,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":52527,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":52528,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":52529,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":52530,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":52531,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":52532,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":52533,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":52534,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":52535,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":52536,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":52537,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":52538,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":52539,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":52540,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":52541,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":52542,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":52543,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":52544,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":52545,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":52546,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":52547,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":52548,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":52548,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":52549,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":52550,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":52551,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":52552,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":52553,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":52554,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":52555,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":52556,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":52557,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":52558,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":52559,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":52560,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":52561,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":52562,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":52563,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":52564,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":52565,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":52566,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":52567,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":52568,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":52569,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":52570,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":52571,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":52572,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":52573,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":52574,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":52575,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":52576,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":52577,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":52578,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":52579,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":52580,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":52581,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":52582,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":52583,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":52584,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":52585,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":52585,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":52586,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":52587,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":52588,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":52589,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":52590,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":52591,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":52592,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":52593,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":52594,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":52595,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":52596,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":52597,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":52598,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":52599,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":52600,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":52601,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":52602,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":52603,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":52604,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":52605,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":52606,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":52607,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":52608,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":52608,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":52609,"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,grid,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":52611,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?djot([-+].+)?$":{"_internalId":55219,"type":"anyOf","anyOf":[{"_internalId":55217,"type":"object","description":"be an object","properties":{"eval":{"_internalId":55121,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":55122,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":55123,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":55124,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":55125,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":55126,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":55127,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":55128,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":55129,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":55130,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":55131,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":55132,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":55133,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":55134,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":55135,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":55136,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":55137,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":55138,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":55139,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":55140,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":55141,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":55142,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":55143,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":55144,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":55145,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":55146,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":55147,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":55148,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":55149,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":55150,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":55151,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":55152,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":55153,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":55154,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":55155,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":55155,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":55156,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":55157,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":55158,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":55159,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":55160,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":55161,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":55162,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":55163,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":55164,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":55165,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":55166,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":55167,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":55168,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":55169,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":55170,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":55171,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":55172,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":55173,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":55174,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":55175,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":55176,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":55177,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":55178,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":55179,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":55180,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":55181,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":55182,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":55183,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":55184,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":55185,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":55186,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":55187,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":55188,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":55189,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":55190,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":55191,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":55192,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":55192,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":55193,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":55194,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":55195,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":55196,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":55197,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":55198,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":55199,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":55200,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":55201,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":55202,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":55203,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":55204,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":55205,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":55206,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":55207,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":55208,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":55209,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":55210,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":55211,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":55212,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":55213,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":55214,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":55215,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":55215,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":55216,"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,grid,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":55218,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?docbook([-+].+)?$":{"_internalId":57822,"type":"anyOf","anyOf":[{"_internalId":57820,"type":"object","description":"be an object","properties":{"eval":{"_internalId":57728,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":57729,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":57730,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":57731,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":57732,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":57733,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":57734,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":57735,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":57736,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":57737,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":57738,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":57739,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":57740,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":57741,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":57742,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":57743,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":57744,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":57745,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":57746,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":57747,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":57748,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":57749,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":57750,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":57751,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":57752,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":57753,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":57754,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":57755,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":57756,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":57757,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":57758,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":57759,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":57760,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":57761,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":57762,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":57762,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":57763,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":57764,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":57765,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":57766,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":57767,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":57768,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":57769,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":57770,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":57771,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":57772,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":57773,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":57774,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":57775,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":57776,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":57777,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":57778,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":57779,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":57780,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":57781,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":57782,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":57783,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":57784,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":57785,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":57786,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":57787,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":57788,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":57789,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":57790,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":57791,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":57792,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":57793,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":57794,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":57795,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"quarto-required":{"_internalId":57796,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":57797,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":57798,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":57799,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":57800,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":57801,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":57801,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":57802,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":57803,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":57804,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":57805,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":57806,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":57807,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":57808,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":57809,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":57810,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":57811,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":57812,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":57813,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":57814,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":57815,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":57816,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":57817,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":57818,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":57819,"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,grid,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":57821,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?docbook4([-+].+)?$":{"_internalId":60425,"type":"anyOf","anyOf":[{"_internalId":60423,"type":"object","description":"be an object","properties":{"eval":{"_internalId":60331,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":60332,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":60333,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":60334,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":60335,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":60336,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":60337,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":60338,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":60339,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":60340,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":60341,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":60342,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":60343,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":60344,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":60345,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":60346,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":60347,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":60348,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":60349,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":60350,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":60351,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":60352,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":60353,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":60354,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":60355,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":60356,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":60357,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":60358,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":60359,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":60360,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":60361,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":60362,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":60363,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":60364,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":60365,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":60365,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":60366,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":60367,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":60368,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":60369,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":60370,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":60371,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":60372,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":60373,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":60374,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":60375,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":60376,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":60377,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":60378,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":60379,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":60380,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":60381,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":60382,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":60383,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":60384,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":60385,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":60386,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":60387,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":60388,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":60389,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":60390,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":60391,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":60392,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":60393,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":60394,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":60395,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":60396,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":60397,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":60398,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"quarto-required":{"_internalId":60399,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":60400,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":60401,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":60402,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":60403,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":60404,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":60404,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":60405,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":60406,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":60407,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":60408,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":60409,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":60410,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":60411,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":60412,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":60413,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":60414,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":60415,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":60416,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":60417,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":60418,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":60419,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":60420,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":60421,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":60422,"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,grid,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":60424,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?docbook5([-+].+)?$":{"_internalId":63028,"type":"anyOf","anyOf":[{"_internalId":63026,"type":"object","description":"be an object","properties":{"eval":{"_internalId":62934,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":62935,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":62936,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":62937,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":62938,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":62939,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":62940,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":62941,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":62942,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":62943,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":62944,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":62945,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":62946,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":62947,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":62948,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":62949,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":62950,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":62951,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":62952,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":62953,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":62954,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":62955,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":62956,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":62957,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":62958,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":62959,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":62960,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":62961,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":62962,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":62963,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":62964,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":62965,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":62966,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":62967,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":62968,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":62968,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":62969,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":62970,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":62971,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":62972,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":62973,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":62974,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":62975,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":62976,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":62977,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":62978,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":62979,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":62980,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":62981,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":62982,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":62983,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":62984,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":62985,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":62986,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":62987,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":62988,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":62989,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":62990,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":62991,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":62992,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":62993,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":62994,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":62995,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":62996,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":62997,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":62998,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":62999,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":63000,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":63001,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"quarto-required":{"_internalId":63002,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":63003,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":63004,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":63005,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":63006,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":63007,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":63007,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":63008,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":63009,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":63010,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":63011,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":63012,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":63013,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":63014,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":63015,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":63016,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":63017,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":63018,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":63019,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":63020,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":63021,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":63022,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":63023,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":63024,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":63025,"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,grid,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":63027,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?docx([-+].+)?$":{"_internalId":65643,"type":"anyOf","anyOf":[{"_internalId":65641,"type":"object","description":"be an object","properties":{"eval":{"_internalId":65537,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":65538,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"fig-align":{"_internalId":65539,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"output":{"_internalId":65540,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":65541,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":65542,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":65543,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":65544,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":65545,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":65546,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":65547,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":65548,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":65549,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":65550,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"order":{"_internalId":65551,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":65552,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":65553,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":65554,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":65555,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":65556,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":65557,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"crossref":{"_internalId":65558,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":65559,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":65560,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":65561,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":65562,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":65563,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":65564,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":65565,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":65566,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":65567,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":65568,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":65569,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":65570,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":65571,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":65572,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":65573,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":65574,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":65575,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":65576,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":65577,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":65578,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":65579,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":65579,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":65580,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":65581,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":65582,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":65583,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":65584,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":65585,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":65586,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":65587,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":65588,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":65589,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":65590,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":65591,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":65592,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":65593,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"track-changes":{"_internalId":65594,"type":"ref","$ref":"quarto-resource-document-hidden-track-changes","description":"quarto-resource-document-hidden-track-changes"},"output-divs":{"_internalId":65595,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":65596,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":65597,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":65598,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":65599,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":65600,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":65601,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"page-width":{"_internalId":65602,"type":"ref","$ref":"quarto-resource-document-layout-page-width","description":"quarto-resource-document-layout-page-width"},"grid":{"_internalId":65603,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"keywords":{"_internalId":65604,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":65605,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"description":{"_internalId":65606,"type":"ref","$ref":"quarto-resource-document-metadata-description","description":"quarto-resource-document-metadata-description"},"category":{"_internalId":65607,"type":"ref","$ref":"quarto-resource-document-metadata-category","description":"quarto-resource-document-metadata-category"},"number-sections":{"_internalId":65608,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":65609,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"shift-heading-level-by":{"_internalId":65610,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"reference-doc":{"_internalId":65611,"type":"ref","$ref":"quarto-resource-document-options-reference-doc","description":"quarto-resource-document-options-reference-doc"},"brand":{"_internalId":65612,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":65613,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":65614,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":65615,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":65616,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":65617,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"link-citations":{"_internalId":65618,"type":"ref","$ref":"quarto-resource-document-references-link-citations","description":"quarto-resource-document-references-link-citations"},"link-bibliography":{"_internalId":65619,"type":"ref","$ref":"quarto-resource-document-references-link-bibliography","description":"quarto-resource-document-references-link-bibliography"},"notes-after-punctuation":{"_internalId":65620,"type":"ref","$ref":"quarto-resource-document-references-notes-after-punctuation","description":"quarto-resource-document-references-notes-after-punctuation"},"from":{"_internalId":65621,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":65621,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":65622,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":65623,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"filters":{"_internalId":65624,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":65625,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":65626,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":65627,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":65628,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":65629,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":65630,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":65631,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":65632,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":65633,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":65634,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":65635,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":65636,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":65637,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"toc":{"_internalId":65638,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":65638,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":65639,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":65640,"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,grid,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":65642,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?dokuwiki([-+].+)?$":{"_internalId":68250,"type":"anyOf","anyOf":[{"_internalId":68248,"type":"object","description":"be an object","properties":{"eval":{"_internalId":68152,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":68153,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":68154,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":68155,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":68156,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":68157,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":68158,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":68159,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":68160,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":68161,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":68162,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":68163,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":68164,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":68165,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":68166,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":68167,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":68168,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":68169,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":68170,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":68171,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":68172,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":68173,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":68174,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":68175,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":68176,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":68177,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":68178,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":68179,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":68180,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":68181,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":68182,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":68183,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":68184,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":68185,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":68186,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":68186,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":68187,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":68188,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":68189,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":68190,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":68191,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":68192,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":68193,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":68194,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":68195,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":68196,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":68197,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":68198,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":68199,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":68200,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":68201,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":68202,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":68203,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":68204,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":68205,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":68206,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":68207,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":68208,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":68209,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":68210,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":68211,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":68212,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":68213,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":68214,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":68215,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":68216,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":68217,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":68218,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":68219,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":68220,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":68221,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":68222,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":68223,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":68223,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":68224,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":68225,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":68226,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":68227,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":68228,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":68229,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":68230,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":68231,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":68232,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":68233,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":68234,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":68235,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":68236,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":68237,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":68238,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":68239,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":68240,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":68241,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":68242,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":68243,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":68244,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":68245,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":68246,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":68246,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":68247,"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,grid,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":68249,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?dzslides([-+].+)?$":{"_internalId":70907,"type":"anyOf","anyOf":[{"_internalId":70905,"type":"object","description":"be an object","properties":{"eval":{"_internalId":70759,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":70760,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":70761,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":70762,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":70763,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":70764,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":70765,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":70766,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":70767,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":70768,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":70769,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":70770,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":70771,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":70772,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":70773,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":70774,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":70775,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":70776,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":70777,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":70778,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":70779,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"order":{"_internalId":70780,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":70781,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":70782,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":70783,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":70784,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":70785,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":70786,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":70787,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":70788,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"monobackgroundcolor":{"_internalId":70789,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"comments":{"_internalId":70790,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":70791,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":70792,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":70793,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":70794,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":70795,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":70796,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":70797,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":70798,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":70799,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":70800,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":70801,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":70802,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":70803,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":70804,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":70805,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":70806,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":70807,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":70808,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":70809,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":70810,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":70811,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":70812,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":70813,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":70814,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":70815,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":70816,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":70816,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":70817,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":70818,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":70819,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":70820,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":70821,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":70822,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":70823,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":70824,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":70825,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":70826,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":70827,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":70828,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":70829,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":70830,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":70831,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":70832,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":70833,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":70834,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":70835,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":70836,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":70837,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":70838,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":70839,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":70840,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":70841,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":70842,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":70843,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":70844,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":70845,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"grid":{"_internalId":70846,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"max-width":{"_internalId":70847,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":70848,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":70849,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":70850,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":70851,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"mermaid":{"_internalId":70852,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":70853,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":70854,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":70855,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":70856,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":70857,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":70858,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":70859,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":70860,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":70861,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":70862,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":70863,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":70864,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"document-css":{"_internalId":70865,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":70866,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":70867,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":70868,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":70869,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":70870,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":70871,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":70872,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":70873,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":70874,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":70875,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":70876,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":70876,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":70877,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":70878,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":70879,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":70880,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":70881,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":70882,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":70883,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":70884,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":70885,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":70886,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":70887,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":70888,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":70889,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":70890,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":70891,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":70892,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":70893,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":70894,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":70895,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":70896,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"incremental":{"_internalId":70897,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":70898,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":70899,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":70900,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":70901,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":70902,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":70902,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":70903,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"axe":{"_internalId":70904,"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,grid,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":70906,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?epub([-+].+)?$":{"_internalId":73554,"type":"anyOf","anyOf":[{"_internalId":73552,"type":"object","description":"be an object","properties":{"eval":{"_internalId":73416,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":73417,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":73418,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":73419,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":73420,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":73421,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":73422,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"tbl-colwidths":{"_internalId":73423,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":73424,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":73425,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":73426,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":73427,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":73428,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":73429,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":73430,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":73431,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":73432,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":73433,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":73434,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"order":{"_internalId":73435,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":73436,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":73437,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-annotations":{"_internalId":73438,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":73439,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":73440,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":73441,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":73442,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"crossref":{"_internalId":73443,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":73444,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":73445,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"identifier":{"_internalId":73446,"type":"ref","$ref":"quarto-resource-document-epub-identifier","description":"quarto-resource-document-epub-identifier"},"creator":{"_internalId":73447,"type":"ref","$ref":"quarto-resource-document-epub-creator","description":"quarto-resource-document-epub-creator"},"contributor":{"_internalId":73448,"type":"ref","$ref":"quarto-resource-document-epub-contributor","description":"quarto-resource-document-epub-contributor"},"subject":{"_internalId":73449,"type":"ref","$ref":"quarto-resource-document-epub-subject","description":"quarto-resource-document-epub-subject"},"type":{"_internalId":73450,"type":"ref","$ref":"quarto-resource-document-epub-type","description":"quarto-resource-document-epub-type"},"format":{"_internalId":73451,"type":"ref","$ref":"quarto-resource-document-epub-format","description":"quarto-resource-document-epub-format"},"relation":{"_internalId":73452,"type":"ref","$ref":"quarto-resource-document-epub-relation","description":"quarto-resource-document-epub-relation"},"coverage":{"_internalId":73453,"type":"ref","$ref":"quarto-resource-document-epub-coverage","description":"quarto-resource-document-epub-coverage"},"rights":{"_internalId":73454,"type":"ref","$ref":"quarto-resource-document-epub-rights","description":"quarto-resource-document-epub-rights"},"belongs-to-collection":{"_internalId":73455,"type":"ref","$ref":"quarto-resource-document-epub-belongs-to-collection","description":"quarto-resource-document-epub-belongs-to-collection"},"group-position":{"_internalId":73456,"type":"ref","$ref":"quarto-resource-document-epub-group-position","description":"quarto-resource-document-epub-group-position"},"page-progression-direction":{"_internalId":73457,"type":"ref","$ref":"quarto-resource-document-epub-page-progression-direction","description":"quarto-resource-document-epub-page-progression-direction"},"ibooks":{"_internalId":73458,"type":"ref","$ref":"quarto-resource-document-epub-ibooks","description":"quarto-resource-document-epub-ibooks"},"epub-metadata":{"_internalId":73459,"type":"ref","$ref":"quarto-resource-document-epub-epub-metadata","description":"quarto-resource-document-epub-epub-metadata"},"epub-subdirectory":{"_internalId":73460,"type":"ref","$ref":"quarto-resource-document-epub-epub-subdirectory","description":"quarto-resource-document-epub-epub-subdirectory"},"epub-fonts":{"_internalId":73461,"type":"ref","$ref":"quarto-resource-document-epub-epub-fonts","description":"quarto-resource-document-epub-epub-fonts"},"epub-chapter-level":{"_internalId":73462,"type":"ref","$ref":"quarto-resource-document-epub-epub-chapter-level","description":"quarto-resource-document-epub-epub-chapter-level"},"epub-cover-image":{"_internalId":73463,"type":"ref","$ref":"quarto-resource-document-epub-epub-cover-image","description":"quarto-resource-document-epub-epub-cover-image"},"epub-title-page":{"_internalId":73464,"type":"ref","$ref":"quarto-resource-document-epub-epub-title-page","description":"quarto-resource-document-epub-epub-title-page"},"engine":{"_internalId":73465,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":73466,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":73467,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":73468,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":73469,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":73470,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":73471,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":73472,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":73473,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":73474,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":73475,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":73476,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":73477,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":73478,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":73479,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":73480,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":73481,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":73482,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"split-level":{"_internalId":73483,"type":"ref","$ref":"quarto-resource-document-formatting-split-level","description":"quarto-resource-document-formatting-split-level"},"funding":{"_internalId":73484,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":73485,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":73485,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":73486,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":73487,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":73488,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":73489,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":73490,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":73491,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":73492,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":73493,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":73494,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":73495,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":73496,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":73497,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":73498,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":73499,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":73500,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":73501,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":73502,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":73503,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":73504,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":73505,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":73506,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":73507,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":73508,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":73509,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":73510,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":73511,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":73512,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":73513,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":73514,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"date-meta":{"_internalId":73515,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":73516,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":73517,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":73518,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":73519,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":73520,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"css":{"_internalId":73521,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"html-math-method":{"_internalId":73522,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"html-q-tags":{"_internalId":73523,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":73524,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":73525,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":73526,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":73527,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":73528,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":73529,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":73529,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":73530,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":73531,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":73532,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":73533,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":73534,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":73535,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":73536,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":73537,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":73538,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":73539,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":73540,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":73541,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":73542,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":73543,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":73544,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":73545,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":73546,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":73547,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":73548,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":73549,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":73549,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":73550,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":73551,"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,grid,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":73553,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?epub2([-+].+)?$":{"_internalId":76201,"type":"anyOf","anyOf":[{"_internalId":76199,"type":"object","description":"be an object","properties":{"eval":{"_internalId":76063,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":76064,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":76065,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":76066,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":76067,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":76068,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":76069,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"tbl-colwidths":{"_internalId":76070,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":76071,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":76072,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":76073,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":76074,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":76075,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":76076,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":76077,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":76078,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":76079,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":76080,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":76081,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"order":{"_internalId":76082,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":76083,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":76084,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-annotations":{"_internalId":76085,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":76086,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":76087,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":76088,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":76089,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"crossref":{"_internalId":76090,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":76091,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":76092,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"identifier":{"_internalId":76093,"type":"ref","$ref":"quarto-resource-document-epub-identifier","description":"quarto-resource-document-epub-identifier"},"creator":{"_internalId":76094,"type":"ref","$ref":"quarto-resource-document-epub-creator","description":"quarto-resource-document-epub-creator"},"contributor":{"_internalId":76095,"type":"ref","$ref":"quarto-resource-document-epub-contributor","description":"quarto-resource-document-epub-contributor"},"subject":{"_internalId":76096,"type":"ref","$ref":"quarto-resource-document-epub-subject","description":"quarto-resource-document-epub-subject"},"type":{"_internalId":76097,"type":"ref","$ref":"quarto-resource-document-epub-type","description":"quarto-resource-document-epub-type"},"format":{"_internalId":76098,"type":"ref","$ref":"quarto-resource-document-epub-format","description":"quarto-resource-document-epub-format"},"relation":{"_internalId":76099,"type":"ref","$ref":"quarto-resource-document-epub-relation","description":"quarto-resource-document-epub-relation"},"coverage":{"_internalId":76100,"type":"ref","$ref":"quarto-resource-document-epub-coverage","description":"quarto-resource-document-epub-coverage"},"rights":{"_internalId":76101,"type":"ref","$ref":"quarto-resource-document-epub-rights","description":"quarto-resource-document-epub-rights"},"belongs-to-collection":{"_internalId":76102,"type":"ref","$ref":"quarto-resource-document-epub-belongs-to-collection","description":"quarto-resource-document-epub-belongs-to-collection"},"group-position":{"_internalId":76103,"type":"ref","$ref":"quarto-resource-document-epub-group-position","description":"quarto-resource-document-epub-group-position"},"page-progression-direction":{"_internalId":76104,"type":"ref","$ref":"quarto-resource-document-epub-page-progression-direction","description":"quarto-resource-document-epub-page-progression-direction"},"ibooks":{"_internalId":76105,"type":"ref","$ref":"quarto-resource-document-epub-ibooks","description":"quarto-resource-document-epub-ibooks"},"epub-metadata":{"_internalId":76106,"type":"ref","$ref":"quarto-resource-document-epub-epub-metadata","description":"quarto-resource-document-epub-epub-metadata"},"epub-subdirectory":{"_internalId":76107,"type":"ref","$ref":"quarto-resource-document-epub-epub-subdirectory","description":"quarto-resource-document-epub-epub-subdirectory"},"epub-fonts":{"_internalId":76108,"type":"ref","$ref":"quarto-resource-document-epub-epub-fonts","description":"quarto-resource-document-epub-epub-fonts"},"epub-chapter-level":{"_internalId":76109,"type":"ref","$ref":"quarto-resource-document-epub-epub-chapter-level","description":"quarto-resource-document-epub-epub-chapter-level"},"epub-cover-image":{"_internalId":76110,"type":"ref","$ref":"quarto-resource-document-epub-epub-cover-image","description":"quarto-resource-document-epub-epub-cover-image"},"epub-title-page":{"_internalId":76111,"type":"ref","$ref":"quarto-resource-document-epub-epub-title-page","description":"quarto-resource-document-epub-epub-title-page"},"engine":{"_internalId":76112,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":76113,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":76114,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":76115,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":76116,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":76117,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":76118,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":76119,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":76120,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":76121,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":76122,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":76123,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":76124,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":76125,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":76126,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":76127,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":76128,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":76129,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"split-level":{"_internalId":76130,"type":"ref","$ref":"quarto-resource-document-formatting-split-level","description":"quarto-resource-document-formatting-split-level"},"funding":{"_internalId":76131,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":76132,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":76132,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":76133,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":76134,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":76135,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":76136,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":76137,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":76138,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":76139,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":76140,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":76141,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":76142,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":76143,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":76144,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":76145,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":76146,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":76147,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":76148,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":76149,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":76150,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":76151,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":76152,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":76153,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":76154,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":76155,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":76156,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":76157,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":76158,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":76159,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":76160,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":76161,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"date-meta":{"_internalId":76162,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":76163,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":76164,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":76165,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":76166,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":76167,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"css":{"_internalId":76168,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"html-math-method":{"_internalId":76169,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"html-q-tags":{"_internalId":76170,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":76171,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":76172,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":76173,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":76174,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":76175,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":76176,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":76176,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":76177,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":76178,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":76179,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":76180,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":76181,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":76182,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":76183,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":76184,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":76185,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":76186,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":76187,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":76188,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":76189,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":76190,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":76191,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":76192,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":76193,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":76194,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":76195,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":76196,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":76196,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":76197,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":76198,"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,grid,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":76200,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?epub3([-+].+)?$":{"_internalId":78848,"type":"anyOf","anyOf":[{"_internalId":78846,"type":"object","description":"be an object","properties":{"eval":{"_internalId":78710,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":78711,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":78712,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":78713,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":78714,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":78715,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":78716,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"tbl-colwidths":{"_internalId":78717,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":78718,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":78719,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":78720,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":78721,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":78722,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":78723,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":78724,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":78725,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":78726,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":78727,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":78728,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"order":{"_internalId":78729,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":78730,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":78731,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-annotations":{"_internalId":78732,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":78733,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":78734,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":78735,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":78736,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"crossref":{"_internalId":78737,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":78738,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":78739,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"identifier":{"_internalId":78740,"type":"ref","$ref":"quarto-resource-document-epub-identifier","description":"quarto-resource-document-epub-identifier"},"creator":{"_internalId":78741,"type":"ref","$ref":"quarto-resource-document-epub-creator","description":"quarto-resource-document-epub-creator"},"contributor":{"_internalId":78742,"type":"ref","$ref":"quarto-resource-document-epub-contributor","description":"quarto-resource-document-epub-contributor"},"subject":{"_internalId":78743,"type":"ref","$ref":"quarto-resource-document-epub-subject","description":"quarto-resource-document-epub-subject"},"type":{"_internalId":78744,"type":"ref","$ref":"quarto-resource-document-epub-type","description":"quarto-resource-document-epub-type"},"format":{"_internalId":78745,"type":"ref","$ref":"quarto-resource-document-epub-format","description":"quarto-resource-document-epub-format"},"relation":{"_internalId":78746,"type":"ref","$ref":"quarto-resource-document-epub-relation","description":"quarto-resource-document-epub-relation"},"coverage":{"_internalId":78747,"type":"ref","$ref":"quarto-resource-document-epub-coverage","description":"quarto-resource-document-epub-coverage"},"rights":{"_internalId":78748,"type":"ref","$ref":"quarto-resource-document-epub-rights","description":"quarto-resource-document-epub-rights"},"belongs-to-collection":{"_internalId":78749,"type":"ref","$ref":"quarto-resource-document-epub-belongs-to-collection","description":"quarto-resource-document-epub-belongs-to-collection"},"group-position":{"_internalId":78750,"type":"ref","$ref":"quarto-resource-document-epub-group-position","description":"quarto-resource-document-epub-group-position"},"page-progression-direction":{"_internalId":78751,"type":"ref","$ref":"quarto-resource-document-epub-page-progression-direction","description":"quarto-resource-document-epub-page-progression-direction"},"ibooks":{"_internalId":78752,"type":"ref","$ref":"quarto-resource-document-epub-ibooks","description":"quarto-resource-document-epub-ibooks"},"epub-metadata":{"_internalId":78753,"type":"ref","$ref":"quarto-resource-document-epub-epub-metadata","description":"quarto-resource-document-epub-epub-metadata"},"epub-subdirectory":{"_internalId":78754,"type":"ref","$ref":"quarto-resource-document-epub-epub-subdirectory","description":"quarto-resource-document-epub-epub-subdirectory"},"epub-fonts":{"_internalId":78755,"type":"ref","$ref":"quarto-resource-document-epub-epub-fonts","description":"quarto-resource-document-epub-epub-fonts"},"epub-chapter-level":{"_internalId":78756,"type":"ref","$ref":"quarto-resource-document-epub-epub-chapter-level","description":"quarto-resource-document-epub-epub-chapter-level"},"epub-cover-image":{"_internalId":78757,"type":"ref","$ref":"quarto-resource-document-epub-epub-cover-image","description":"quarto-resource-document-epub-epub-cover-image"},"epub-title-page":{"_internalId":78758,"type":"ref","$ref":"quarto-resource-document-epub-epub-title-page","description":"quarto-resource-document-epub-epub-title-page"},"engine":{"_internalId":78759,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":78760,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":78761,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":78762,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":78763,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":78764,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":78765,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":78766,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":78767,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":78768,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":78769,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":78770,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":78771,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":78772,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":78773,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":78774,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":78775,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":78776,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"split-level":{"_internalId":78777,"type":"ref","$ref":"quarto-resource-document-formatting-split-level","description":"quarto-resource-document-formatting-split-level"},"funding":{"_internalId":78778,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":78779,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":78779,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":78780,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":78781,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":78782,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":78783,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":78784,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":78785,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":78786,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":78787,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":78788,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":78789,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":78790,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":78791,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":78792,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":78793,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":78794,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":78795,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":78796,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":78797,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":78798,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":78799,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":78800,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":78801,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":78802,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":78803,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":78804,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":78805,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":78806,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":78807,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":78808,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"date-meta":{"_internalId":78809,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":78810,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":78811,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":78812,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":78813,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":78814,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"css":{"_internalId":78815,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"html-math-method":{"_internalId":78816,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"html-q-tags":{"_internalId":78817,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":78818,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":78819,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":78820,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":78821,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":78822,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":78823,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":78823,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":78824,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":78825,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":78826,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":78827,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":78828,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":78829,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":78830,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":78831,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":78832,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":78833,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":78834,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":78835,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":78836,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":78837,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":78838,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":78839,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":78840,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":78841,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":78842,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":78843,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":78843,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":78844,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":78845,"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,grid,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":78847,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?fb2([-+].+)?$":{"_internalId":81455,"type":"anyOf","anyOf":[{"_internalId":81453,"type":"object","description":"be an object","properties":{"eval":{"_internalId":81357,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":81358,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":81359,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":81360,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":81361,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":81362,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":81363,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":81364,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":81365,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":81366,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":81367,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":81368,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":81369,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":81370,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":81371,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":81372,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":81373,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":81374,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":81375,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":81376,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":81377,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":81378,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":81379,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":81380,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":81381,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":81382,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":81383,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":81384,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":81385,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":81386,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":81387,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":81388,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":81389,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":81390,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":81391,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":81391,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":81392,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":81393,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":81394,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":81395,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":81396,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":81397,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":81398,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":81399,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":81400,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":81401,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":81402,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":81403,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":81404,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":81405,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":81406,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":81407,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":81408,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":81409,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":81410,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":81411,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":81412,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":81413,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":81414,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":81415,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":81416,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":81417,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":81418,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":81419,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":81420,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":81421,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":81422,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":81423,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":81424,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":81425,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":81426,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":81427,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":81428,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":81428,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":81429,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":81430,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":81431,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":81432,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":81433,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":81434,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":81435,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":81436,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":81437,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":81438,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":81439,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":81440,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":81441,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":81442,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":81443,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":81444,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":81445,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":81446,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":81447,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":81448,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":81449,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":81450,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":81451,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":81451,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":81452,"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,grid,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":81454,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?gfm([-+].+)?$":{"_internalId":84071,"type":"anyOf","anyOf":[{"_internalId":84069,"type":"object","description":"be an object","properties":{"eval":{"_internalId":83964,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":83965,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":83966,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":83967,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":83968,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":83969,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":83970,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":83971,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":83972,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":83973,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":83974,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":83975,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":83976,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":83977,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":83978,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":83979,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":83980,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":83981,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":83982,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":83983,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":83984,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":83985,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":83986,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":83987,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":83988,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":83989,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":83990,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":83991,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":83992,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":83993,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":83994,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":83995,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":83996,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":83997,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":83998,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":83999,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":83999,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":84000,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":84001,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":84002,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":84003,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":84004,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":84005,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":84006,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":84007,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":84008,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":84009,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":84010,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":84011,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":84012,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":84013,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":84014,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":84015,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":84016,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":84017,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":84018,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":84019,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":84020,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":84021,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":84022,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":84023,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":84024,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":84025,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":84026,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":84027,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":84028,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":84029,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":84030,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":84031,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"html-math-method":{"_internalId":84032,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"identifier-prefix":{"_internalId":84033,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":84034,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":84035,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":84036,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":84037,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"bibliography":{"_internalId":84038,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":84039,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":84040,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":84041,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":84042,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":84042,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":84043,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":84044,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":84045,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":84046,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":84047,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":84048,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":84049,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":84050,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":84051,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":84052,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":84053,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":84054,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":84055,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":84056,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":84057,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":84058,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":84059,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":84060,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":84061,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":84062,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":84063,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":84064,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":84065,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":84066,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":84067,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":84067,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":84068,"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,grid,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":84070,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?haddock([-+].+)?$":{"_internalId":86679,"type":"anyOf","anyOf":[{"_internalId":86677,"type":"object","description":"be an object","properties":{"eval":{"_internalId":86580,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":86581,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":86582,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":86583,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":86584,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":86585,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":86586,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":86587,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":86588,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":86589,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":86590,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":86591,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":86592,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":86593,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":86594,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":86595,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":86596,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":86597,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":86598,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":86599,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":86600,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":86601,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":86602,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":86603,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":86604,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":86605,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":86606,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":86607,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":86608,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":86609,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":86610,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":86611,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":86612,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":86613,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":86614,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":86614,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":86615,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":86616,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":86617,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":86618,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":86619,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":86620,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":86621,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":86622,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":86623,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":86624,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":86625,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":86626,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":86627,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":86628,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":86629,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":86630,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":86631,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":86632,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":86633,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":86634,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":86635,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":86636,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":86637,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":86638,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":86639,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":86640,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":86641,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":86642,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":86643,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":86644,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":86645,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":86646,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"quarto-required":{"_internalId":86647,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":86648,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":86649,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":86650,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":86651,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":86652,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":86652,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":86653,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":86654,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":86655,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":86656,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":86657,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":86658,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":86659,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":86660,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":86661,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":86662,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":86663,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":86664,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":86665,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":86666,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":86667,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":86668,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":86669,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":86670,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":86671,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":86672,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":86673,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":86674,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":86675,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":86675,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":86676,"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,grid,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":86678,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?html([-+].+)?$":{"_internalId":89393,"type":"anyOf","anyOf":[{"_internalId":89391,"type":"object","description":"be an object","properties":{"eval":{"_internalId":89188,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":89189,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":89190,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":89191,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":89192,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":89193,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":89194,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":89195,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":89196,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":89197,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":89198,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":89199,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":89200,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":89201,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":89202,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"about":{"_internalId":89203,"type":"ref","$ref":"quarto-resource-document-about-about","description":"quarto-resource-document-about-about"},"title":{"_internalId":89204,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":89205,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":89206,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":89207,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"date-modified":{"_internalId":89208,"type":"ref","$ref":"quarto-resource-document-attributes-date-modified","description":"quarto-resource-document-attributes-date-modified"},"author":{"_internalId":89209,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":89210,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":89211,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"doi":{"_internalId":89212,"type":"ref","$ref":"quarto-resource-document-attributes-doi","description":"quarto-resource-document-attributes-doi"},"order":{"_internalId":89213,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":89214,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":89215,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":89216,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":89217,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-tools":{"_internalId":89218,"type":"ref","$ref":"quarto-resource-document-code-code-tools","description":"quarto-resource-document-code-code-tools"},"code-block-border-left":{"_internalId":89219,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":89220,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"highlight-style":{"_internalId":89221,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":89222,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":89223,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":89224,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"fontcolor":{"_internalId":89225,"type":"ref","$ref":"quarto-resource-document-colors-fontcolor","description":"quarto-resource-document-colors-fontcolor"},"linkcolor":{"_internalId":89226,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"monobackgroundcolor":{"_internalId":89227,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"backgroundcolor":{"_internalId":89228,"type":"ref","$ref":"quarto-resource-document-colors-backgroundcolor","description":"quarto-resource-document-colors-backgroundcolor"},"comments":{"_internalId":89229,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":89230,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":89231,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":89232,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":89233,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":89234,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":89235,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":89236,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":89237,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":89238,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":89239,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":89240,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":89241,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":89242,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":89243,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":89244,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":89245,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":89246,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":89247,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":89248,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":89249,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":89250,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":89251,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"mainfont":{"_internalId":89252,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":89253,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":89254,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"linestretch":{"_internalId":89255,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"footnotes-hover":{"_internalId":89256,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":89257,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":89258,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":89259,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":89259,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":89260,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":89261,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":89262,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":89263,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":89264,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":89265,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":89266,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":89267,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":89268,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":89269,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":89270,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":89271,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":89272,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":89273,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"keep-source":{"_internalId":89274,"type":"ref","$ref":"quarto-resource-document-hidden-keep-source","description":"quarto-resource-document-hidden-keep-source"},"keep-hidden":{"_internalId":89275,"type":"ref","$ref":"quarto-resource-document-hidden-keep-hidden","description":"quarto-resource-document-hidden-keep-hidden"},"output-divs":{"_internalId":89276,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":89277,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":89278,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":89279,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":89280,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":89281,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":89282,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":89283,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":89284,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":89285,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":89286,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":89287,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":89288,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":89289,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":89290,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"page-layout":{"_internalId":89291,"type":"ref","$ref":"quarto-resource-document-layout-page-layout","description":"quarto-resource-document-layout-page-layout"},"grid":{"_internalId":89292,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"appendix-style":{"_internalId":89293,"type":"ref","$ref":"quarto-resource-document-layout-appendix-style","description":"quarto-resource-document-layout-appendix-style"},"appendix-cite-as":{"_internalId":89294,"type":"ref","$ref":"quarto-resource-document-layout-appendix-cite-as","description":"quarto-resource-document-layout-appendix-cite-as"},"title-block-style":{"_internalId":89295,"type":"ref","$ref":"quarto-resource-document-layout-title-block-style","description":"quarto-resource-document-layout-title-block-style"},"title-block-banner":{"_internalId":89296,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner","description":"quarto-resource-document-layout-title-block-banner"},"title-block-banner-color":{"_internalId":89297,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner-color","description":"quarto-resource-document-layout-title-block-banner-color"},"title-block-categories":{"_internalId":89298,"type":"ref","$ref":"quarto-resource-document-layout-title-block-categories","description":"quarto-resource-document-layout-title-block-categories"},"max-width":{"_internalId":89299,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":89300,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":89301,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":89302,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":89303,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"lightbox":{"_internalId":89304,"type":"ref","$ref":"quarto-resource-document-lightbox-lightbox","description":"quarto-resource-document-lightbox-lightbox"},"link-external-icon":{"_internalId":89305,"type":"ref","$ref":"quarto-resource-document-links-link-external-icon","description":"quarto-resource-document-links-link-external-icon"},"link-external-newwindow":{"_internalId":89306,"type":"ref","$ref":"quarto-resource-document-links-link-external-newwindow","description":"quarto-resource-document-links-link-external-newwindow"},"link-external-filter":{"_internalId":89307,"type":"ref","$ref":"quarto-resource-document-links-link-external-filter","description":"quarto-resource-document-links-link-external-filter"},"format-links":{"_internalId":89308,"type":"ref","$ref":"quarto-resource-document-links-format-links","description":"quarto-resource-document-links-format-links"},"notebook-links":{"_internalId":89309,"type":"ref","$ref":"quarto-resource-document-links-notebook-links","description":"quarto-resource-document-links-notebook-links"},"other-links":{"_internalId":89310,"type":"ref","$ref":"quarto-resource-document-links-other-links","description":"quarto-resource-document-links-other-links"},"code-links":{"_internalId":89311,"type":"ref","$ref":"quarto-resource-document-links-code-links","description":"quarto-resource-document-links-code-links"},"notebook-view":{"_internalId":89312,"type":"ref","$ref":"quarto-resource-document-links-notebook-view","description":"quarto-resource-document-links-notebook-view"},"notebook-view-style":{"_internalId":89313,"type":"ref","$ref":"quarto-resource-document-links-notebook-view-style","description":"quarto-resource-document-links-notebook-view-style"},"notebook-preview-options":{"_internalId":89314,"type":"ref","$ref":"quarto-resource-document-links-notebook-preview-options","description":"quarto-resource-document-links-notebook-preview-options"},"canonical-url":{"_internalId":89315,"type":"ref","$ref":"quarto-resource-document-links-canonical-url","description":"quarto-resource-document-links-canonical-url"},"listing":{"_internalId":89316,"type":"ref","$ref":"quarto-resource-document-listing-listing","description":"quarto-resource-document-listing-listing"},"mermaid":{"_internalId":89317,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":89318,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"copyright":{"_internalId":89319,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"license":{"_internalId":89320,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"pagetitle":{"_internalId":89321,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":89322,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":89323,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":89324,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":89325,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":89326,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":89327,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":89328,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":89329,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":89330,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":89331,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":89332,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"body-classes":{"_internalId":89333,"type":"ref","$ref":"quarto-resource-document-options-body-classes","description":"quarto-resource-document-options-body-classes"},"minimal":{"_internalId":89334,"type":"ref","$ref":"quarto-resource-document-options-minimal","description":"quarto-resource-document-options-minimal"},"document-css":{"_internalId":89335,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":89336,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"anchor-sections":{"_internalId":89337,"type":"ref","$ref":"quarto-resource-document-options-anchor-sections","description":"quarto-resource-document-options-anchor-sections"},"tabsets":{"_internalId":89338,"type":"ref","$ref":"quarto-resource-document-options-tabsets","description":"quarto-resource-document-options-tabsets"},"smooth-scroll":{"_internalId":89339,"type":"ref","$ref":"quarto-resource-document-options-smooth-scroll","description":"quarto-resource-document-options-smooth-scroll"},"respect-user-color-scheme":{"_internalId":89340,"type":"ref","$ref":"quarto-resource-document-options-respect-user-color-scheme","description":"quarto-resource-document-options-respect-user-color-scheme"},"html-math-method":{"_internalId":89341,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"section-divs":{"_internalId":89342,"type":"ref","$ref":"quarto-resource-document-options-section-divs","description":"quarto-resource-document-options-section-divs"},"identifier-prefix":{"_internalId":89343,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":89344,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":89345,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":89346,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":89347,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":89348,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":89349,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citation-location":{"_internalId":89350,"type":"ref","$ref":"quarto-resource-document-references-citation-location","description":"quarto-resource-document-references-citation-location"},"citeproc":{"_internalId":89351,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":89352,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":89353,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":89353,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":89354,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":89355,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":89356,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":89357,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":89358,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":89359,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":89360,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":89361,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":89362,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":89363,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":89364,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":89365,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":89366,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":89367,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":89368,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":89369,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":89370,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":89371,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":89372,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":89373,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":89374,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":89375,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":89376,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":89377,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":89377,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":89378,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-location":{"_internalId":89379,"type":"ref","$ref":"quarto-resource-document-toc-toc-location","description":"quarto-resource-document-toc-toc-location"},"toc-title":{"_internalId":89380,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"toc-expand":{"_internalId":89381,"type":"ref","$ref":"quarto-resource-document-toc-toc-expand","description":"quarto-resource-document-toc-toc-expand"},"search":{"_internalId":89382,"type":"ref","$ref":"quarto-resource-document-website-search","description":"quarto-resource-document-website-search"},"repo-actions":{"_internalId":89383,"type":"ref","$ref":"quarto-resource-document-website-repo-actions","description":"quarto-resource-document-website-repo-actions"},"aliases":{"_internalId":89384,"type":"ref","$ref":"quarto-resource-document-website-aliases","description":"quarto-resource-document-website-aliases"},"image":{"_internalId":89385,"type":"ref","$ref":"quarto-resource-document-website-image","description":"quarto-resource-document-website-image"},"image-height":{"_internalId":89386,"type":"ref","$ref":"quarto-resource-document-website-image-height","description":"quarto-resource-document-website-image-height"},"image-width":{"_internalId":89387,"type":"ref","$ref":"quarto-resource-document-website-image-width","description":"quarto-resource-document-website-image-width"},"image-alt":{"_internalId":89388,"type":"ref","$ref":"quarto-resource-document-website-image-alt","description":"quarto-resource-document-website-image-alt"},"image-lazy-loading":{"_internalId":89389,"type":"ref","$ref":"quarto-resource-document-website-image-lazy-loading","description":"quarto-resource-document-website-image-lazy-loading"},"axe":{"_internalId":89390,"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":89392,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?html4([-+].+)?$":{"_internalId":92107,"type":"anyOf","anyOf":[{"_internalId":92105,"type":"object","description":"be an object","properties":{"eval":{"_internalId":91902,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":91903,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":91904,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":91905,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":91906,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":91907,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":91908,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":91909,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":91910,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":91911,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":91912,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":91913,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":91914,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":91915,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":91916,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"about":{"_internalId":91917,"type":"ref","$ref":"quarto-resource-document-about-about","description":"quarto-resource-document-about-about"},"title":{"_internalId":91918,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":91919,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":91920,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":91921,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"date-modified":{"_internalId":91922,"type":"ref","$ref":"quarto-resource-document-attributes-date-modified","description":"quarto-resource-document-attributes-date-modified"},"author":{"_internalId":91923,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":91924,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":91925,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"doi":{"_internalId":91926,"type":"ref","$ref":"quarto-resource-document-attributes-doi","description":"quarto-resource-document-attributes-doi"},"order":{"_internalId":91927,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":91928,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":91929,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":91930,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":91931,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-tools":{"_internalId":91932,"type":"ref","$ref":"quarto-resource-document-code-code-tools","description":"quarto-resource-document-code-code-tools"},"code-block-border-left":{"_internalId":91933,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":91934,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"highlight-style":{"_internalId":91935,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":91936,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":91937,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":91938,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"fontcolor":{"_internalId":91939,"type":"ref","$ref":"quarto-resource-document-colors-fontcolor","description":"quarto-resource-document-colors-fontcolor"},"linkcolor":{"_internalId":91940,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"monobackgroundcolor":{"_internalId":91941,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"backgroundcolor":{"_internalId":91942,"type":"ref","$ref":"quarto-resource-document-colors-backgroundcolor","description":"quarto-resource-document-colors-backgroundcolor"},"comments":{"_internalId":91943,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":91944,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":91945,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":91946,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":91947,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":91948,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":91949,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":91950,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":91951,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":91952,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":91953,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":91954,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":91955,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":91956,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":91957,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":91958,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":91959,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":91960,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":91961,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":91962,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":91963,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":91964,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":91965,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"mainfont":{"_internalId":91966,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":91967,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":91968,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"linestretch":{"_internalId":91969,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"footnotes-hover":{"_internalId":91970,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":91971,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":91972,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":91973,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":91973,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":91974,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":91975,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":91976,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":91977,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":91978,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":91979,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":91980,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":91981,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":91982,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":91983,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":91984,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":91985,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":91986,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":91987,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"keep-source":{"_internalId":91988,"type":"ref","$ref":"quarto-resource-document-hidden-keep-source","description":"quarto-resource-document-hidden-keep-source"},"keep-hidden":{"_internalId":91989,"type":"ref","$ref":"quarto-resource-document-hidden-keep-hidden","description":"quarto-resource-document-hidden-keep-hidden"},"output-divs":{"_internalId":91990,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":91991,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":91992,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":91993,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":91994,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":91995,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":91996,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":91997,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":91998,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":91999,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":92000,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":92001,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":92002,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":92003,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":92004,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"page-layout":{"_internalId":92005,"type":"ref","$ref":"quarto-resource-document-layout-page-layout","description":"quarto-resource-document-layout-page-layout"},"grid":{"_internalId":92006,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"appendix-style":{"_internalId":92007,"type":"ref","$ref":"quarto-resource-document-layout-appendix-style","description":"quarto-resource-document-layout-appendix-style"},"appendix-cite-as":{"_internalId":92008,"type":"ref","$ref":"quarto-resource-document-layout-appendix-cite-as","description":"quarto-resource-document-layout-appendix-cite-as"},"title-block-style":{"_internalId":92009,"type":"ref","$ref":"quarto-resource-document-layout-title-block-style","description":"quarto-resource-document-layout-title-block-style"},"title-block-banner":{"_internalId":92010,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner","description":"quarto-resource-document-layout-title-block-banner"},"title-block-banner-color":{"_internalId":92011,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner-color","description":"quarto-resource-document-layout-title-block-banner-color"},"title-block-categories":{"_internalId":92012,"type":"ref","$ref":"quarto-resource-document-layout-title-block-categories","description":"quarto-resource-document-layout-title-block-categories"},"max-width":{"_internalId":92013,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":92014,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":92015,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":92016,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":92017,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"lightbox":{"_internalId":92018,"type":"ref","$ref":"quarto-resource-document-lightbox-lightbox","description":"quarto-resource-document-lightbox-lightbox"},"link-external-icon":{"_internalId":92019,"type":"ref","$ref":"quarto-resource-document-links-link-external-icon","description":"quarto-resource-document-links-link-external-icon"},"link-external-newwindow":{"_internalId":92020,"type":"ref","$ref":"quarto-resource-document-links-link-external-newwindow","description":"quarto-resource-document-links-link-external-newwindow"},"link-external-filter":{"_internalId":92021,"type":"ref","$ref":"quarto-resource-document-links-link-external-filter","description":"quarto-resource-document-links-link-external-filter"},"format-links":{"_internalId":92022,"type":"ref","$ref":"quarto-resource-document-links-format-links","description":"quarto-resource-document-links-format-links"},"notebook-links":{"_internalId":92023,"type":"ref","$ref":"quarto-resource-document-links-notebook-links","description":"quarto-resource-document-links-notebook-links"},"other-links":{"_internalId":92024,"type":"ref","$ref":"quarto-resource-document-links-other-links","description":"quarto-resource-document-links-other-links"},"code-links":{"_internalId":92025,"type":"ref","$ref":"quarto-resource-document-links-code-links","description":"quarto-resource-document-links-code-links"},"notebook-view":{"_internalId":92026,"type":"ref","$ref":"quarto-resource-document-links-notebook-view","description":"quarto-resource-document-links-notebook-view"},"notebook-view-style":{"_internalId":92027,"type":"ref","$ref":"quarto-resource-document-links-notebook-view-style","description":"quarto-resource-document-links-notebook-view-style"},"notebook-preview-options":{"_internalId":92028,"type":"ref","$ref":"quarto-resource-document-links-notebook-preview-options","description":"quarto-resource-document-links-notebook-preview-options"},"canonical-url":{"_internalId":92029,"type":"ref","$ref":"quarto-resource-document-links-canonical-url","description":"quarto-resource-document-links-canonical-url"},"listing":{"_internalId":92030,"type":"ref","$ref":"quarto-resource-document-listing-listing","description":"quarto-resource-document-listing-listing"},"mermaid":{"_internalId":92031,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":92032,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"copyright":{"_internalId":92033,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"license":{"_internalId":92034,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"pagetitle":{"_internalId":92035,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":92036,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":92037,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":92038,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":92039,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":92040,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":92041,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":92042,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":92043,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":92044,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":92045,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":92046,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"body-classes":{"_internalId":92047,"type":"ref","$ref":"quarto-resource-document-options-body-classes","description":"quarto-resource-document-options-body-classes"},"minimal":{"_internalId":92048,"type":"ref","$ref":"quarto-resource-document-options-minimal","description":"quarto-resource-document-options-minimal"},"document-css":{"_internalId":92049,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":92050,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"anchor-sections":{"_internalId":92051,"type":"ref","$ref":"quarto-resource-document-options-anchor-sections","description":"quarto-resource-document-options-anchor-sections"},"tabsets":{"_internalId":92052,"type":"ref","$ref":"quarto-resource-document-options-tabsets","description":"quarto-resource-document-options-tabsets"},"smooth-scroll":{"_internalId":92053,"type":"ref","$ref":"quarto-resource-document-options-smooth-scroll","description":"quarto-resource-document-options-smooth-scroll"},"respect-user-color-scheme":{"_internalId":92054,"type":"ref","$ref":"quarto-resource-document-options-respect-user-color-scheme","description":"quarto-resource-document-options-respect-user-color-scheme"},"html-math-method":{"_internalId":92055,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"section-divs":{"_internalId":92056,"type":"ref","$ref":"quarto-resource-document-options-section-divs","description":"quarto-resource-document-options-section-divs"},"identifier-prefix":{"_internalId":92057,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":92058,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":92059,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":92060,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":92061,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":92062,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":92063,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citation-location":{"_internalId":92064,"type":"ref","$ref":"quarto-resource-document-references-citation-location","description":"quarto-resource-document-references-citation-location"},"citeproc":{"_internalId":92065,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":92066,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":92067,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":92067,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":92068,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":92069,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":92070,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":92071,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":92072,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":92073,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":92074,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":92075,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":92076,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":92077,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":92078,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":92079,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":92080,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":92081,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":92082,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":92083,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":92084,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":92085,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":92086,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":92087,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":92088,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":92089,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":92090,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":92091,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":92091,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":92092,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-location":{"_internalId":92093,"type":"ref","$ref":"quarto-resource-document-toc-toc-location","description":"quarto-resource-document-toc-toc-location"},"toc-title":{"_internalId":92094,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"toc-expand":{"_internalId":92095,"type":"ref","$ref":"quarto-resource-document-toc-toc-expand","description":"quarto-resource-document-toc-toc-expand"},"search":{"_internalId":92096,"type":"ref","$ref":"quarto-resource-document-website-search","description":"quarto-resource-document-website-search"},"repo-actions":{"_internalId":92097,"type":"ref","$ref":"quarto-resource-document-website-repo-actions","description":"quarto-resource-document-website-repo-actions"},"aliases":{"_internalId":92098,"type":"ref","$ref":"quarto-resource-document-website-aliases","description":"quarto-resource-document-website-aliases"},"image":{"_internalId":92099,"type":"ref","$ref":"quarto-resource-document-website-image","description":"quarto-resource-document-website-image"},"image-height":{"_internalId":92100,"type":"ref","$ref":"quarto-resource-document-website-image-height","description":"quarto-resource-document-website-image-height"},"image-width":{"_internalId":92101,"type":"ref","$ref":"quarto-resource-document-website-image-width","description":"quarto-resource-document-website-image-width"},"image-alt":{"_internalId":92102,"type":"ref","$ref":"quarto-resource-document-website-image-alt","description":"quarto-resource-document-website-image-alt"},"image-lazy-loading":{"_internalId":92103,"type":"ref","$ref":"quarto-resource-document-website-image-lazy-loading","description":"quarto-resource-document-website-image-lazy-loading"},"axe":{"_internalId":92104,"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":92106,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?html5([-+].+)?$":{"_internalId":94821,"type":"anyOf","anyOf":[{"_internalId":94819,"type":"object","description":"be an object","properties":{"eval":{"_internalId":94616,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":94617,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":94618,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":94619,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":94620,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":94621,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":94622,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":94623,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":94624,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":94625,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":94626,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":94627,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":94628,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":94629,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":94630,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"about":{"_internalId":94631,"type":"ref","$ref":"quarto-resource-document-about-about","description":"quarto-resource-document-about-about"},"title":{"_internalId":94632,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":94633,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":94634,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":94635,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"date-modified":{"_internalId":94636,"type":"ref","$ref":"quarto-resource-document-attributes-date-modified","description":"quarto-resource-document-attributes-date-modified"},"author":{"_internalId":94637,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":94638,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":94639,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"doi":{"_internalId":94640,"type":"ref","$ref":"quarto-resource-document-attributes-doi","description":"quarto-resource-document-attributes-doi"},"order":{"_internalId":94641,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":94642,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":94643,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":94644,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":94645,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-tools":{"_internalId":94646,"type":"ref","$ref":"quarto-resource-document-code-code-tools","description":"quarto-resource-document-code-code-tools"},"code-block-border-left":{"_internalId":94647,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":94648,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"highlight-style":{"_internalId":94649,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":94650,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":94651,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":94652,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"fontcolor":{"_internalId":94653,"type":"ref","$ref":"quarto-resource-document-colors-fontcolor","description":"quarto-resource-document-colors-fontcolor"},"linkcolor":{"_internalId":94654,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"monobackgroundcolor":{"_internalId":94655,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"backgroundcolor":{"_internalId":94656,"type":"ref","$ref":"quarto-resource-document-colors-backgroundcolor","description":"quarto-resource-document-colors-backgroundcolor"},"comments":{"_internalId":94657,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":94658,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":94659,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":94660,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":94661,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":94662,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":94663,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":94664,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":94665,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":94666,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":94667,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":94668,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":94669,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":94670,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":94671,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":94672,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":94673,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":94674,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":94675,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":94676,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":94677,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":94678,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":94679,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"mainfont":{"_internalId":94680,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":94681,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":94682,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"linestretch":{"_internalId":94683,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"footnotes-hover":{"_internalId":94684,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":94685,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":94686,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":94687,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":94687,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":94688,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":94689,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":94690,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":94691,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":94692,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":94693,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":94694,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":94695,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":94696,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":94697,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":94698,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":94699,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":94700,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":94701,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"keep-source":{"_internalId":94702,"type":"ref","$ref":"quarto-resource-document-hidden-keep-source","description":"quarto-resource-document-hidden-keep-source"},"keep-hidden":{"_internalId":94703,"type":"ref","$ref":"quarto-resource-document-hidden-keep-hidden","description":"quarto-resource-document-hidden-keep-hidden"},"output-divs":{"_internalId":94704,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":94705,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":94706,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":94707,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":94708,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":94709,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":94710,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":94711,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":94712,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":94713,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":94714,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":94715,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":94716,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":94717,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":94718,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"page-layout":{"_internalId":94719,"type":"ref","$ref":"quarto-resource-document-layout-page-layout","description":"quarto-resource-document-layout-page-layout"},"grid":{"_internalId":94720,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"appendix-style":{"_internalId":94721,"type":"ref","$ref":"quarto-resource-document-layout-appendix-style","description":"quarto-resource-document-layout-appendix-style"},"appendix-cite-as":{"_internalId":94722,"type":"ref","$ref":"quarto-resource-document-layout-appendix-cite-as","description":"quarto-resource-document-layout-appendix-cite-as"},"title-block-style":{"_internalId":94723,"type":"ref","$ref":"quarto-resource-document-layout-title-block-style","description":"quarto-resource-document-layout-title-block-style"},"title-block-banner":{"_internalId":94724,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner","description":"quarto-resource-document-layout-title-block-banner"},"title-block-banner-color":{"_internalId":94725,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner-color","description":"quarto-resource-document-layout-title-block-banner-color"},"title-block-categories":{"_internalId":94726,"type":"ref","$ref":"quarto-resource-document-layout-title-block-categories","description":"quarto-resource-document-layout-title-block-categories"},"max-width":{"_internalId":94727,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":94728,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":94729,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":94730,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":94731,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"lightbox":{"_internalId":94732,"type":"ref","$ref":"quarto-resource-document-lightbox-lightbox","description":"quarto-resource-document-lightbox-lightbox"},"link-external-icon":{"_internalId":94733,"type":"ref","$ref":"quarto-resource-document-links-link-external-icon","description":"quarto-resource-document-links-link-external-icon"},"link-external-newwindow":{"_internalId":94734,"type":"ref","$ref":"quarto-resource-document-links-link-external-newwindow","description":"quarto-resource-document-links-link-external-newwindow"},"link-external-filter":{"_internalId":94735,"type":"ref","$ref":"quarto-resource-document-links-link-external-filter","description":"quarto-resource-document-links-link-external-filter"},"format-links":{"_internalId":94736,"type":"ref","$ref":"quarto-resource-document-links-format-links","description":"quarto-resource-document-links-format-links"},"notebook-links":{"_internalId":94737,"type":"ref","$ref":"quarto-resource-document-links-notebook-links","description":"quarto-resource-document-links-notebook-links"},"other-links":{"_internalId":94738,"type":"ref","$ref":"quarto-resource-document-links-other-links","description":"quarto-resource-document-links-other-links"},"code-links":{"_internalId":94739,"type":"ref","$ref":"quarto-resource-document-links-code-links","description":"quarto-resource-document-links-code-links"},"notebook-view":{"_internalId":94740,"type":"ref","$ref":"quarto-resource-document-links-notebook-view","description":"quarto-resource-document-links-notebook-view"},"notebook-view-style":{"_internalId":94741,"type":"ref","$ref":"quarto-resource-document-links-notebook-view-style","description":"quarto-resource-document-links-notebook-view-style"},"notebook-preview-options":{"_internalId":94742,"type":"ref","$ref":"quarto-resource-document-links-notebook-preview-options","description":"quarto-resource-document-links-notebook-preview-options"},"canonical-url":{"_internalId":94743,"type":"ref","$ref":"quarto-resource-document-links-canonical-url","description":"quarto-resource-document-links-canonical-url"},"listing":{"_internalId":94744,"type":"ref","$ref":"quarto-resource-document-listing-listing","description":"quarto-resource-document-listing-listing"},"mermaid":{"_internalId":94745,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":94746,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"copyright":{"_internalId":94747,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"license":{"_internalId":94748,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"pagetitle":{"_internalId":94749,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":94750,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":94751,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":94752,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":94753,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":94754,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":94755,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":94756,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":94757,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":94758,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":94759,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":94760,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"body-classes":{"_internalId":94761,"type":"ref","$ref":"quarto-resource-document-options-body-classes","description":"quarto-resource-document-options-body-classes"},"minimal":{"_internalId":94762,"type":"ref","$ref":"quarto-resource-document-options-minimal","description":"quarto-resource-document-options-minimal"},"document-css":{"_internalId":94763,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":94764,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"anchor-sections":{"_internalId":94765,"type":"ref","$ref":"quarto-resource-document-options-anchor-sections","description":"quarto-resource-document-options-anchor-sections"},"tabsets":{"_internalId":94766,"type":"ref","$ref":"quarto-resource-document-options-tabsets","description":"quarto-resource-document-options-tabsets"},"smooth-scroll":{"_internalId":94767,"type":"ref","$ref":"quarto-resource-document-options-smooth-scroll","description":"quarto-resource-document-options-smooth-scroll"},"respect-user-color-scheme":{"_internalId":94768,"type":"ref","$ref":"quarto-resource-document-options-respect-user-color-scheme","description":"quarto-resource-document-options-respect-user-color-scheme"},"html-math-method":{"_internalId":94769,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"section-divs":{"_internalId":94770,"type":"ref","$ref":"quarto-resource-document-options-section-divs","description":"quarto-resource-document-options-section-divs"},"identifier-prefix":{"_internalId":94771,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":94772,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":94773,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":94774,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":94775,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":94776,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":94777,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citation-location":{"_internalId":94778,"type":"ref","$ref":"quarto-resource-document-references-citation-location","description":"quarto-resource-document-references-citation-location"},"citeproc":{"_internalId":94779,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":94780,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":94781,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":94781,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":94782,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":94783,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":94784,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":94785,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":94786,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":94787,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":94788,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":94789,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":94790,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":94791,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":94792,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":94793,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":94794,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":94795,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":94796,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":94797,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":94798,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":94799,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":94800,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":94801,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":94802,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":94803,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":94804,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":94805,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":94805,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":94806,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-location":{"_internalId":94807,"type":"ref","$ref":"quarto-resource-document-toc-toc-location","description":"quarto-resource-document-toc-toc-location"},"toc-title":{"_internalId":94808,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"toc-expand":{"_internalId":94809,"type":"ref","$ref":"quarto-resource-document-toc-toc-expand","description":"quarto-resource-document-toc-toc-expand"},"search":{"_internalId":94810,"type":"ref","$ref":"quarto-resource-document-website-search","description":"quarto-resource-document-website-search"},"repo-actions":{"_internalId":94811,"type":"ref","$ref":"quarto-resource-document-website-repo-actions","description":"quarto-resource-document-website-repo-actions"},"aliases":{"_internalId":94812,"type":"ref","$ref":"quarto-resource-document-website-aliases","description":"quarto-resource-document-website-aliases"},"image":{"_internalId":94813,"type":"ref","$ref":"quarto-resource-document-website-image","description":"quarto-resource-document-website-image"},"image-height":{"_internalId":94814,"type":"ref","$ref":"quarto-resource-document-website-image-height","description":"quarto-resource-document-website-image-height"},"image-width":{"_internalId":94815,"type":"ref","$ref":"quarto-resource-document-website-image-width","description":"quarto-resource-document-website-image-width"},"image-alt":{"_internalId":94816,"type":"ref","$ref":"quarto-resource-document-website-image-alt","description":"quarto-resource-document-website-image-alt"},"image-lazy-loading":{"_internalId":94817,"type":"ref","$ref":"quarto-resource-document-website-image-lazy-loading","description":"quarto-resource-document-website-image-lazy-loading"},"axe":{"_internalId":94818,"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":94820,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?icml([-+].+)?$":{"_internalId":97428,"type":"anyOf","anyOf":[{"_internalId":97426,"type":"object","description":"be an object","properties":{"eval":{"_internalId":97330,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":97331,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":97332,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":97333,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":97334,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":97335,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":97336,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":97337,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":97338,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":97339,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":97340,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":97341,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":97342,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":97343,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":97344,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":97345,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":97346,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":97347,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":97348,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":97349,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":97350,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":97351,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":97352,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":97353,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":97354,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":97355,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":97356,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":97357,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":97358,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":97359,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":97360,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":97361,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":97362,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":97363,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":97364,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":97364,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":97365,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":97366,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":97367,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":97368,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":97369,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":97370,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":97371,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":97372,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":97373,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":97374,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":97375,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":97376,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":97377,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":97378,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":97379,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":97380,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":97381,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":97382,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":97383,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":97384,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":97385,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":97386,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":97387,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":97388,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":97389,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":97390,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":97391,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":97392,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":97393,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":97394,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":97395,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":97396,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":97397,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":97398,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":97399,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":97400,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":97401,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":97401,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":97402,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":97403,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":97404,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":97405,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":97406,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":97407,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":97408,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":97409,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":97410,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":97411,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":97412,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":97413,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":97414,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":97415,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":97416,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":97417,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":97418,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":97419,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":97420,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":97421,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":97422,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":97423,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":97424,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":97424,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":97425,"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,grid,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":97427,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?ipynb([-+].+)?$":{"_internalId":100029,"type":"anyOf","anyOf":[{"_internalId":100027,"type":"object","description":"be an object","properties":{"eval":{"_internalId":99937,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":99938,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":99939,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":99940,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":99941,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":99942,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":99943,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":99944,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":99945,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":99946,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":99947,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":99948,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":99949,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":99950,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":99951,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":99952,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":99953,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":99954,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":99955,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":99956,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":99957,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":99958,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":99959,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":99960,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":99961,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":99962,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":99963,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":99964,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":99965,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":99966,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":99967,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":99968,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":99969,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":99970,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":99971,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":99971,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":99972,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":99973,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":99974,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":99975,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":99976,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":99977,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":99978,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":99979,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":99980,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":99981,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":99982,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":99983,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":99984,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":99985,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":99986,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":99987,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":99988,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":99989,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":99990,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":99991,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":99992,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":99993,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":99994,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":99995,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":99996,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"markdown-headings":{"_internalId":99997,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"ipynb-output":{"_internalId":99998,"type":"ref","$ref":"quarto-resource-document-options-ipynb-output","description":"quarto-resource-document-options-ipynb-output"},"quarto-required":{"_internalId":99999,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":100000,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":100001,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":100002,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":100003,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":100004,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":100004,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":100005,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":100006,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"filters":{"_internalId":100007,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":100008,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":100009,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":100010,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":100011,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":100012,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":100013,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":100014,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":100015,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":100016,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":100017,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":100018,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":100019,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":100020,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":100021,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":100022,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":100023,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":100024,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":100025,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":100025,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":100026,"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,grid,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":100028,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?jats([-+].+)?$":{"_internalId":102639,"type":"anyOf","anyOf":[{"_internalId":102637,"type":"object","description":"be an object","properties":{"eval":{"_internalId":102538,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":102539,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":102540,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":102541,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":102542,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":102543,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":102544,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":102545,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":102546,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":102547,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"affiliation":{"_internalId":102548,"type":"ref","$ref":"quarto-resource-document-attributes-affiliation","description":"quarto-resource-document-attributes-affiliation"},"copyright":{"_internalId":102603,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"article":{"_internalId":102550,"type":"ref","$ref":"quarto-resource-document-attributes-article","description":"quarto-resource-document-attributes-article"},"journal":{"_internalId":102551,"type":"ref","$ref":"quarto-resource-document-attributes-journal","description":"quarto-resource-document-attributes-journal"},"abstract":{"_internalId":102552,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"notes":{"_internalId":102553,"type":"ref","$ref":"quarto-resource-document-attributes-notes","description":"quarto-resource-document-attributes-notes"},"tags":{"_internalId":102554,"type":"ref","$ref":"quarto-resource-document-attributes-tags","description":"quarto-resource-document-attributes-tags"},"order":{"_internalId":102555,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":102556,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":102557,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":102558,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":102559,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":102560,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":102561,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":102562,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":102563,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":102564,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":102565,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":102566,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":102567,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":102568,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":102569,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":102570,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":102571,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":102572,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":102573,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":102574,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":102575,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":102576,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":102577,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":102578,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":102579,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":102579,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":102580,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":102581,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":102582,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":102583,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":102584,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":102585,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":102586,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":102587,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":102588,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":102589,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":102590,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":102591,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":102592,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":102593,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":102594,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":102595,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":102596,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":102597,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":102598,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":102599,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":102600,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":102601,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"notebook-subarticles":{"_internalId":102602,"type":"ref","$ref":"quarto-resource-document-links-notebook-subarticles","description":"quarto-resource-document-links-notebook-subarticles"},"license":{"_internalId":102604,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"number-sections":{"_internalId":102605,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":102606,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":102607,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":102608,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":102609,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"bibliography":{"_internalId":102610,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":102611,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":102612,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":102613,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":102614,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":102614,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":102615,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":102616,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":102617,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":102618,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":102619,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":102620,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":102621,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":102622,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":102623,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":102624,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":102625,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":102626,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":102627,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":102628,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":102629,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":102630,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":102631,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":102632,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":102633,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":102634,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":102635,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":102636,"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,grid,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":102638,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?jats_archiving([-+].+)?$":{"_internalId":105249,"type":"anyOf","anyOf":[{"_internalId":105247,"type":"object","description":"be an object","properties":{"eval":{"_internalId":105148,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":105149,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":105150,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":105151,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":105152,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":105153,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":105154,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":105155,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":105156,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":105157,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"affiliation":{"_internalId":105158,"type":"ref","$ref":"quarto-resource-document-attributes-affiliation","description":"quarto-resource-document-attributes-affiliation"},"copyright":{"_internalId":105213,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"article":{"_internalId":105160,"type":"ref","$ref":"quarto-resource-document-attributes-article","description":"quarto-resource-document-attributes-article"},"journal":{"_internalId":105161,"type":"ref","$ref":"quarto-resource-document-attributes-journal","description":"quarto-resource-document-attributes-journal"},"abstract":{"_internalId":105162,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"notes":{"_internalId":105163,"type":"ref","$ref":"quarto-resource-document-attributes-notes","description":"quarto-resource-document-attributes-notes"},"tags":{"_internalId":105164,"type":"ref","$ref":"quarto-resource-document-attributes-tags","description":"quarto-resource-document-attributes-tags"},"order":{"_internalId":105165,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":105166,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":105167,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":105168,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":105169,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":105170,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":105171,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":105172,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":105173,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":105174,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":105175,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":105176,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":105177,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":105178,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":105179,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":105180,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":105181,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":105182,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":105183,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":105184,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":105185,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":105186,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":105187,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":105188,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":105189,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":105189,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":105190,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":105191,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":105192,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":105193,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":105194,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":105195,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":105196,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":105197,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":105198,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":105199,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":105200,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":105201,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":105202,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":105203,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":105204,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":105205,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":105206,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":105207,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":105208,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":105209,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":105210,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":105211,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"notebook-subarticles":{"_internalId":105212,"type":"ref","$ref":"quarto-resource-document-links-notebook-subarticles","description":"quarto-resource-document-links-notebook-subarticles"},"license":{"_internalId":105214,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"number-sections":{"_internalId":105215,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":105216,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":105217,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":105218,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":105219,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"bibliography":{"_internalId":105220,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":105221,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":105222,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":105223,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":105224,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":105224,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":105225,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":105226,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":105227,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":105228,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":105229,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":105230,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":105231,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":105232,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":105233,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":105234,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":105235,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":105236,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":105237,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":105238,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":105239,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":105240,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":105241,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":105242,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":105243,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":105244,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":105245,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":105246,"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,grid,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":105248,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?jats_articleauthoring([-+].+)?$":{"_internalId":107859,"type":"anyOf","anyOf":[{"_internalId":107857,"type":"object","description":"be an object","properties":{"eval":{"_internalId":107758,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":107759,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":107760,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":107761,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":107762,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":107763,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":107764,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":107765,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":107766,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":107767,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"affiliation":{"_internalId":107768,"type":"ref","$ref":"quarto-resource-document-attributes-affiliation","description":"quarto-resource-document-attributes-affiliation"},"copyright":{"_internalId":107823,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"article":{"_internalId":107770,"type":"ref","$ref":"quarto-resource-document-attributes-article","description":"quarto-resource-document-attributes-article"},"journal":{"_internalId":107771,"type":"ref","$ref":"quarto-resource-document-attributes-journal","description":"quarto-resource-document-attributes-journal"},"abstract":{"_internalId":107772,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"notes":{"_internalId":107773,"type":"ref","$ref":"quarto-resource-document-attributes-notes","description":"quarto-resource-document-attributes-notes"},"tags":{"_internalId":107774,"type":"ref","$ref":"quarto-resource-document-attributes-tags","description":"quarto-resource-document-attributes-tags"},"order":{"_internalId":107775,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":107776,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":107777,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":107778,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":107779,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":107780,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":107781,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":107782,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":107783,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":107784,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":107785,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":107786,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":107787,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":107788,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":107789,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":107790,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":107791,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":107792,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":107793,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":107794,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":107795,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":107796,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":107797,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":107798,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":107799,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":107799,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":107800,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":107801,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":107802,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":107803,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":107804,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":107805,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":107806,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":107807,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":107808,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":107809,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":107810,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":107811,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":107812,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":107813,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":107814,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":107815,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":107816,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":107817,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":107818,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":107819,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":107820,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":107821,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"notebook-subarticles":{"_internalId":107822,"type":"ref","$ref":"quarto-resource-document-links-notebook-subarticles","description":"quarto-resource-document-links-notebook-subarticles"},"license":{"_internalId":107824,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"number-sections":{"_internalId":107825,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":107826,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":107827,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":107828,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":107829,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"bibliography":{"_internalId":107830,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":107831,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":107832,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":107833,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":107834,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":107834,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":107835,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":107836,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":107837,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":107838,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":107839,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":107840,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":107841,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":107842,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":107843,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":107844,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":107845,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":107846,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":107847,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":107848,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":107849,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":107850,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":107851,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":107852,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":107853,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":107854,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":107855,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":107856,"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,grid,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":107858,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?jats_publishing([-+].+)?$":{"_internalId":110469,"type":"anyOf","anyOf":[{"_internalId":110467,"type":"object","description":"be an object","properties":{"eval":{"_internalId":110368,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":110369,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":110370,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":110371,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":110372,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":110373,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":110374,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":110375,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":110376,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":110377,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"affiliation":{"_internalId":110378,"type":"ref","$ref":"quarto-resource-document-attributes-affiliation","description":"quarto-resource-document-attributes-affiliation"},"copyright":{"_internalId":110433,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"article":{"_internalId":110380,"type":"ref","$ref":"quarto-resource-document-attributes-article","description":"quarto-resource-document-attributes-article"},"journal":{"_internalId":110381,"type":"ref","$ref":"quarto-resource-document-attributes-journal","description":"quarto-resource-document-attributes-journal"},"abstract":{"_internalId":110382,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"notes":{"_internalId":110383,"type":"ref","$ref":"quarto-resource-document-attributes-notes","description":"quarto-resource-document-attributes-notes"},"tags":{"_internalId":110384,"type":"ref","$ref":"quarto-resource-document-attributes-tags","description":"quarto-resource-document-attributes-tags"},"order":{"_internalId":110385,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":110386,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":110387,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":110388,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":110389,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":110390,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":110391,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":110392,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":110393,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":110394,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":110395,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":110396,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":110397,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":110398,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":110399,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":110400,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":110401,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":110402,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":110403,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":110404,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":110405,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":110406,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":110407,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":110408,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":110409,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":110409,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":110410,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":110411,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":110412,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":110413,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":110414,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":110415,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":110416,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":110417,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":110418,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":110419,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":110420,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":110421,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":110422,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":110423,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":110424,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":110425,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":110426,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":110427,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":110428,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":110429,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":110430,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":110431,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"notebook-subarticles":{"_internalId":110432,"type":"ref","$ref":"quarto-resource-document-links-notebook-subarticles","description":"quarto-resource-document-links-notebook-subarticles"},"license":{"_internalId":110434,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"number-sections":{"_internalId":110435,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":110436,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":110437,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":110438,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":110439,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"bibliography":{"_internalId":110440,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":110441,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":110442,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":110443,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":110444,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":110444,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":110445,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":110446,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":110447,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":110448,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":110449,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":110450,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":110451,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":110452,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":110453,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":110454,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":110455,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":110456,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":110457,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":110458,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":110459,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":110460,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":110461,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":110462,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":110463,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":110464,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":110465,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":110466,"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,grid,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":110468,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?jira([-+].+)?$":{"_internalId":113076,"type":"anyOf","anyOf":[{"_internalId":113074,"type":"object","description":"be an object","properties":{"eval":{"_internalId":112978,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":112979,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":112980,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":112981,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":112982,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":112983,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":112984,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":112985,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":112986,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":112987,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":112988,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":112989,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":112990,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":112991,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":112992,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":112993,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":112994,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":112995,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":112996,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":112997,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":112998,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":112999,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":113000,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":113001,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":113002,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":113003,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":113004,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":113005,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":113006,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":113007,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":113008,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":113009,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":113010,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":113011,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":113012,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":113012,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":113013,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":113014,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":113015,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":113016,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":113017,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":113018,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":113019,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":113020,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":113021,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":113022,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":113023,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":113024,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":113025,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":113026,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":113027,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":113028,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":113029,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":113030,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":113031,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":113032,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":113033,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":113034,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":113035,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":113036,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":113037,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":113038,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":113039,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":113040,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":113041,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":113042,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":113043,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":113044,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":113045,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":113046,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":113047,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":113048,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":113049,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":113049,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":113050,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":113051,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":113052,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":113053,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":113054,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":113055,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":113056,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":113057,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":113058,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":113059,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":113060,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":113061,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":113062,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":113063,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":113064,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":113065,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":113066,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":113067,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":113068,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":113069,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":113070,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":113071,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":113072,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":113072,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":113073,"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,grid,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":113075,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?json([-+].+)?$":{"_internalId":115683,"type":"anyOf","anyOf":[{"_internalId":115681,"type":"object","description":"be an object","properties":{"eval":{"_internalId":115585,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":115586,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":115587,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":115588,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":115589,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":115590,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":115591,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":115592,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":115593,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":115594,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":115595,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":115596,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":115597,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":115598,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":115599,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":115600,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":115601,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":115602,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":115603,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":115604,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":115605,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":115606,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":115607,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":115608,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":115609,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":115610,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":115611,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":115612,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":115613,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":115614,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":115615,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":115616,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":115617,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":115618,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":115619,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":115619,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":115620,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":115621,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":115622,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":115623,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":115624,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":115625,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":115626,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":115627,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":115628,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":115629,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":115630,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":115631,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":115632,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":115633,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":115634,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":115635,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":115636,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":115637,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":115638,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":115639,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":115640,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":115641,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":115642,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":115643,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":115644,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":115645,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":115646,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":115647,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":115648,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":115649,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":115650,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":115651,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":115652,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":115653,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":115654,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":115655,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":115656,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":115656,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":115657,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":115658,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":115659,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":115660,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":115661,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":115662,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":115663,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":115664,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":115665,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":115666,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":115667,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":115668,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":115669,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":115670,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":115671,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":115672,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":115673,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":115674,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":115675,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":115676,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":115677,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":115678,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":115679,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":115679,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":115680,"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,grid,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":115682,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?latex([-+].+)?$":{"_internalId":118364,"type":"anyOf","anyOf":[{"_internalId":118362,"type":"object","description":"be an object","properties":{"eval":{"_internalId":118192,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":118193,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-line-numbers":{"_internalId":118194,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":118195,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-env":{"_internalId":118196,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":118197,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"cap-location":{"_internalId":118198,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":118199,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":118200,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":118201,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":118202,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":118203,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":118204,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":118205,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":118206,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":118207,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":118208,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":118209,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":118210,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":118211,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"thanks":{"_internalId":118212,"type":"ref","$ref":"quarto-resource-document-attributes-thanks","description":"quarto-resource-document-attributes-thanks"},"order":{"_internalId":118213,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":118214,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":118215,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-block-border-left":{"_internalId":118216,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":118217,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"highlight-style":{"_internalId":118218,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":118219,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":118220,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"listings":{"_internalId":118221,"type":"ref","$ref":"quarto-resource-document-code-listings","description":"quarto-resource-document-code-listings"},"indented-code-classes":{"_internalId":118222,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"linkcolor":{"_internalId":118223,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"filecolor":{"_internalId":118224,"type":"ref","$ref":"quarto-resource-document-colors-filecolor","description":"quarto-resource-document-colors-filecolor"},"citecolor":{"_internalId":118225,"type":"ref","$ref":"quarto-resource-document-colors-citecolor","description":"quarto-resource-document-colors-citecolor"},"urlcolor":{"_internalId":118226,"type":"ref","$ref":"quarto-resource-document-colors-urlcolor","description":"quarto-resource-document-colors-urlcolor"},"toccolor":{"_internalId":118227,"type":"ref","$ref":"quarto-resource-document-colors-toccolor","description":"quarto-resource-document-colors-toccolor"},"colorlinks":{"_internalId":118228,"type":"ref","$ref":"quarto-resource-document-colors-colorlinks","description":"quarto-resource-document-colors-colorlinks"},"crossref":{"_internalId":118229,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":118230,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":118231,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":118232,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":118233,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":118234,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":118235,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":118236,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":118237,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":118238,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":118239,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":118240,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":118241,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":118242,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":118243,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":118244,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":118245,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":118246,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":118247,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":118248,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"mainfont":{"_internalId":118249,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":118250,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":118251,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"fontenc":{"_internalId":118252,"type":"ref","$ref":"quarto-resource-document-fonts-fontenc","description":"quarto-resource-document-fonts-fontenc"},"fontfamily":{"_internalId":118253,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamily","description":"quarto-resource-document-fonts-fontfamily"},"fontfamilyoptions":{"_internalId":118254,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamilyoptions","description":"quarto-resource-document-fonts-fontfamilyoptions"},"sansfont":{"_internalId":118255,"type":"ref","$ref":"quarto-resource-document-fonts-sansfont","description":"quarto-resource-document-fonts-sansfont"},"mathfont":{"_internalId":118256,"type":"ref","$ref":"quarto-resource-document-fonts-mathfont","description":"quarto-resource-document-fonts-mathfont"},"CJKmainfont":{"_internalId":118257,"type":"ref","$ref":"quarto-resource-document-fonts-CJKmainfont","description":"quarto-resource-document-fonts-CJKmainfont"},"mainfontoptions":{"_internalId":118258,"type":"ref","$ref":"quarto-resource-document-fonts-mainfontoptions","description":"quarto-resource-document-fonts-mainfontoptions"},"sansfontoptions":{"_internalId":118259,"type":"ref","$ref":"quarto-resource-document-fonts-sansfontoptions","description":"quarto-resource-document-fonts-sansfontoptions"},"monofontoptions":{"_internalId":118260,"type":"ref","$ref":"quarto-resource-document-fonts-monofontoptions","description":"quarto-resource-document-fonts-monofontoptions"},"mathfontoptions":{"_internalId":118261,"type":"ref","$ref":"quarto-resource-document-fonts-mathfontoptions","description":"quarto-resource-document-fonts-mathfontoptions"},"CJKoptions":{"_internalId":118262,"type":"ref","$ref":"quarto-resource-document-fonts-CJKoptions","description":"quarto-resource-document-fonts-CJKoptions"},"microtypeoptions":{"_internalId":118263,"type":"ref","$ref":"quarto-resource-document-fonts-microtypeoptions","description":"quarto-resource-document-fonts-microtypeoptions"},"linestretch":{"_internalId":118264,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"links-as-notes":{"_internalId":118265,"type":"ref","$ref":"quarto-resource-document-footnotes-links-as-notes","description":"quarto-resource-document-footnotes-links-as-notes"},"funding":{"_internalId":118266,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":118267,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":118267,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":118268,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":118269,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":118270,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":118271,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":118272,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":118273,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":118274,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":118275,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":118276,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":118277,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":118278,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":118279,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":118280,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":118281,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":118282,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":118283,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":118284,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":118285,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":118286,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":118287,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":118288,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":118289,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":118290,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":118291,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":118292,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":118293,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":118294,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"documentclass":{"_internalId":118295,"type":"ref","$ref":"quarto-resource-document-layout-documentclass","description":"quarto-resource-document-layout-documentclass"},"classoption":{"_internalId":118296,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"pagestyle":{"_internalId":118297,"type":"ref","$ref":"quarto-resource-document-layout-pagestyle","description":"quarto-resource-document-layout-pagestyle"},"papersize":{"_internalId":118298,"type":"ref","$ref":"quarto-resource-document-layout-papersize","description":"quarto-resource-document-layout-papersize"},"grid":{"_internalId":118299,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"margin-left":{"_internalId":118300,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":118301,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":118302,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":118303,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"geometry":{"_internalId":118304,"type":"ref","$ref":"quarto-resource-document-layout-geometry","description":"quarto-resource-document-layout-geometry"},"hyperrefoptions":{"_internalId":118305,"type":"ref","$ref":"quarto-resource-document-layout-hyperrefoptions","description":"quarto-resource-document-layout-hyperrefoptions"},"indent":{"_internalId":118306,"type":"ref","$ref":"quarto-resource-document-layout-indent","description":"quarto-resource-document-layout-indent"},"block-headings":{"_internalId":118307,"type":"ref","$ref":"quarto-resource-document-layout-block-headings","description":"quarto-resource-document-layout-block-headings"},"keywords":{"_internalId":118308,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":118309,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"title-meta":{"_internalId":118310,"type":"ref","$ref":"quarto-resource-document-metadata-title-meta","description":"quarto-resource-document-metadata-title-meta"},"author-meta":{"_internalId":118311,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":118312,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":118313,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":118314,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"secnumdepth":{"_internalId":118315,"type":"ref","$ref":"quarto-resource-document-numbering-secnumdepth","description":"quarto-resource-document-numbering-secnumdepth"},"shift-heading-level-by":{"_internalId":118316,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":118317,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":118318,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"pdf-engine":{"_internalId":118319,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":118320,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":118321,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"quarto-required":{"_internalId":118322,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":118323,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":118324,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"cite-method":{"_internalId":118325,"type":"ref","$ref":"quarto-resource-document-references-cite-method","description":"quarto-resource-document-references-cite-method"},"citeproc":{"_internalId":118326,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"biblatexoptions":{"_internalId":118327,"type":"ref","$ref":"quarto-resource-document-references-biblatexoptions","description":"quarto-resource-document-references-biblatexoptions"},"natbiboptions":{"_internalId":118328,"type":"ref","$ref":"quarto-resource-document-references-natbiboptions","description":"quarto-resource-document-references-natbiboptions"},"biblio-style":{"_internalId":118329,"type":"ref","$ref":"quarto-resource-document-references-biblio-style","description":"quarto-resource-document-references-biblio-style"},"biblio-title":{"_internalId":118330,"type":"ref","$ref":"quarto-resource-document-references-biblio-title","description":"quarto-resource-document-references-biblio-title"},"biblio-config":{"_internalId":118331,"type":"ref","$ref":"quarto-resource-document-references-biblio-config","description":"quarto-resource-document-references-biblio-config"},"citation-abbreviations":{"_internalId":118332,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"link-citations":{"_internalId":118333,"type":"ref","$ref":"quarto-resource-document-references-link-citations","description":"quarto-resource-document-references-link-citations"},"link-bibliography":{"_internalId":118334,"type":"ref","$ref":"quarto-resource-document-references-link-bibliography","description":"quarto-resource-document-references-link-bibliography"},"notes-after-punctuation":{"_internalId":118335,"type":"ref","$ref":"quarto-resource-document-references-notes-after-punctuation","description":"quarto-resource-document-references-notes-after-punctuation"},"from":{"_internalId":118336,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":118336,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":118337,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":118338,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":118339,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":118340,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":118341,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":118342,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":118343,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":118344,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":118345,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":118346,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":118347,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":118348,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":118349,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":118350,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":118351,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":118352,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":118353,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"use-rsvg-convert":{"_internalId":118354,"type":"ref","$ref":"quarto-resource-document-render-use-rsvg-convert","description":"quarto-resource-document-render-use-rsvg-convert"},"df-print":{"_internalId":118355,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":118356,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":118357,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":118357,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":118358,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":118359,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"lof":{"_internalId":118360,"type":"ref","$ref":"quarto-resource-document-toc-lof","description":"quarto-resource-document-toc-lof"},"lot":{"_internalId":118361,"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,grid,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":118363,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?man([-+].+)?$":{"_internalId":120974,"type":"anyOf","anyOf":[{"_internalId":120972,"type":"object","description":"be an object","properties":{"eval":{"_internalId":120873,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":120874,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":120875,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":120876,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":120877,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":120878,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":120879,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":120880,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":120881,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":120882,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":120883,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":120884,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":120885,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":120886,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":120887,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":120888,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":120889,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":120890,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":120891,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":120892,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":120893,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":120894,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":120895,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":120896,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":120897,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":120898,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":120899,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":120900,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":120901,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":120902,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":120903,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":120904,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":120905,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"adjusting":{"_internalId":120906,"type":"ref","$ref":"quarto-resource-document-formatting-adjusting","description":"quarto-resource-document-formatting-adjusting"},"hyphenate":{"_internalId":120907,"type":"ref","$ref":"quarto-resource-document-formatting-hyphenate","description":"quarto-resource-document-formatting-hyphenate"},"funding":{"_internalId":120908,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":120909,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":120909,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":120910,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":120911,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":120912,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":120913,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":120914,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":120915,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":120916,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":120917,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":120918,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":120919,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":120920,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":120921,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":120922,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":120923,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":120924,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":120925,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":120926,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":120927,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":120928,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":120929,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":120930,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":120931,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"footer":{"_internalId":120932,"type":"ref","$ref":"quarto-resource-document-includes-footer","description":"quarto-resource-document-includes-footer"},"header":{"_internalId":120933,"type":"ref","$ref":"quarto-resource-document-includes-header","description":"quarto-resource-document-includes-header"},"metadata-file":{"_internalId":120934,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":120935,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":120936,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":120937,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":120938,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":120939,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":120940,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":120941,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":120942,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"section":{"_internalId":120943,"type":"ref","$ref":"quarto-resource-document-options-section","description":"quarto-resource-document-options-section"},"quarto-required":{"_internalId":120944,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":120945,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":120946,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":120947,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":120948,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":120949,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":120949,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":120950,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":120951,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":120952,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":120953,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":120954,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":120955,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":120956,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":120957,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":120958,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":120959,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":120960,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":120961,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":120962,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":120963,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":120964,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":120965,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":120966,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":120967,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":120968,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":120969,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":120970,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":120971,"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,grid,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":120973,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markdown([-+].+)?$":{"_internalId":123588,"type":"anyOf","anyOf":[{"_internalId":123586,"type":"object","description":"be an object","properties":{"eval":{"_internalId":123483,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":123484,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":123485,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":123486,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":123487,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":123488,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":123489,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":123490,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":123491,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":123492,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":123493,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":123494,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":123495,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":123496,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":123497,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":123498,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":123499,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":123500,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":123501,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":123502,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":123503,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":123504,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":123505,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":123506,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":123507,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":123508,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":123509,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":123510,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":123511,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":123512,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":123513,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":123514,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":123515,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":123516,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":123517,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":123518,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":123518,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":123519,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":123520,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":123521,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":123522,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":123523,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":123524,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":123525,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":123526,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":123527,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":123528,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":123529,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":123530,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":123531,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":123532,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":123533,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":123534,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":123535,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":123536,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":123537,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":123538,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":123539,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":123540,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":123541,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":123542,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":123543,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":123544,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":123545,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":123546,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":123547,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":123548,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":123549,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":123550,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":123551,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":123552,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":123553,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":123554,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":123555,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":123556,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":123557,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":123558,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":123559,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":123559,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":123560,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":123561,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":123562,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":123563,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":123564,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":123565,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":123566,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":123567,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":123568,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":123569,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":123570,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":123571,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":123572,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":123573,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":123574,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":123575,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":123576,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":123577,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":123578,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":123579,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":123580,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":123581,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":123582,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":123583,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":123584,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":123584,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":123585,"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,grid,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":123587,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markdown_github([-+].+)?$":{"_internalId":126195,"type":"anyOf","anyOf":[{"_internalId":126193,"type":"object","description":"be an object","properties":{"eval":{"_internalId":126097,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":126098,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":126099,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":126100,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":126101,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":126102,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":126103,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":126104,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":126105,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":126106,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":126107,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":126108,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":126109,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":126110,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":126111,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":126112,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":126113,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":126114,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":126115,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":126116,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":126117,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":126118,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":126119,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":126120,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":126121,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":126122,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":126123,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":126124,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":126125,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":126126,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":126127,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":126128,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":126129,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":126130,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":126131,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":126131,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":126132,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":126133,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":126134,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":126135,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":126136,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":126137,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":126138,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":126139,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":126140,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":126141,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":126142,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":126143,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":126144,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":126145,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":126146,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":126147,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":126148,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":126149,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":126150,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":126151,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":126152,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":126153,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":126154,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":126155,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":126156,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":126157,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":126158,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":126159,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":126160,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":126161,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":126162,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":126163,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":126164,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":126165,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":126166,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":126167,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":126168,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":126168,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":126169,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":126170,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":126171,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":126172,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":126173,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":126174,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":126175,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":126176,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":126177,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":126178,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":126179,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":126180,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":126181,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":126182,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":126183,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":126184,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":126185,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":126186,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":126187,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":126188,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":126189,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":126190,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":126191,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":126191,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":126192,"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,grid,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":126194,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markdown_mmd([-+].+)?$":{"_internalId":128802,"type":"anyOf","anyOf":[{"_internalId":128800,"type":"object","description":"be an object","properties":{"eval":{"_internalId":128704,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":128705,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":128706,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":128707,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":128708,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":128709,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":128710,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":128711,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":128712,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":128713,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":128714,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":128715,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":128716,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":128717,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":128718,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":128719,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":128720,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":128721,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":128722,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":128723,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":128724,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":128725,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":128726,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":128727,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":128728,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":128729,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":128730,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":128731,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":128732,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":128733,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":128734,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":128735,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":128736,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":128737,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":128738,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":128738,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":128739,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":128740,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":128741,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":128742,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":128743,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":128744,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":128745,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":128746,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":128747,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":128748,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":128749,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":128750,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":128751,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":128752,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":128753,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":128754,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":128755,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":128756,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":128757,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":128758,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":128759,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":128760,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":128761,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":128762,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":128763,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":128764,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":128765,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":128766,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":128767,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":128768,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":128769,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":128770,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":128771,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":128772,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":128773,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":128774,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":128775,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":128775,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":128776,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":128777,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":128778,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":128779,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":128780,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":128781,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":128782,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":128783,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":128784,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":128785,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":128786,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":128787,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":128788,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":128789,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":128790,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":128791,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":128792,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":128793,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":128794,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":128795,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":128796,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":128797,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":128798,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":128798,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":128799,"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,grid,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":128801,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markdown_phpextra([-+].+)?$":{"_internalId":131409,"type":"anyOf","anyOf":[{"_internalId":131407,"type":"object","description":"be an object","properties":{"eval":{"_internalId":131311,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":131312,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":131313,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":131314,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":131315,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":131316,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":131317,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":131318,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":131319,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":131320,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":131321,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":131322,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":131323,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":131324,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":131325,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":131326,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":131327,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":131328,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":131329,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":131330,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":131331,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":131332,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":131333,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":131334,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":131335,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":131336,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":131337,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":131338,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":131339,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":131340,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":131341,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":131342,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":131343,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":131344,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":131345,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":131345,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":131346,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":131347,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":131348,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":131349,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":131350,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":131351,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":131352,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":131353,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":131354,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":131355,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":131356,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":131357,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":131358,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":131359,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":131360,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":131361,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":131362,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":131363,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":131364,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":131365,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":131366,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":131367,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":131368,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":131369,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":131370,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":131371,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":131372,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":131373,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":131374,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":131375,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":131376,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":131377,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":131378,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":131379,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":131380,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":131381,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":131382,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":131382,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":131383,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":131384,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":131385,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":131386,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":131387,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":131388,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":131389,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":131390,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":131391,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":131392,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":131393,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":131394,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":131395,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":131396,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":131397,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":131398,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":131399,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":131400,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":131401,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":131402,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":131403,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":131404,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":131405,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":131405,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":131406,"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,grid,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":131408,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markdown_strict([-+].+)?$":{"_internalId":134016,"type":"anyOf","anyOf":[{"_internalId":134014,"type":"object","description":"be an object","properties":{"eval":{"_internalId":133918,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":133919,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":133920,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":133921,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":133922,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":133923,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":133924,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":133925,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":133926,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":133927,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":133928,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":133929,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":133930,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":133931,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":133932,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":133933,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":133934,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":133935,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":133936,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":133937,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":133938,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":133939,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":133940,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":133941,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":133942,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":133943,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":133944,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":133945,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":133946,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":133947,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":133948,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":133949,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":133950,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":133951,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":133952,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":133952,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":133953,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":133954,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":133955,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":133956,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":133957,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":133958,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":133959,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":133960,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":133961,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":133962,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":133963,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":133964,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":133965,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":133966,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":133967,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":133968,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":133969,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":133970,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":133971,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":133972,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":133973,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":133974,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":133975,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":133976,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":133977,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":133978,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":133979,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":133980,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":133981,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":133982,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":133983,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":133984,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":133985,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":133986,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":133987,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":133988,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":133989,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":133989,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":133990,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":133991,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":133992,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":133993,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":133994,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":133995,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":133996,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":133997,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":133998,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":133999,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":134000,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":134001,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":134002,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":134003,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":134004,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":134005,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":134006,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":134007,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":134008,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":134009,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":134010,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":134011,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":134012,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":134012,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":134013,"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,grid,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":134015,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markua([-+].+)?$":{"_internalId":136630,"type":"anyOf","anyOf":[{"_internalId":136628,"type":"object","description":"be an object","properties":{"eval":{"_internalId":136525,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":136526,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":136527,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":136528,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":136529,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":136530,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":136531,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":136532,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":136533,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":136534,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":136535,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":136536,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":136537,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":136538,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":136539,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":136540,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":136541,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":136542,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":136543,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":136544,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":136545,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":136546,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":136547,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":136548,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":136549,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":136550,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":136551,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":136552,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":136553,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":136554,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":136555,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":136556,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":136557,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":136558,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":136559,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":136560,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":136560,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":136561,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":136562,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":136563,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":136564,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":136565,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":136566,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":136567,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":136568,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":136569,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":136570,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":136571,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":136572,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":136573,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":136574,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":136575,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":136576,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":136577,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":136578,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":136579,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":136580,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":136581,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":136582,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":136583,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":136584,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":136585,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":136586,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":136587,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":136588,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":136589,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":136590,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":136591,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":136592,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":136593,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":136594,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":136595,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":136596,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":136597,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":136598,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":136599,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":136600,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":136601,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":136601,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":136602,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":136603,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":136604,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":136605,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":136606,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":136607,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":136608,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":136609,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":136610,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":136611,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":136612,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":136613,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":136614,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":136615,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":136616,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":136617,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":136618,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":136619,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":136620,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":136621,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":136622,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":136623,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":136624,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":136625,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":136626,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":136626,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":136627,"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,grid,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":136629,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?mediawiki([-+].+)?$":{"_internalId":139237,"type":"anyOf","anyOf":[{"_internalId":139235,"type":"object","description":"be an object","properties":{"eval":{"_internalId":139139,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":139140,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":139141,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":139142,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":139143,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":139144,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":139145,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":139146,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":139147,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":139148,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":139149,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":139150,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":139151,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":139152,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":139153,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":139154,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":139155,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":139156,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":139157,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":139158,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":139159,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":139160,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":139161,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":139162,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":139163,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":139164,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":139165,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":139166,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":139167,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":139168,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":139169,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":139170,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":139171,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":139172,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":139173,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":139173,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":139174,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":139175,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":139176,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":139177,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":139178,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":139179,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":139180,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":139181,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":139182,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":139183,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":139184,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":139185,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":139186,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":139187,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":139188,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":139189,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":139190,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":139191,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":139192,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":139193,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":139194,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":139195,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":139196,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":139197,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":139198,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":139199,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":139200,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":139201,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":139202,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":139203,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":139204,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":139205,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":139206,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":139207,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":139208,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":139209,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":139210,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":139210,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":139211,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":139212,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":139213,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":139214,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":139215,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":139216,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":139217,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":139218,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":139219,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":139220,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":139221,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":139222,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":139223,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":139224,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":139225,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":139226,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":139227,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":139228,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":139229,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":139230,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":139231,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":139232,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":139233,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":139233,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":139234,"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,grid,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":139236,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?ms([-+].+)?$":{"_internalId":141858,"type":"anyOf","anyOf":[{"_internalId":141856,"type":"object","description":"be an object","properties":{"eval":{"_internalId":141746,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":141747,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-line-numbers":{"_internalId":141748,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"output":{"_internalId":141749,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":141750,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":141751,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":141752,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":141753,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":141754,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":141755,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":141756,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":141757,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"order":{"_internalId":141758,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":141759,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":141760,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":141761,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":141762,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":141763,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":141764,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"crossref":{"_internalId":141765,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":141766,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":141767,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":141768,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":141769,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":141770,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":141771,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":141772,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":141773,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":141774,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":141775,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":141776,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":141777,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":141778,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":141779,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":141780,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":141781,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":141782,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":141783,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":141784,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fontfamily":{"_internalId":141785,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamily","description":"quarto-resource-document-fonts-fontfamily"},"pointsize":{"_internalId":141786,"type":"ref","$ref":"quarto-resource-document-fonts-pointsize","description":"quarto-resource-document-fonts-pointsize"},"lineheight":{"_internalId":141787,"type":"ref","$ref":"quarto-resource-document-fonts-lineheight","description":"quarto-resource-document-fonts-lineheight"},"funding":{"_internalId":141788,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":141789,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":141789,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":141790,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":141791,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":141792,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":141793,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":141794,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":141795,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":141796,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":141797,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":141798,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":141799,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":141800,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":141801,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":141802,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":141803,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":141804,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":141805,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":141806,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":141807,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":141808,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":141809,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":141810,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":141811,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":141812,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":141813,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":141814,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":141815,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":141816,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":141817,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"indent":{"_internalId":141818,"type":"ref","$ref":"quarto-resource-document-layout-indent","description":"quarto-resource-document-layout-indent"},"number-sections":{"_internalId":141819,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":141820,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":141821,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"pdf-engine":{"_internalId":141822,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":141823,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":141824,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"quarto-required":{"_internalId":141825,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":141826,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":141827,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":141828,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":141829,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":141830,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":141830,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":141831,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":141832,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":141833,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":141834,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":141835,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":141836,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":141837,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":141838,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":141839,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":141840,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":141841,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":141842,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":141843,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":141844,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":141845,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":141846,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":141847,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":141848,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":141849,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":141850,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":141851,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":141852,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"ascii":{"_internalId":141853,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":141854,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":141854,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":141855,"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,grid,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":141857,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?muse([-+].+)?$":{"_internalId":144467,"type":"anyOf","anyOf":[{"_internalId":144465,"type":"object","description":"be an object","properties":{"eval":{"_internalId":144367,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":144368,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":144369,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":144370,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":144371,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":144372,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":144373,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":144374,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":144375,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":144376,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":144377,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":144378,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":144379,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":144380,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":144381,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":144382,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":144383,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":144384,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":144385,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":144386,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":144387,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":144388,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":144389,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":144390,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":144391,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":144392,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":144393,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":144394,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":144395,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":144396,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":144397,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":144398,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":144399,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":144400,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":144401,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":144402,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":144403,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":144403,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":144404,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":144405,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":144406,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":144407,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":144408,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":144409,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":144410,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":144411,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":144412,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":144413,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":144414,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":144415,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":144416,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":144417,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":144418,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":144419,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":144420,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":144421,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":144422,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":144423,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":144424,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":144425,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":144426,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":144427,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":144428,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":144429,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":144430,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":144431,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":144432,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":144433,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":144434,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":144435,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":144436,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":144437,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":144438,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":144439,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":144440,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":144440,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":144441,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":144442,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":144443,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":144444,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":144445,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":144446,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":144447,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":144448,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":144449,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":144450,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":144451,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":144452,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":144453,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":144454,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":144455,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":144456,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":144457,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":144458,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":144459,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":144460,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":144461,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":144462,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":144463,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":144463,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":144464,"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,grid,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":144466,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?native([-+].+)?$":{"_internalId":147074,"type":"anyOf","anyOf":[{"_internalId":147072,"type":"object","description":"be an object","properties":{"eval":{"_internalId":146976,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":146977,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":146978,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":146979,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":146980,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":146981,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":146982,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":146983,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":146984,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":146985,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":146986,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":146987,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":146988,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":146989,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":146990,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":146991,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":146992,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":146993,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":146994,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":146995,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":146996,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":146997,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":146998,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":146999,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":147000,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":147001,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":147002,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":147003,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":147004,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":147005,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":147006,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":147007,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":147008,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":147009,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":147010,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":147010,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":147011,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":147012,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":147013,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":147014,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":147015,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":147016,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":147017,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":147018,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":147019,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":147020,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":147021,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":147022,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":147023,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":147024,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":147025,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":147026,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":147027,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":147028,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":147029,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":147030,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":147031,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":147032,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":147033,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":147034,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":147035,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":147036,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":147037,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":147038,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":147039,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":147040,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":147041,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":147042,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":147043,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":147044,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":147045,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":147046,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":147047,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":147047,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":147048,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":147049,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":147050,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":147051,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":147052,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":147053,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":147054,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":147055,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":147056,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":147057,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":147058,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":147059,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":147060,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":147061,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":147062,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":147063,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":147064,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":147065,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":147066,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":147067,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":147068,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":147069,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":147070,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":147070,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":147071,"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,grid,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":147073,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?odt([-+].+)?$":{"_internalId":149686,"type":"anyOf","anyOf":[{"_internalId":149684,"type":"object","description":"be an object","properties":{"eval":{"_internalId":149583,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":149584,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"fig-align":{"_internalId":149585,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"output":{"_internalId":149586,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":149587,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":149588,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":149589,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":149590,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":149591,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":149592,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":149593,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":149594,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":149595,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"order":{"_internalId":149596,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":149597,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":149598,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":149599,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":149600,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":149601,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":149602,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":149603,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":149604,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":149605,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":149606,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":149607,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":149608,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":149609,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":149610,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":149611,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":149612,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":149613,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":149614,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":149615,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":149616,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":149617,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":149618,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":149619,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":149620,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":149620,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":149621,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":149622,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":149623,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":149624,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":149625,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":149626,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":149627,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":149628,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":149629,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":149630,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":149631,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":149632,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":149633,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":149634,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":149635,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":149636,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":149637,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":149638,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":149639,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":149640,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":149641,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":149642,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":149643,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":149644,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":149645,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":149646,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":149647,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"page-width":{"_internalId":149648,"type":"ref","$ref":"quarto-resource-document-layout-page-width","description":"quarto-resource-document-layout-page-width"},"grid":{"_internalId":149649,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"keywords":{"_internalId":149650,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":149651,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"description":{"_internalId":149652,"type":"ref","$ref":"quarto-resource-document-metadata-description","description":"quarto-resource-document-metadata-description"},"number-sections":{"_internalId":149653,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":149654,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"reference-doc":{"_internalId":149655,"type":"ref","$ref":"quarto-resource-document-options-reference-doc","description":"quarto-resource-document-options-reference-doc"},"brand":{"_internalId":149656,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":149657,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":149658,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":149659,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":149660,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":149661,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":149662,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":149662,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":149663,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":149664,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":149665,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":149666,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":149667,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":149668,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":149669,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":149670,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":149671,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":149672,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":149673,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":149674,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":149675,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":149676,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":149677,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":149678,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":149679,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":149680,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"toc":{"_internalId":149681,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":149681,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":149682,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":149683,"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,grid,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":149685,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?opendocument([-+].+)?$":{"_internalId":152292,"type":"anyOf","anyOf":[{"_internalId":152290,"type":"object","description":"be an object","properties":{"eval":{"_internalId":152195,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":152196,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"fig-align":{"_internalId":152197,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"output":{"_internalId":152198,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":152199,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":152200,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":152201,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":152202,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":152203,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":152204,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":152205,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":152206,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":152207,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":152208,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":152209,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":152210,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":152211,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":152212,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":152213,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":152214,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":152215,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":152216,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":152217,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":152218,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":152219,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":152220,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":152221,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":152222,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":152223,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":152224,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":152225,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":152226,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":152227,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":152228,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":152229,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":152230,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":152230,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":152231,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":152232,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":152233,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":152234,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":152235,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":152236,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":152237,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":152238,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":152239,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":152240,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":152241,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":152242,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":152243,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":152244,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":152245,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":152246,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":152247,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":152248,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":152249,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":152250,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":152251,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":152252,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":152253,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":152254,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":152255,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":152256,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":152257,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"page-width":{"_internalId":152258,"type":"ref","$ref":"quarto-resource-document-layout-page-width","description":"quarto-resource-document-layout-page-width"},"grid":{"_internalId":152259,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":152260,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":152261,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":152262,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":152263,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":152264,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":152265,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":152266,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":152267,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":152268,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":152268,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":152269,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":152270,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":152271,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":152272,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":152273,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":152274,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":152275,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":152276,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":152277,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":152278,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":152279,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":152280,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":152281,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":152282,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":152283,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":152284,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":152285,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":152286,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"toc":{"_internalId":152287,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":152287,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":152288,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":152289,"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,grid,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":152291,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?opml([-+].+)?$":{"_internalId":154899,"type":"anyOf","anyOf":[{"_internalId":154897,"type":"object","description":"be an object","properties":{"eval":{"_internalId":154801,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":154802,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":154803,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":154804,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":154805,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":154806,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":154807,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":154808,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":154809,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":154810,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":154811,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":154812,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":154813,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":154814,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":154815,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":154816,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":154817,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":154818,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":154819,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":154820,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":154821,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":154822,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":154823,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":154824,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":154825,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":154826,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":154827,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":154828,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":154829,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":154830,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":154831,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":154832,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":154833,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":154834,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":154835,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":154835,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":154836,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":154837,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":154838,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":154839,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":154840,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":154841,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":154842,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":154843,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":154844,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":154845,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":154846,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":154847,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":154848,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":154849,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":154850,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":154851,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":154852,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":154853,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":154854,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":154855,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":154856,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":154857,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":154858,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":154859,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":154860,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":154861,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":154862,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":154863,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":154864,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":154865,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":154866,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":154867,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":154868,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":154869,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":154870,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":154871,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":154872,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":154872,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":154873,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":154874,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":154875,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":154876,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":154877,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":154878,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":154879,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":154880,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":154881,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":154882,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":154883,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":154884,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":154885,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":154886,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":154887,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":154888,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":154889,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":154890,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":154891,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":154892,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":154893,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":154894,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":154895,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":154895,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":154896,"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,grid,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":154898,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?org([-+].+)?$":{"_internalId":157506,"type":"anyOf","anyOf":[{"_internalId":157504,"type":"object","description":"be an object","properties":{"eval":{"_internalId":157408,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":157409,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":157410,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":157411,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":157412,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":157413,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":157414,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":157415,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":157416,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":157417,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":157418,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":157419,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":157420,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":157421,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":157422,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":157423,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":157424,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":157425,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":157426,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":157427,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":157428,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":157429,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":157430,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":157431,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":157432,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":157433,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":157434,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":157435,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":157436,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":157437,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":157438,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":157439,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":157440,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":157441,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":157442,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":157442,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":157443,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":157444,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":157445,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":157446,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":157447,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":157448,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":157449,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":157450,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":157451,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":157452,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":157453,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":157454,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":157455,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":157456,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":157457,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":157458,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":157459,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":157460,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":157461,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":157462,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":157463,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":157464,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":157465,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":157466,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":157467,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":157468,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":157469,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":157470,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":157471,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":157472,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":157473,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":157474,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":157475,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":157476,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":157477,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":157478,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":157479,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":157479,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":157480,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":157481,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":157482,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":157483,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":157484,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":157485,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":157486,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":157487,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":157488,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":157489,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":157490,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":157491,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":157492,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":157493,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":157494,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":157495,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":157496,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":157497,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":157498,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":157499,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":157500,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":157501,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":157502,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":157502,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":157503,"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,grid,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":157505,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?pdf([-+].+)?$":{"_internalId":160202,"type":"anyOf","anyOf":[{"_internalId":160200,"type":"object","description":"be an object","properties":{"eval":{"_internalId":160015,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":160016,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-line-numbers":{"_internalId":160017,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":160018,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-env":{"_internalId":160019,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":160020,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"cap-location":{"_internalId":160021,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":160022,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":160023,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":160024,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":160025,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":160026,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":160027,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":160028,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":160029,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":160030,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":160031,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":160032,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":160033,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":160034,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"thanks":{"_internalId":160035,"type":"ref","$ref":"quarto-resource-document-attributes-thanks","description":"quarto-resource-document-attributes-thanks"},"order":{"_internalId":160036,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":160037,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":160038,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-block-border-left":{"_internalId":160039,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":160040,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"highlight-style":{"_internalId":160041,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":160042,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":160043,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"listings":{"_internalId":160044,"type":"ref","$ref":"quarto-resource-document-code-listings","description":"quarto-resource-document-code-listings"},"indented-code-classes":{"_internalId":160045,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"linkcolor":{"_internalId":160046,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"filecolor":{"_internalId":160047,"type":"ref","$ref":"quarto-resource-document-colors-filecolor","description":"quarto-resource-document-colors-filecolor"},"citecolor":{"_internalId":160048,"type":"ref","$ref":"quarto-resource-document-colors-citecolor","description":"quarto-resource-document-colors-citecolor"},"urlcolor":{"_internalId":160049,"type":"ref","$ref":"quarto-resource-document-colors-urlcolor","description":"quarto-resource-document-colors-urlcolor"},"toccolor":{"_internalId":160050,"type":"ref","$ref":"quarto-resource-document-colors-toccolor","description":"quarto-resource-document-colors-toccolor"},"colorlinks":{"_internalId":160051,"type":"ref","$ref":"quarto-resource-document-colors-colorlinks","description":"quarto-resource-document-colors-colorlinks"},"crossref":{"_internalId":160052,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":160053,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":160054,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":160055,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":160056,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":160057,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":160058,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":160059,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":160060,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":160061,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":160062,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":160063,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":160064,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":160065,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":160066,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":160067,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":160068,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":160069,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":160070,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":160071,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"mainfont":{"_internalId":160072,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":160073,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":160074,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"fontenc":{"_internalId":160075,"type":"ref","$ref":"quarto-resource-document-fonts-fontenc","description":"quarto-resource-document-fonts-fontenc"},"fontfamily":{"_internalId":160076,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamily","description":"quarto-resource-document-fonts-fontfamily"},"fontfamilyoptions":{"_internalId":160077,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamilyoptions","description":"quarto-resource-document-fonts-fontfamilyoptions"},"sansfont":{"_internalId":160078,"type":"ref","$ref":"quarto-resource-document-fonts-sansfont","description":"quarto-resource-document-fonts-sansfont"},"mathfont":{"_internalId":160079,"type":"ref","$ref":"quarto-resource-document-fonts-mathfont","description":"quarto-resource-document-fonts-mathfont"},"CJKmainfont":{"_internalId":160080,"type":"ref","$ref":"quarto-resource-document-fonts-CJKmainfont","description":"quarto-resource-document-fonts-CJKmainfont"},"mainfontoptions":{"_internalId":160081,"type":"ref","$ref":"quarto-resource-document-fonts-mainfontoptions","description":"quarto-resource-document-fonts-mainfontoptions"},"sansfontoptions":{"_internalId":160082,"type":"ref","$ref":"quarto-resource-document-fonts-sansfontoptions","description":"quarto-resource-document-fonts-sansfontoptions"},"monofontoptions":{"_internalId":160083,"type":"ref","$ref":"quarto-resource-document-fonts-monofontoptions","description":"quarto-resource-document-fonts-monofontoptions"},"mathfontoptions":{"_internalId":160084,"type":"ref","$ref":"quarto-resource-document-fonts-mathfontoptions","description":"quarto-resource-document-fonts-mathfontoptions"},"CJKoptions":{"_internalId":160085,"type":"ref","$ref":"quarto-resource-document-fonts-CJKoptions","description":"quarto-resource-document-fonts-CJKoptions"},"microtypeoptions":{"_internalId":160086,"type":"ref","$ref":"quarto-resource-document-fonts-microtypeoptions","description":"quarto-resource-document-fonts-microtypeoptions"},"linestretch":{"_internalId":160087,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"links-as-notes":{"_internalId":160088,"type":"ref","$ref":"quarto-resource-document-footnotes-links-as-notes","description":"quarto-resource-document-footnotes-links-as-notes"},"reference-location":{"_internalId":160089,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":160090,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":160091,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":160091,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":160092,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":160093,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":160094,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":160095,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":160096,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":160097,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":160098,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":160099,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":160100,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":160101,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":160102,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":160103,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":160104,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":160105,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":160106,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":160107,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":160108,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":160109,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":160110,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":160111,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":160112,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":160113,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":160114,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":160115,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":160116,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":160117,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"shorthands":{"_internalId":160118,"type":"ref","$ref":"quarto-resource-document-language-shorthands","description":"quarto-resource-document-language-shorthands"},"dir":{"_internalId":160119,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"latex-auto-mk":{"_internalId":160120,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-mk","description":"quarto-resource-document-latexmk-latex-auto-mk"},"latex-auto-install":{"_internalId":160121,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-install","description":"quarto-resource-document-latexmk-latex-auto-install"},"latex-min-runs":{"_internalId":160122,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-min-runs","description":"quarto-resource-document-latexmk-latex-min-runs"},"latex-max-runs":{"_internalId":160123,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-max-runs","description":"quarto-resource-document-latexmk-latex-max-runs"},"latex-clean":{"_internalId":160124,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-clean","description":"quarto-resource-document-latexmk-latex-clean"},"latex-makeindex":{"_internalId":160125,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex","description":"quarto-resource-document-latexmk-latex-makeindex"},"latex-makeindex-opts":{"_internalId":160126,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex-opts","description":"quarto-resource-document-latexmk-latex-makeindex-opts"},"latex-tlmgr-opts":{"_internalId":160127,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tlmgr-opts","description":"quarto-resource-document-latexmk-latex-tlmgr-opts"},"latex-output-dir":{"_internalId":160128,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-output-dir","description":"quarto-resource-document-latexmk-latex-output-dir"},"latex-tinytex":{"_internalId":160129,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tinytex","description":"quarto-resource-document-latexmk-latex-tinytex"},"latex-input-paths":{"_internalId":160130,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-input-paths","description":"quarto-resource-document-latexmk-latex-input-paths"},"documentclass":{"_internalId":160131,"type":"ref","$ref":"quarto-resource-document-layout-documentclass","description":"quarto-resource-document-layout-documentclass"},"classoption":{"_internalId":160132,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"pagestyle":{"_internalId":160133,"type":"ref","$ref":"quarto-resource-document-layout-pagestyle","description":"quarto-resource-document-layout-pagestyle"},"papersize":{"_internalId":160134,"type":"ref","$ref":"quarto-resource-document-layout-papersize","description":"quarto-resource-document-layout-papersize"},"grid":{"_internalId":160135,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"margin-left":{"_internalId":160136,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":160137,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":160138,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":160139,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"geometry":{"_internalId":160140,"type":"ref","$ref":"quarto-resource-document-layout-geometry","description":"quarto-resource-document-layout-geometry"},"hyperrefoptions":{"_internalId":160141,"type":"ref","$ref":"quarto-resource-document-layout-hyperrefoptions","description":"quarto-resource-document-layout-hyperrefoptions"},"indent":{"_internalId":160142,"type":"ref","$ref":"quarto-resource-document-layout-indent","description":"quarto-resource-document-layout-indent"},"block-headings":{"_internalId":160143,"type":"ref","$ref":"quarto-resource-document-layout-block-headings","description":"quarto-resource-document-layout-block-headings"},"keywords":{"_internalId":160144,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":160145,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"title-meta":{"_internalId":160146,"type":"ref","$ref":"quarto-resource-document-metadata-title-meta","description":"quarto-resource-document-metadata-title-meta"},"author-meta":{"_internalId":160147,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":160148,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":160149,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":160150,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"secnumdepth":{"_internalId":160151,"type":"ref","$ref":"quarto-resource-document-numbering-secnumdepth","description":"quarto-resource-document-numbering-secnumdepth"},"shift-heading-level-by":{"_internalId":160152,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":160153,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":160154,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"pdf-engine":{"_internalId":160155,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":160156,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":160157,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"beamerarticle":{"_internalId":160158,"type":"ref","$ref":"quarto-resource-document-options-beamerarticle","description":"quarto-resource-document-options-beamerarticle"},"quarto-required":{"_internalId":160159,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":160160,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":160161,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"cite-method":{"_internalId":160162,"type":"ref","$ref":"quarto-resource-document-references-cite-method","description":"quarto-resource-document-references-cite-method"},"citeproc":{"_internalId":160163,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"biblatexoptions":{"_internalId":160164,"type":"ref","$ref":"quarto-resource-document-references-biblatexoptions","description":"quarto-resource-document-references-biblatexoptions"},"natbiboptions":{"_internalId":160165,"type":"ref","$ref":"quarto-resource-document-references-natbiboptions","description":"quarto-resource-document-references-natbiboptions"},"biblio-style":{"_internalId":160166,"type":"ref","$ref":"quarto-resource-document-references-biblio-style","description":"quarto-resource-document-references-biblio-style"},"biblio-title":{"_internalId":160167,"type":"ref","$ref":"quarto-resource-document-references-biblio-title","description":"quarto-resource-document-references-biblio-title"},"biblio-config":{"_internalId":160168,"type":"ref","$ref":"quarto-resource-document-references-biblio-config","description":"quarto-resource-document-references-biblio-config"},"citation-abbreviations":{"_internalId":160169,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"link-citations":{"_internalId":160170,"type":"ref","$ref":"quarto-resource-document-references-link-citations","description":"quarto-resource-document-references-link-citations"},"link-bibliography":{"_internalId":160171,"type":"ref","$ref":"quarto-resource-document-references-link-bibliography","description":"quarto-resource-document-references-link-bibliography"},"notes-after-punctuation":{"_internalId":160172,"type":"ref","$ref":"quarto-resource-document-references-notes-after-punctuation","description":"quarto-resource-document-references-notes-after-punctuation"},"from":{"_internalId":160173,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":160173,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":160174,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":160175,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":160176,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":160177,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":160178,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":160179,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":160180,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":160181,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":160182,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":160183,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":160184,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"keep-tex":{"_internalId":160185,"type":"ref","$ref":"quarto-resource-document-render-keep-tex","description":"quarto-resource-document-render-keep-tex"},"extract-media":{"_internalId":160186,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":160187,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":160188,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":160189,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":160190,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":160191,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"use-rsvg-convert":{"_internalId":160192,"type":"ref","$ref":"quarto-resource-document-render-use-rsvg-convert","description":"quarto-resource-document-render-use-rsvg-convert"},"df-print":{"_internalId":160193,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":160194,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":160195,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":160195,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":160196,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":160197,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"lof":{"_internalId":160198,"type":"ref","$ref":"quarto-resource-document-toc-lof","description":"quarto-resource-document-toc-lof"},"lot":{"_internalId":160199,"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,grid,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":160201,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?plain([-+].+)?$":{"_internalId":162809,"type":"anyOf","anyOf":[{"_internalId":162807,"type":"object","description":"be an object","properties":{"eval":{"_internalId":162711,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":162712,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":162713,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":162714,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":162715,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":162716,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":162717,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":162718,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":162719,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":162720,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":162721,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":162722,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":162723,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":162724,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":162725,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":162726,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":162727,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":162728,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":162729,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":162730,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":162731,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":162732,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":162733,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":162734,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":162735,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":162736,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":162737,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":162738,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":162739,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":162740,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":162741,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":162742,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":162743,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":162744,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":162745,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":162745,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":162746,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":162747,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":162748,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":162749,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":162750,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":162751,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":162752,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":162753,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":162754,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":162755,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":162756,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":162757,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":162758,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":162759,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":162760,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":162761,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":162762,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":162763,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":162764,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":162765,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":162766,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":162767,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":162768,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":162769,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":162770,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":162771,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":162772,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":162773,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":162774,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":162775,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":162776,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":162777,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":162778,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":162779,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":162780,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":162781,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":162782,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":162782,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":162783,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":162784,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":162785,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":162786,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":162787,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":162788,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":162789,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":162790,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":162791,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":162792,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":162793,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":162794,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":162795,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":162796,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":162797,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":162798,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":162799,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":162800,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":162801,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":162802,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":162803,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":162804,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":162805,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":162805,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":162806,"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,grid,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":162808,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?pptx([-+].+)?$":{"_internalId":165412,"type":"anyOf","anyOf":[{"_internalId":165410,"type":"object","description":"be an object","properties":{"eval":{"_internalId":165318,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":165319,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":165320,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":165321,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":165322,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":165323,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":165324,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":165325,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":165326,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":165327,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":165328,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":165329,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":165330,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":165331,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":165332,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":165333,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":165334,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":165335,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":165336,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":165337,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":165338,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":165339,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":165340,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":165341,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":165342,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":165343,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":165344,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":165345,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":165346,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":165347,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":165348,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":165349,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":165350,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":165351,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":165352,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":165352,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":165353,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":165354,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":165355,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":165356,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":165357,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":165358,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":165359,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":165360,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":165361,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":165362,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":165363,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":165364,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":165365,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":165366,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":165367,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":165368,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":165369,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":165370,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":165371,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":165372,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":165373,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":165374,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"keywords":{"_internalId":165375,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":165376,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"description":{"_internalId":165377,"type":"ref","$ref":"quarto-resource-document-metadata-description","description":"quarto-resource-document-metadata-description"},"category":{"_internalId":165378,"type":"ref","$ref":"quarto-resource-document-metadata-category","description":"quarto-resource-document-metadata-category"},"number-sections":{"_internalId":165379,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":165380,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"reference-doc":{"_internalId":165381,"type":"ref","$ref":"quarto-resource-document-options-reference-doc","description":"quarto-resource-document-options-reference-doc"},"brand":{"_internalId":165382,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":165383,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":165384,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":165385,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":165386,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":165387,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":165388,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":165388,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":165389,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":165390,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"filters":{"_internalId":165391,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":165392,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":165393,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":165394,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":165395,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":165396,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":165397,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":165398,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":165399,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":165400,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":165401,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":165402,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":165403,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"incremental":{"_internalId":165404,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":165405,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":165406,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"toc":{"_internalId":165407,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":165407,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":165408,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":165409,"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,grid,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":165411,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?revealjs([-+].+)?$":{"_internalId":168151,"type":"anyOf","anyOf":[{"_internalId":168149,"type":"object","description":"be an object","properties":{"eval":{"_internalId":167921,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":167922,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":167923,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":167924,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":167925,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":167926,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":167927,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":167928,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":167929,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":167930,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":167931,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":167932,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":167933,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":167934,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":167935,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":167936,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":167937,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":167938,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":167939,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":167940,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":167941,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"order":{"_internalId":167942,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":167943,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":167944,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":167945,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":167946,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":167947,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":167948,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":167949,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":167950,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"comments":{"_internalId":167951,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":167952,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":167953,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":167954,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":167955,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":167956,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":167957,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":167958,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":167959,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":167960,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":167961,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":167962,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":167963,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":167964,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":167965,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":167966,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":167967,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":167968,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":167969,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":167970,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":167971,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":167972,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":167973,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":167974,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":167975,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":167976,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":167977,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":167977,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":167978,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":167979,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":167980,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":167981,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":167982,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":167983,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":167984,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":167985,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":167986,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":167987,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":167988,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":167989,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":167990,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":167991,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":167992,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":167993,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":167994,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":167995,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":167996,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":167997,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":167998,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":167999,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":168000,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":168001,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":168002,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":168003,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":168004,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":168005,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":168006,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"brand-mode":{"_internalId":168007,"type":"ref","$ref":"quarto-resource-document-layout-brand-mode","description":"quarto-resource-document-layout-brand-mode"},"grid":{"_internalId":168008,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"max-width":{"_internalId":168009,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":168010,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":168011,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":168012,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":168013,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"revealjs-url":{"_internalId":168014,"type":"ref","$ref":"quarto-resource-document-library-revealjs-url","description":"quarto-resource-document-library-revealjs-url"},"link-external-icon":{"_internalId":168015,"type":"ref","$ref":"quarto-resource-document-links-link-external-icon","description":"quarto-resource-document-links-link-external-icon"},"link-external-newwindow":{"_internalId":168016,"type":"ref","$ref":"quarto-resource-document-links-link-external-newwindow","description":"quarto-resource-document-links-link-external-newwindow"},"link-external-filter":{"_internalId":168017,"type":"ref","$ref":"quarto-resource-document-links-link-external-filter","description":"quarto-resource-document-links-link-external-filter"},"mermaid":{"_internalId":168018,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":168019,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":168020,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":168021,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":168022,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":168023,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":168024,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":168025,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":168026,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":168027,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":168028,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":168029,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":168030,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":168031,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"document-css":{"_internalId":168032,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":168033,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":168034,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":168035,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":168036,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":168037,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":168038,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":168039,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":168040,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":168041,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":168042,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":168043,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":168043,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":168044,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":168045,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":168046,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":168047,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":168048,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":168049,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":168050,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":168051,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":168052,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":168053,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":168054,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":168055,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":168056,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":168057,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":168058,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":168059,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":168060,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":168061,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":168062,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":168063,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"logo":{"_internalId":168064,"type":"ref","$ref":"quarto-resource-document-reveal-content-logo","description":"quarto-resource-document-reveal-content-logo"},"footer":{"_internalId":168065,"type":"ref","$ref":"quarto-resource-document-reveal-content-footer","description":"quarto-resource-document-reveal-content-footer"},"scrollable":{"_internalId":168066,"type":"ref","$ref":"quarto-resource-document-reveal-content-scrollable","description":"quarto-resource-document-reveal-content-scrollable"},"smaller":{"_internalId":168067,"type":"ref","$ref":"quarto-resource-document-reveal-content-smaller","description":"quarto-resource-document-reveal-content-smaller"},"output-location":{"_internalId":168068,"type":"ref","$ref":"quarto-resource-document-reveal-content-output-location","description":"quarto-resource-document-reveal-content-output-location"},"embedded":{"_internalId":168069,"type":"ref","$ref":"quarto-resource-document-reveal-hidden-embedded","description":"quarto-resource-document-reveal-hidden-embedded"},"display":{"_internalId":168070,"type":"ref","$ref":"quarto-resource-document-reveal-hidden-display","description":"quarto-resource-document-reveal-hidden-display"},"auto-stretch":{"_internalId":168071,"type":"ref","$ref":"quarto-resource-document-reveal-layout-auto-stretch","description":"quarto-resource-document-reveal-layout-auto-stretch"},"width":{"_internalId":168072,"type":"ref","$ref":"quarto-resource-document-reveal-layout-width","description":"quarto-resource-document-reveal-layout-width"},"height":{"_internalId":168073,"type":"ref","$ref":"quarto-resource-document-reveal-layout-height","description":"quarto-resource-document-reveal-layout-height"},"margin":{"_internalId":168074,"type":"ref","$ref":"quarto-resource-document-reveal-layout-margin","description":"quarto-resource-document-reveal-layout-margin"},"min-scale":{"_internalId":168075,"type":"ref","$ref":"quarto-resource-document-reveal-layout-min-scale","description":"quarto-resource-document-reveal-layout-min-scale"},"max-scale":{"_internalId":168076,"type":"ref","$ref":"quarto-resource-document-reveal-layout-max-scale","description":"quarto-resource-document-reveal-layout-max-scale"},"center":{"_internalId":168077,"type":"ref","$ref":"quarto-resource-document-reveal-layout-center","description":"quarto-resource-document-reveal-layout-center"},"disable-layout":{"_internalId":168078,"type":"ref","$ref":"quarto-resource-document-reveal-layout-disable-layout","description":"quarto-resource-document-reveal-layout-disable-layout"},"code-block-height":{"_internalId":168079,"type":"ref","$ref":"quarto-resource-document-reveal-layout-code-block-height","description":"quarto-resource-document-reveal-layout-code-block-height"},"preview-links":{"_internalId":168080,"type":"ref","$ref":"quarto-resource-document-reveal-media-preview-links","description":"quarto-resource-document-reveal-media-preview-links"},"auto-play-media":{"_internalId":168081,"type":"ref","$ref":"quarto-resource-document-reveal-media-auto-play-media","description":"quarto-resource-document-reveal-media-auto-play-media"},"preload-iframes":{"_internalId":168082,"type":"ref","$ref":"quarto-resource-document-reveal-media-preload-iframes","description":"quarto-resource-document-reveal-media-preload-iframes"},"view-distance":{"_internalId":168083,"type":"ref","$ref":"quarto-resource-document-reveal-media-view-distance","description":"quarto-resource-document-reveal-media-view-distance"},"mobile-view-distance":{"_internalId":168084,"type":"ref","$ref":"quarto-resource-document-reveal-media-mobile-view-distance","description":"quarto-resource-document-reveal-media-mobile-view-distance"},"parallax-background-image":{"_internalId":168085,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-image","description":"quarto-resource-document-reveal-media-parallax-background-image"},"parallax-background-size":{"_internalId":168086,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-size","description":"quarto-resource-document-reveal-media-parallax-background-size"},"parallax-background-horizontal":{"_internalId":168087,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-horizontal","description":"quarto-resource-document-reveal-media-parallax-background-horizontal"},"parallax-background-vertical":{"_internalId":168088,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-vertical","description":"quarto-resource-document-reveal-media-parallax-background-vertical"},"progress":{"_internalId":168089,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-progress","description":"quarto-resource-document-reveal-navigation-progress"},"history":{"_internalId":168090,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-history","description":"quarto-resource-document-reveal-navigation-history"},"navigation-mode":{"_internalId":168091,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-navigation-mode","description":"quarto-resource-document-reveal-navigation-navigation-mode"},"touch":{"_internalId":168092,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-touch","description":"quarto-resource-document-reveal-navigation-touch"},"keyboard":{"_internalId":168093,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-keyboard","description":"quarto-resource-document-reveal-navigation-keyboard"},"mouse-wheel":{"_internalId":168094,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-mouse-wheel","description":"quarto-resource-document-reveal-navigation-mouse-wheel"},"hide-inactive-cursor":{"_internalId":168095,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hide-inactive-cursor","description":"quarto-resource-document-reveal-navigation-hide-inactive-cursor"},"hide-cursor-time":{"_internalId":168096,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hide-cursor-time","description":"quarto-resource-document-reveal-navigation-hide-cursor-time"},"loop":{"_internalId":168097,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-loop","description":"quarto-resource-document-reveal-navigation-loop"},"shuffle":{"_internalId":168098,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-shuffle","description":"quarto-resource-document-reveal-navigation-shuffle"},"controls":{"_internalId":168099,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls","description":"quarto-resource-document-reveal-navigation-controls"},"controls-layout":{"_internalId":168100,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-layout","description":"quarto-resource-document-reveal-navigation-controls-layout"},"controls-tutorial":{"_internalId":168101,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-tutorial","description":"quarto-resource-document-reveal-navigation-controls-tutorial"},"controls-back-arrows":{"_internalId":168102,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-back-arrows","description":"quarto-resource-document-reveal-navigation-controls-back-arrows"},"auto-slide":{"_internalId":168103,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide","description":"quarto-resource-document-reveal-navigation-auto-slide"},"auto-slide-stoppable":{"_internalId":168104,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide-stoppable","description":"quarto-resource-document-reveal-navigation-auto-slide-stoppable"},"auto-slide-method":{"_internalId":168105,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide-method","description":"quarto-resource-document-reveal-navigation-auto-slide-method"},"default-timing":{"_internalId":168106,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-default-timing","description":"quarto-resource-document-reveal-navigation-default-timing"},"pause":{"_internalId":168107,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-pause","description":"quarto-resource-document-reveal-navigation-pause"},"help":{"_internalId":168108,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-help","description":"quarto-resource-document-reveal-navigation-help"},"hash":{"_internalId":168109,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hash","description":"quarto-resource-document-reveal-navigation-hash"},"hash-type":{"_internalId":168110,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hash-type","description":"quarto-resource-document-reveal-navigation-hash-type"},"hash-one-based-index":{"_internalId":168111,"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":168112,"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":168113,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-fragment-in-url","description":"quarto-resource-document-reveal-navigation-fragment-in-url"},"slide-tone":{"_internalId":168114,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-slide-tone","description":"quarto-resource-document-reveal-navigation-slide-tone"},"jump-to-slide":{"_internalId":168115,"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":168116,"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":168117,"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":168118,"type":"ref","$ref":"quarto-resource-document-reveal-print-pdf-page-height-offset","description":"quarto-resource-document-reveal-print-pdf-page-height-offset"},"overview":{"_internalId":168119,"type":"ref","$ref":"quarto-resource-document-reveal-tools-overview","description":"quarto-resource-document-reveal-tools-overview"},"menu":{"_internalId":168120,"type":"ref","$ref":"quarto-resource-document-reveal-tools-menu","description":"quarto-resource-document-reveal-tools-menu"},"chalkboard":{"_internalId":168121,"type":"ref","$ref":"quarto-resource-document-reveal-tools-chalkboard","description":"quarto-resource-document-reveal-tools-chalkboard"},"multiplex":{"_internalId":168122,"type":"ref","$ref":"quarto-resource-document-reveal-tools-multiplex","description":"quarto-resource-document-reveal-tools-multiplex"},"scroll-view":{"_internalId":168123,"type":"ref","$ref":"quarto-resource-document-reveal-tools-scroll-view","description":"quarto-resource-document-reveal-tools-scroll-view"},"transition":{"_internalId":168124,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-transition","description":"quarto-resource-document-reveal-transitions-transition"},"transition-speed":{"_internalId":168125,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-transition-speed","description":"quarto-resource-document-reveal-transitions-transition-speed"},"background-transition":{"_internalId":168126,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-background-transition","description":"quarto-resource-document-reveal-transitions-background-transition"},"fragments":{"_internalId":168127,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-fragments","description":"quarto-resource-document-reveal-transitions-fragments"},"auto-animate":{"_internalId":168128,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate","description":"quarto-resource-document-reveal-transitions-auto-animate"},"auto-animate-easing":{"_internalId":168129,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-easing","description":"quarto-resource-document-reveal-transitions-auto-animate-easing"},"auto-animate-duration":{"_internalId":168130,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-duration","description":"quarto-resource-document-reveal-transitions-auto-animate-duration"},"auto-animate-unmatched":{"_internalId":168131,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-unmatched","description":"quarto-resource-document-reveal-transitions-auto-animate-unmatched"},"auto-animate-styles":{"_internalId":168132,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-styles","description":"quarto-resource-document-reveal-transitions-auto-animate-styles"},"incremental":{"_internalId":168133,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":168134,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"slide-number":{"_internalId":168135,"type":"ref","$ref":"quarto-resource-document-slides-slide-number","description":"quarto-resource-document-slides-slide-number"},"show-slide-number":{"_internalId":168136,"type":"ref","$ref":"quarto-resource-document-slides-show-slide-number","description":"quarto-resource-document-slides-show-slide-number"},"title-slide-attributes":{"_internalId":168137,"type":"ref","$ref":"quarto-resource-document-slides-title-slide-attributes","description":"quarto-resource-document-slides-title-slide-attributes"},"title-slide-style":{"_internalId":168138,"type":"ref","$ref":"quarto-resource-document-slides-title-slide-style","description":"quarto-resource-document-slides-title-slide-style"},"center-title-slide":{"_internalId":168139,"type":"ref","$ref":"quarto-resource-document-slides-center-title-slide","description":"quarto-resource-document-slides-center-title-slide"},"show-notes":{"_internalId":168140,"type":"ref","$ref":"quarto-resource-document-slides-show-notes","description":"quarto-resource-document-slides-show-notes"},"rtl":{"_internalId":168141,"type":"ref","$ref":"quarto-resource-document-slides-rtl","description":"quarto-resource-document-slides-rtl"},"df-print":{"_internalId":168142,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":168143,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":168144,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":168145,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":168145,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":168146,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":168147,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"axe":{"_internalId":168148,"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,grid,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":168150,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?rst([-+].+)?$":{"_internalId":170759,"type":"anyOf","anyOf":[{"_internalId":170757,"type":"object","description":"be an object","properties":{"eval":{"_internalId":170660,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":170661,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":170662,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":170663,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":170664,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":170665,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":170666,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":170667,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":170668,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":170669,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":170670,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":170671,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":170672,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":170673,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":170674,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":170675,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":170676,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":170677,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":170678,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":170679,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":170680,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":170681,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":170682,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":170683,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":170684,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":170685,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":170686,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":170687,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":170688,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":170689,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":170690,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":170691,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":170692,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"list-tables":{"_internalId":170693,"type":"ref","$ref":"quarto-resource-document-formatting-list-tables","description":"quarto-resource-document-formatting-list-tables"},"funding":{"_internalId":170694,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":170695,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":170695,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":170696,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":170697,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":170698,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":170699,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":170700,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":170701,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":170702,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":170703,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":170704,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":170705,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":170706,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":170707,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":170708,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":170709,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":170710,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":170711,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":170712,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":170713,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":170714,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":170715,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":170716,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":170717,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":170718,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":170719,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":170720,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":170721,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":170722,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":170723,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":170724,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":170725,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":170726,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":170727,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":170728,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":170729,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":170730,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":170731,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":170732,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":170732,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":170733,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":170734,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":170735,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":170736,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":170737,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":170738,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":170739,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":170740,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":170741,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":170742,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":170743,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":170744,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":170745,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":170746,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":170747,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":170748,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":170749,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":170750,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":170751,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":170752,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":170753,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":170754,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":170755,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":170755,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":170756,"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,grid,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":170758,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?rtf([-+].+)?$":{"_internalId":173367,"type":"anyOf","anyOf":[{"_internalId":173365,"type":"object","description":"be an object","properties":{"eval":{"_internalId":173268,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":173269,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"fig-align":{"_internalId":173270,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"output":{"_internalId":173271,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":173272,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":173273,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":173274,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":173275,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":173276,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":173277,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":173278,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":173279,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":173280,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":173281,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":173282,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":173283,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":173284,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":173285,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":173286,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":173287,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":173288,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":173289,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":173290,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":173291,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":173292,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":173293,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":173294,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":173295,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":173296,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":173297,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":173298,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":173299,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":173300,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":173301,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":173302,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":173303,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":173303,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":173304,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":173305,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":173306,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":173307,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":173308,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":173309,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":173310,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":173311,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":173312,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":173313,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":173314,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":173315,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":173316,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":173317,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":173318,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":173319,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":173320,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":173321,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":173322,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":173323,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":173324,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":173325,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":173326,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":173327,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":173328,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":173329,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":173330,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":173331,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":173332,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":173333,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":173334,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":173335,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":173336,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":173337,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":173338,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":173339,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":173340,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":173340,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":173341,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":173342,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":173343,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":173344,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":173345,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":173346,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":173347,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":173348,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":173349,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":173350,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":173351,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":173352,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":173353,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":173354,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":173355,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":173356,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":173357,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":173358,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":173359,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":173360,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":173361,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":173362,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":173363,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":173363,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":173364,"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,grid,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":173366,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?s5([-+].+)?$":{"_internalId":176025,"type":"anyOf","anyOf":[{"_internalId":176023,"type":"object","description":"be an object","properties":{"eval":{"_internalId":175876,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":175877,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":175878,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":175879,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":175880,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":175881,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":175882,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":175883,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":175884,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":175885,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":175886,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":175887,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":175888,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":175889,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":175890,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":175891,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":175892,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":175893,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":175894,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":175895,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":175896,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"order":{"_internalId":175897,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":175898,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":175899,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":175900,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":175901,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":175902,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":175903,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":175904,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":175905,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"monobackgroundcolor":{"_internalId":175906,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"comments":{"_internalId":175907,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":175908,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":175909,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":175910,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":175911,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":175912,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":175913,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":175914,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":175915,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":175916,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":175917,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":175918,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":175919,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":175920,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":175921,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":175922,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":175923,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":175924,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":175925,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":175926,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":175927,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":175928,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":175929,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":175930,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":175931,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":175932,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":175933,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":175933,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":175934,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":175935,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":175936,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":175937,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":175938,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":175939,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":175940,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":175941,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":175942,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":175943,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":175944,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":175945,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":175946,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":175947,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":175948,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":175949,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":175950,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":175951,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":175952,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":175953,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":175954,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":175955,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":175956,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":175957,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":175958,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":175959,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":175960,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":175961,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":175962,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"grid":{"_internalId":175963,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"max-width":{"_internalId":175964,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":175965,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":175966,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":175967,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":175968,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"s5-url":{"_internalId":175969,"type":"ref","$ref":"quarto-resource-document-library-s5-url","description":"quarto-resource-document-library-s5-url"},"mermaid":{"_internalId":175970,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":175971,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":175972,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":175973,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":175974,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":175975,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":175976,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":175977,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":175978,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":175979,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":175980,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":175981,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":175982,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"document-css":{"_internalId":175983,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":175984,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":175985,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":175986,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":175987,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":175988,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":175989,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":175990,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":175991,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":175992,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":175993,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":175994,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":175994,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":175995,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":175996,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":175997,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":175998,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":175999,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":176000,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":176001,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":176002,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":176003,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":176004,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":176005,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":176006,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":176007,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":176008,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":176009,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":176010,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":176011,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":176012,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":176013,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":176014,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"incremental":{"_internalId":176015,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":176016,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":176017,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":176018,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":176019,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":176020,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":176020,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":176021,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"axe":{"_internalId":176022,"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,grid,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":176024,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?slideous([-+].+)?$":{"_internalId":178683,"type":"anyOf","anyOf":[{"_internalId":178681,"type":"object","description":"be an object","properties":{"eval":{"_internalId":178534,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":178535,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":178536,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":178537,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":178538,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":178539,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":178540,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":178541,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":178542,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":178543,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":178544,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":178545,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":178546,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":178547,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":178548,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":178549,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":178550,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":178551,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":178552,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":178553,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":178554,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"order":{"_internalId":178555,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":178556,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":178557,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":178558,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":178559,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":178560,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":178561,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":178562,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":178563,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"monobackgroundcolor":{"_internalId":178564,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"comments":{"_internalId":178565,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":178566,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":178567,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":178568,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":178569,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":178570,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":178571,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":178572,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":178573,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":178574,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":178575,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":178576,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":178577,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":178578,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":178579,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":178580,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":178581,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":178582,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":178583,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":178584,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":178585,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":178586,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":178587,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":178588,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":178589,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":178590,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":178591,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":178591,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":178592,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":178593,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":178594,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":178595,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":178596,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":178597,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":178598,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":178599,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":178600,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":178601,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":178602,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":178603,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":178604,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":178605,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":178606,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":178607,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":178608,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":178609,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":178610,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":178611,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":178612,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":178613,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":178614,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":178615,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":178616,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":178617,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":178618,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":178619,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":178620,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"grid":{"_internalId":178621,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"max-width":{"_internalId":178622,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":178623,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":178624,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":178625,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":178626,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"slideous-url":{"_internalId":178627,"type":"ref","$ref":"quarto-resource-document-library-slideous-url","description":"quarto-resource-document-library-slideous-url"},"mermaid":{"_internalId":178628,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":178629,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":178630,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":178631,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":178632,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":178633,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":178634,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":178635,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":178636,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":178637,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":178638,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":178639,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":178640,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"document-css":{"_internalId":178641,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":178642,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":178643,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":178644,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":178645,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":178646,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":178647,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":178648,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":178649,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":178650,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":178651,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":178652,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":178652,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":178653,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":178654,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":178655,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":178656,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":178657,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":178658,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":178659,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":178660,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":178661,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":178662,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":178663,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":178664,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":178665,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":178666,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":178667,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":178668,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":178669,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":178670,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":178671,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":178672,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"incremental":{"_internalId":178673,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":178674,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":178675,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":178676,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":178677,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":178678,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":178678,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":178679,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"axe":{"_internalId":178680,"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,grid,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":178682,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?slidy([-+].+)?$":{"_internalId":181341,"type":"anyOf","anyOf":[{"_internalId":181339,"type":"object","description":"be an object","properties":{"eval":{"_internalId":181192,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":181193,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":181194,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":181195,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":181196,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":181197,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":181198,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":181199,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":181200,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":181201,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":181202,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":181203,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":181204,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":181205,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":181206,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":181207,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":181208,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":181209,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":181210,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":181211,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":181212,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"order":{"_internalId":181213,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":181214,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":181215,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":181216,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":181217,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":181218,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":181219,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":181220,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":181221,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"monobackgroundcolor":{"_internalId":181222,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"comments":{"_internalId":181223,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":181224,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":181225,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":181226,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":181227,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":181228,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":181229,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":181230,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":181231,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":181232,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":181233,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":181234,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":181235,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":181236,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":181237,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":181238,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":181239,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":181240,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":181241,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":181242,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":181243,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":181244,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":181245,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":181246,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":181247,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":181248,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":181249,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":181249,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":181250,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":181251,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":181252,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":181253,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":181254,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":181255,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":181256,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":181257,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":181258,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":181259,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":181260,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":181261,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":181262,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":181263,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":181264,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":181265,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":181266,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":181267,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":181268,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":181269,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":181270,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":181271,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":181272,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":181273,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":181274,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":181275,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":181276,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":181277,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":181278,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"grid":{"_internalId":181279,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"max-width":{"_internalId":181280,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":181281,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":181282,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":181283,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":181284,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"slidy-url":{"_internalId":181285,"type":"ref","$ref":"quarto-resource-document-library-slidy-url","description":"quarto-resource-document-library-slidy-url"},"mermaid":{"_internalId":181286,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":181287,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":181288,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":181289,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":181290,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":181291,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":181292,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":181293,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":181294,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":181295,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":181296,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":181297,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":181298,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"document-css":{"_internalId":181299,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":181300,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":181301,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":181302,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":181303,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":181304,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":181305,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":181306,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":181307,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":181308,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":181309,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":181310,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":181310,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":181311,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":181312,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":181313,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":181314,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":181315,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":181316,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":181317,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":181318,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":181319,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":181320,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":181321,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":181322,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":181323,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":181324,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":181325,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":181326,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":181327,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":181328,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":181329,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":181330,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"incremental":{"_internalId":181331,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":181332,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":181333,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":181334,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":181335,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":181336,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":181336,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":181337,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"axe":{"_internalId":181338,"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,grid,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":181340,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?tei([-+].+)?$":{"_internalId":183949,"type":"anyOf","anyOf":[{"_internalId":183947,"type":"object","description":"be an object","properties":{"eval":{"_internalId":183850,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":183851,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":183852,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":183853,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":183854,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":183855,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":183856,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":183857,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":183858,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":183859,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":183860,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":183861,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":183862,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":183863,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":183864,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":183865,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":183866,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":183867,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":183868,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":183869,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":183870,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":183871,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":183872,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":183873,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":183874,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":183875,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":183876,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":183877,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":183878,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":183879,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":183880,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":183881,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":183882,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":183883,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":183884,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":183884,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":183885,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":183886,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":183887,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":183888,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":183889,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":183890,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":183891,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":183892,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":183893,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":183894,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":183895,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":183896,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":183897,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":183898,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":183899,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":183900,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":183901,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":183902,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":183903,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":183904,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":183905,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":183906,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":183907,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":183908,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":183909,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":183910,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":183911,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":183912,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":183913,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":183914,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":183915,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":183916,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":183917,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":183918,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":183919,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":183920,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":183921,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":183922,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":183922,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":183923,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":183924,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":183925,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":183926,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":183927,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":183928,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":183929,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":183930,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":183931,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":183932,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":183933,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":183934,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":183935,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":183936,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":183937,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":183938,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":183939,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":183940,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":183941,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":183942,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":183943,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":183944,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":183945,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":183945,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":183946,"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,grid,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":183948,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?texinfo([-+].+)?$":{"_internalId":186556,"type":"anyOf","anyOf":[{"_internalId":186554,"type":"object","description":"be an object","properties":{"eval":{"_internalId":186458,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":186459,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":186460,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":186461,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":186462,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":186463,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":186464,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":186465,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":186466,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":186467,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":186468,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":186469,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":186470,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":186471,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":186472,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":186473,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":186474,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":186475,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":186476,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":186477,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":186478,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":186479,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":186480,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":186481,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":186482,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":186483,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":186484,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":186485,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":186486,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":186487,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":186488,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":186489,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":186490,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":186491,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":186492,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":186492,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":186493,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":186494,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":186495,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":186496,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":186497,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":186498,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":186499,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":186500,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":186501,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":186502,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":186503,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":186504,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":186505,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":186506,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":186507,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":186508,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":186509,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":186510,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":186511,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":186512,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":186513,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":186514,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":186515,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":186516,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":186517,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":186518,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":186519,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":186520,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":186521,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":186522,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":186523,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":186524,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":186525,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":186526,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":186527,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":186528,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":186529,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":186529,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":186530,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":186531,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":186532,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":186533,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":186534,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":186535,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":186536,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":186537,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":186538,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":186539,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":186540,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":186541,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":186542,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":186543,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":186544,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":186545,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":186546,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":186547,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":186548,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":186549,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":186550,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":186551,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":186552,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":186552,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":186553,"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,grid,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":186555,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?textile([-+].+)?$":{"_internalId":189164,"type":"anyOf","anyOf":[{"_internalId":189162,"type":"object","description":"be an object","properties":{"eval":{"_internalId":189065,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":189066,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":189067,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":189068,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":189069,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":189070,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":189071,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":189072,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":189073,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":189074,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":189075,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":189076,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":189077,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":189078,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":189079,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":189080,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":189081,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":189082,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":189083,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":189084,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":189085,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":189086,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":189087,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":189088,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":189089,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":189090,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":189091,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":189092,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":189093,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":189094,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":189095,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":189096,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":189097,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":189098,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":189099,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":189099,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":189100,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":189101,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":189102,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":189103,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":189104,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":189105,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":189106,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":189107,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":189108,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":189109,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":189110,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":189111,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":189112,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":189113,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":189114,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":189115,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":189116,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":189117,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":189118,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":189119,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":189120,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":189121,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":189122,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":189123,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":189124,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":189125,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":189126,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":189127,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":189128,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":189129,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":189130,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":189131,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":189132,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":189133,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":189134,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":189135,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":189136,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":189136,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":189137,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":189138,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":189139,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":189140,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":189141,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":189142,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":189143,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":189144,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":189145,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":189146,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":189147,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":189148,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":189149,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":189150,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":189151,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":189152,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":189153,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":189154,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":189155,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":189156,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":189157,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":189158,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":189159,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"toc":{"_internalId":189160,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":189160,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":189161,"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,grid,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":189163,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?typst([-+].+)?$":{"_internalId":191787,"type":"anyOf","anyOf":[{"_internalId":191785,"type":"object","description":"be an object","properties":{"eval":{"_internalId":191673,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":191674,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":191675,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":191676,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":191677,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":191678,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":191679,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":191680,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":191681,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":191682,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract-title":{"_internalId":191683,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"order":{"_internalId":191684,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":191685,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":191686,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":191687,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":191688,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":191689,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":191690,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":191691,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":191692,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":191693,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":191694,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":191695,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":191696,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":191697,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":191698,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":191699,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":191700,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":191701,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":191702,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":191703,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":191704,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":191705,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":191706,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"mainfont":{"_internalId":191707,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"fontsize":{"_internalId":191708,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"font-paths":{"_internalId":191709,"type":"ref","$ref":"quarto-resource-document-fonts-font-paths","description":"quarto-resource-document-fonts-font-paths"},"funding":{"_internalId":191710,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":191711,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":191711,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":191712,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":191713,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":191714,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":191715,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":191716,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":191717,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":191718,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":191719,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":191720,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":191721,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":191722,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":191723,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":191724,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":191725,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":191726,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":191727,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":191728,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":191729,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":191730,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":191731,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":191732,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":191733,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":191734,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":191735,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":191736,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":191737,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":191738,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"papersize":{"_internalId":191739,"type":"ref","$ref":"quarto-resource-document-layout-papersize","description":"quarto-resource-document-layout-papersize"},"brand-mode":{"_internalId":191740,"type":"ref","$ref":"quarto-resource-document-layout-brand-mode","description":"quarto-resource-document-layout-brand-mode"},"grid":{"_internalId":191741,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":191742,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"section-numbering":{"_internalId":191743,"type":"ref","$ref":"quarto-resource-document-numbering-section-numbering","description":"quarto-resource-document-numbering-section-numbering"},"shift-heading-level-by":{"_internalId":191744,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"page-numbering":{"_internalId":191745,"type":"ref","$ref":"quarto-resource-document-numbering-page-numbering","description":"quarto-resource-document-numbering-page-numbering"},"brand":{"_internalId":191746,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":191747,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":191748,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":191749,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":191750,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"bibliographystyle":{"_internalId":191751,"type":"ref","$ref":"quarto-resource-document-references-bibliographystyle","description":"quarto-resource-document-references-bibliographystyle"},"citation-abbreviations":{"_internalId":191752,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":191753,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":191753,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":191754,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":191755,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":191756,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":191757,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":191758,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":191759,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":191760,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":191761,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":191762,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":191763,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":191764,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"keep-typ":{"_internalId":191765,"type":"ref","$ref":"quarto-resource-document-render-keep-typ","description":"quarto-resource-document-render-keep-typ"},"extract-media":{"_internalId":191766,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":191767,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":191768,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":191769,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":191770,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":191771,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"html-pre-tag-processing":{"_internalId":191772,"type":"ref","$ref":"quarto-resource-document-render-html-pre-tag-processing","description":"quarto-resource-document-render-html-pre-tag-processing"},"css-property-processing":{"_internalId":191773,"type":"ref","$ref":"quarto-resource-document-render-css-property-processing","description":"quarto-resource-document-render-css-property-processing"},"margin":{"_internalId":191774,"type":"ref","$ref":"quarto-resource-document-reveal-layout-margin","description":"quarto-resource-document-reveal-layout-margin"},"df-print":{"_internalId":191775,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":191776,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"columns":{"_internalId":191777,"type":"ref","$ref":"quarto-resource-document-text-columns","description":"quarto-resource-document-text-columns"},"tab-stop":{"_internalId":191778,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":191779,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":191780,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":191781,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":191781,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-indent":{"_internalId":191782,"type":"ref","$ref":"quarto-resource-document-toc-toc-indent","description":"quarto-resource-document-toc-toc-indent"},"toc-depth":{"_internalId":191783,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"logo":{"_internalId":191784,"type":"ref","$ref":"quarto-resource-document-typst-logo","description":"quarto-resource-document-typst-logo"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,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,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,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","type":"string","pattern":"(?!(^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$|^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_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$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":191786,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?vimdoc([-+].+)?$":{"_internalId":194394,"type":"anyOf","anyOf":[{"_internalId":194392,"type":"object","description":"be an object","properties":{"eval":{"_internalId":194296,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":194297,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":194298,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":194299,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":194300,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":194301,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":194302,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":194303,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":194304,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":194305,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":194306,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":194307,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":194308,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":194309,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":194310,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":194311,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":194312,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":194313,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":194314,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":194315,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":194316,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":194317,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":194318,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":194319,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":194320,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":194321,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":194322,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":194323,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":194324,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":194325,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":194326,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":194327,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":194328,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":194329,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":194330,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":194330,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":194331,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":194332,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":194333,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":194334,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":194335,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":194336,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":194337,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":194338,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":194339,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":194340,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":194341,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":194342,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":194343,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":194344,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":194345,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":194346,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":194347,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":194348,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":194349,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":194350,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":194351,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":194352,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":194353,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":194354,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":194355,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":194356,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":194357,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":194358,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":194359,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":194360,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":194361,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":194362,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":194363,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":194364,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":194365,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":194366,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":194367,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":194367,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":194368,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":194369,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":194370,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":194371,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":194372,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":194373,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":194374,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":194375,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":194376,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":194377,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":194378,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":194379,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":194380,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":194381,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":194382,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":194383,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":194384,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":194385,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":194386,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":194387,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":194388,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":194389,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":194390,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":194390,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":194391,"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,grid,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":194393,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?xml([-+].+)?$":{"_internalId":197001,"type":"anyOf","anyOf":[{"_internalId":196999,"type":"object","description":"be an object","properties":{"eval":{"_internalId":196903,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":196904,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":196905,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":196906,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":196907,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":196908,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":196909,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":196910,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":196911,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":196912,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":196913,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":196914,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":196915,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":196916,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":196917,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":196918,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":196919,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":196920,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":196921,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":196922,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":196923,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":196924,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":196925,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":196926,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":196927,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":196928,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":196929,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":196930,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":196931,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":196932,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":196933,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":196934,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":196935,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":196936,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":196937,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":196937,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":196938,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":196939,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":196940,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":196941,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":196942,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":196943,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":196944,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":196945,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":196946,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":196947,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":196948,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":196949,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":196950,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":196951,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":196952,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":196953,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":196954,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":196955,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":196956,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":196957,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":196958,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":196959,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":196960,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":196961,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":196962,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":196963,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":196964,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":196965,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":196966,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":196967,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":196968,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":196969,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":196970,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":196971,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":196972,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":196973,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":196974,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":196974,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":196975,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":196976,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":196977,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":196978,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":196979,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":196980,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":196981,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":196982,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":196983,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":196984,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":196985,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":196986,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":196987,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":196988,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":196989,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":196990,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":196991,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":196992,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":196993,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":196994,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":196995,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":196996,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":196997,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":196997,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":196998,"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,grid,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":197000,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?xwiki([-+].+)?$":{"_internalId":199608,"type":"anyOf","anyOf":[{"_internalId":199606,"type":"object","description":"be an object","properties":{"eval":{"_internalId":199510,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":199511,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":199512,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":199513,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":199514,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":199515,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":199516,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":199517,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":199518,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":199519,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":199520,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":199521,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":199522,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":199523,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":199524,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":199525,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":199526,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":199527,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":199528,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":199529,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":199530,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":199531,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":199532,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":199533,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":199534,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":199535,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":199536,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":199537,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":199538,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":199539,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":199540,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":199541,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":199542,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":199543,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":199544,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":199544,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":199545,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":199546,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":199547,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":199548,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":199549,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":199550,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":199551,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":199552,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":199553,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":199554,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":199555,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":199556,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":199557,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":199558,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":199559,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":199560,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":199561,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":199562,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":199563,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":199564,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":199565,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":199566,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":199567,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":199568,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":199569,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":199570,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":199571,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":199572,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":199573,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":199574,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":199575,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":199576,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":199577,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":199578,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":199579,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":199580,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":199581,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":199581,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":199582,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":199583,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":199584,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":199585,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":199586,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":199587,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":199588,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":199589,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":199590,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":199591,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":199592,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":199593,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":199594,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":199595,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":199596,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":199597,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":199598,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":199599,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":199600,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":199601,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":199602,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":199603,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":199604,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":199604,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":199605,"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,grid,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":199607,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?zimwiki([-+].+)?$":{"_internalId":202215,"type":"anyOf","anyOf":[{"_internalId":202213,"type":"object","description":"be an object","properties":{"eval":{"_internalId":202117,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":202118,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":202119,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":202120,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":202121,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":202122,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":202123,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":202124,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":202125,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":202126,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":202127,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":202128,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":202129,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":202130,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":202131,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":202132,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":202133,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":202134,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":202135,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":202136,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":202137,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":202138,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":202139,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":202140,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":202141,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":202142,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":202143,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":202144,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":202145,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":202146,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":202147,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":202148,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":202149,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":202150,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":202151,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":202151,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":202152,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":202153,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":202154,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":202155,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":202156,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":202157,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":202158,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":202159,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":202160,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":202161,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":202162,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":202163,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":202164,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":202165,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":202166,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":202167,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":202168,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":202169,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":202170,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":202171,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":202172,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":202173,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":202174,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":202175,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":202176,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":202177,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":202178,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":202179,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":202180,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":202181,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":202182,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":202183,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":202184,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":202185,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":202186,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":202187,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":202188,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":202188,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":202189,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":202190,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":202191,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":202192,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":202193,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":202194,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":202195,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":202196,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":202197,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":202198,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":202199,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":202200,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":202201,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":202202,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":202203,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":202204,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":202205,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":202206,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":202207,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":202208,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":202209,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":202210,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":202211,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":202211,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":202212,"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,grid,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":202214,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?md([-+].+)?$":{"_internalId":204829,"type":"anyOf","anyOf":[{"_internalId":204827,"type":"object","description":"be an object","properties":{"eval":{"_internalId":204724,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":204725,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":204726,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":204727,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":204728,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":204729,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":204730,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":204731,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":204732,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":204733,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":204734,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":204735,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":204736,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":204737,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":204738,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":204739,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":204740,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":204741,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":204742,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":204743,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":204744,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":204745,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":204746,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":204747,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":204748,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":204749,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":204750,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":204751,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":204752,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":204753,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":204754,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":204755,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":204756,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":204757,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":204758,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":204759,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":204759,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":204760,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":204761,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":204762,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":204763,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":204764,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":204765,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":204766,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":204767,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":204768,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":204769,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":204770,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":204771,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":204772,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":204773,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":204774,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":204775,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":204776,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":204777,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":204778,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":204779,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":204780,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":204781,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":204782,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":204783,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":204784,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":204785,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":204786,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":204787,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":204788,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":204789,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":204790,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":204791,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":204792,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":204793,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":204794,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":204795,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":204796,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":204797,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":204798,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":204799,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":204800,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":204800,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":204801,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":204802,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":204803,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":204804,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":204805,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":204806,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":204807,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":204808,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":204809,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":204810,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":204811,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":204812,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":204813,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":204814,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":204815,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":204816,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":204817,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":204818,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":204819,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":204820,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":204821,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":204822,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":204823,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":204824,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":204825,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":204825,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":204826,"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,grid,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":204828,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?hugo([-+].+)?$":{"_internalId":207436,"type":"anyOf","anyOf":[{"_internalId":207434,"type":"object","description":"be an object","properties":{"eval":{"_internalId":207338,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":207339,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":207340,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":207341,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":207342,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":207343,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":207344,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":207345,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":207346,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":207347,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":207348,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":207349,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":207350,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":207351,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":207352,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":207353,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":207354,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":207355,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":207356,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":207357,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":207358,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":207359,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":207360,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":207361,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":207362,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":207363,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":207364,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":207365,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":207366,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":207367,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":207368,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":207369,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":207370,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":207371,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":207372,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":207372,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":207373,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":207374,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":207375,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":207376,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":207377,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":207378,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":207379,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":207380,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":207381,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":207382,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":207383,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":207384,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":207385,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":207386,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":207387,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":207388,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":207389,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":207390,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":207391,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":207392,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":207393,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":207394,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":207395,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":207396,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":207397,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":207398,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":207399,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":207400,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":207401,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":207402,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":207403,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":207404,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":207405,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":207406,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":207407,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":207408,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":207409,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":207409,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":207410,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":207411,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":207412,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":207413,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":207414,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":207415,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":207416,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":207417,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":207418,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":207419,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":207420,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":207421,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":207422,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":207423,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":207424,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":207425,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":207426,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":207427,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":207428,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":207429,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":207430,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":207431,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":207432,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":207432,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":207433,"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,grid,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":207435,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?dashboard([-+].+)?$":{"_internalId":210095,"type":"anyOf","anyOf":[{"_internalId":210093,"type":"object","description":"be an object","properties":{"eval":{"_internalId":209945,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":209946,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":209947,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":209948,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":209949,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":209950,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":209951,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":209952,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":209953,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":209954,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":209955,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":209956,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":209957,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":209958,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":209959,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":209960,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":209961,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":209962,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":209963,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":209964,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":209965,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":209966,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":209967,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":209968,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":209969,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"highlight-style":{"_internalId":209970,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":209971,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":209972,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":209973,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"comments":{"_internalId":209974,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":209975,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":209976,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"logo":{"_internalId":209977,"type":"ref","$ref":"quarto-resource-document-dashboard-logo","description":"quarto-resource-document-dashboard-logo"},"orientation":{"_internalId":209978,"type":"ref","$ref":"quarto-resource-document-dashboard-orientation","description":"quarto-resource-document-dashboard-orientation"},"scrolling":{"_internalId":209979,"type":"ref","$ref":"quarto-resource-document-dashboard-scrolling","description":"quarto-resource-document-dashboard-scrolling"},"expandable":{"_internalId":209980,"type":"ref","$ref":"quarto-resource-document-dashboard-expandable","description":"quarto-resource-document-dashboard-expandable"},"nav-buttons":{"_internalId":209981,"type":"ref","$ref":"quarto-resource-document-dashboard-nav-buttons","description":"quarto-resource-document-dashboard-nav-buttons"},"editor":{"_internalId":209982,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":209983,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":209984,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":209985,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":209986,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":209987,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":209988,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":209989,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":209990,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":209991,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":209992,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":209993,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":209994,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":209995,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":209996,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":209997,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":209998,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":209999,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":210000,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":210001,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":210002,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":210003,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":210004,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":210005,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":210005,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":210006,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":210007,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":210008,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":210009,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":210010,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":210011,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":210012,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":210013,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":210014,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":210015,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":210016,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":210017,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":210018,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":210019,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":210020,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":210021,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":210022,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":210023,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":210024,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":210025,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":210026,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":210027,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":210028,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":210029,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":210030,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":210031,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":210032,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":210033,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":210034,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"grid":{"_internalId":210035,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"max-width":{"_internalId":210036,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":210037,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":210038,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":210039,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":210040,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"mermaid":{"_internalId":210041,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":210042,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":210043,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":210044,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":210045,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":210046,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":210047,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":210048,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":210049,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":210050,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":210051,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":210052,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":210053,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":210054,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"document-css":{"_internalId":210055,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":210056,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":210057,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":210058,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":210059,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":210060,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":210061,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":210062,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":210063,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":210064,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":210065,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":210066,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":210066,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":210067,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":210068,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":210069,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":210070,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":210071,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":210072,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":210073,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":210074,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":210075,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":210076,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":210077,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":210078,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":210079,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":210080,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":210081,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":210082,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":210083,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":210084,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":210085,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":210086,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":210087,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":210088,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":210089,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":210090,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":210090,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":210091,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"axe":{"_internalId":210092,"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,grid,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":210094,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?email([-+].+)?$":{"_internalId":212702,"type":"anyOf","anyOf":[{"_internalId":212700,"type":"object","description":"be an object","properties":{"eval":{"_internalId":212604,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":212605,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":212606,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":212607,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":212608,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":212609,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":212610,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":212611,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":212612,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":212613,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":212614,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":212615,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":212616,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":212617,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":212618,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":212619,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":212620,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":212621,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":212622,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":212623,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":212624,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":212625,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":212626,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":212627,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":212628,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":212629,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":212630,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":212631,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":212632,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":212633,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":212634,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":212635,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":212636,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":212637,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":212638,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":212638,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":212639,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":212640,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":212641,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":212642,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":212643,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":212644,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":212645,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":212646,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":212647,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":212648,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":212649,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":212650,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":212651,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":212652,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":212653,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":212654,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":212655,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":212656,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":212657,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":212658,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":212659,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":212660,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":212661,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":212662,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":212663,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":212664,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":212665,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"grid":{"_internalId":212666,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"number-sections":{"_internalId":212667,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":212668,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":212669,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":212670,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":212671,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":212672,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":212673,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":212674,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":212675,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":212675,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":212676,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":212677,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":212678,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":212679,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":212680,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":212681,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":212682,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":212683,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":212684,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":212685,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":212686,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":212687,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":212688,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":212689,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":212690,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":212691,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":212692,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":212693,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":212694,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":212695,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":212696,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":212697,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":212698,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":212698,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":212699,"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,grid,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":212701,"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":213233,"type":"anyOf","anyOf":[{"type":"null","description":"be the null value","completions":["null"],"exhaustiveCompletions":true},{"_internalId":213232,"type":"allOf","allOf":[{"_internalId":212789,"type":"object","description":"be a Quarto YAML front matter object","properties":{"execute":{"_internalId":5533,"type":"ref","$ref":"front-matter-execute","description":"be a front-matter-execute object"},"format":{"_internalId":212788,"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":213230,"type":"object","description":"be an object","properties":{"eval":{"_internalId":212790,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":212791,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":212792,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":212793,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":212794,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":212795,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":212796,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-env":{"_internalId":212797,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":212798,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"cap-location":{"_internalId":212799,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":212800,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":212801,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":212802,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":212803,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":212804,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":212805,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":212806,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"about":{"_internalId":212807,"type":"ref","$ref":"quarto-resource-document-about-about","description":"quarto-resource-document-about-about"},"title":{"_internalId":212808,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":212809,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":212810,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":212811,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"date-modified":{"_internalId":212812,"type":"ref","$ref":"quarto-resource-document-attributes-date-modified","description":"quarto-resource-document-attributes-date-modified"},"author":{"_internalId":212813,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"affiliation":{"_internalId":212814,"type":"ref","$ref":"quarto-resource-document-attributes-affiliation","description":"quarto-resource-document-attributes-affiliation"},"copyright":{"_internalId":213022,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"article":{"_internalId":212816,"type":"ref","$ref":"quarto-resource-document-attributes-article","description":"quarto-resource-document-attributes-article"},"journal":{"_internalId":212817,"type":"ref","$ref":"quarto-resource-document-attributes-journal","description":"quarto-resource-document-attributes-journal"},"institute":{"_internalId":212818,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"abstract":{"_internalId":212819,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":212820,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"notes":{"_internalId":212821,"type":"ref","$ref":"quarto-resource-document-attributes-notes","description":"quarto-resource-document-attributes-notes"},"tags":{"_internalId":212822,"type":"ref","$ref":"quarto-resource-document-attributes-tags","description":"quarto-resource-document-attributes-tags"},"doi":{"_internalId":212823,"type":"ref","$ref":"quarto-resource-document-attributes-doi","description":"quarto-resource-document-attributes-doi"},"thanks":{"_internalId":212824,"type":"ref","$ref":"quarto-resource-document-attributes-thanks","description":"quarto-resource-document-attributes-thanks"},"order":{"_internalId":212825,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":212826,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":212827,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":212828,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":212829,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-tools":{"_internalId":212830,"type":"ref","$ref":"quarto-resource-document-code-code-tools","description":"quarto-resource-document-code-code-tools"},"code-block-border-left":{"_internalId":212831,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":212832,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"highlight-style":{"_internalId":212833,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":212834,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":212835,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"listings":{"_internalId":212836,"type":"ref","$ref":"quarto-resource-document-code-listings","description":"quarto-resource-document-code-listings"},"indented-code-classes":{"_internalId":212837,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"fontcolor":{"_internalId":212838,"type":"ref","$ref":"quarto-resource-document-colors-fontcolor","description":"quarto-resource-document-colors-fontcolor"},"linkcolor":{"_internalId":212839,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"monobackgroundcolor":{"_internalId":212840,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"backgroundcolor":{"_internalId":212841,"type":"ref","$ref":"quarto-resource-document-colors-backgroundcolor","description":"quarto-resource-document-colors-backgroundcolor"},"filecolor":{"_internalId":212842,"type":"ref","$ref":"quarto-resource-document-colors-filecolor","description":"quarto-resource-document-colors-filecolor"},"citecolor":{"_internalId":212843,"type":"ref","$ref":"quarto-resource-document-colors-citecolor","description":"quarto-resource-document-colors-citecolor"},"urlcolor":{"_internalId":212844,"type":"ref","$ref":"quarto-resource-document-colors-urlcolor","description":"quarto-resource-document-colors-urlcolor"},"toccolor":{"_internalId":212845,"type":"ref","$ref":"quarto-resource-document-colors-toccolor","description":"quarto-resource-document-colors-toccolor"},"colorlinks":{"_internalId":212846,"type":"ref","$ref":"quarto-resource-document-colors-colorlinks","description":"quarto-resource-document-colors-colorlinks"},"contrastcolor":{"_internalId":212847,"type":"ref","$ref":"quarto-resource-document-colors-contrastcolor","description":"quarto-resource-document-colors-contrastcolor"},"comments":{"_internalId":212848,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":212849,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":212850,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"logo":{"_internalId":213229,"type":"ref","$ref":"quarto-resource-document-typst-logo","description":"quarto-resource-document-typst-logo"},"orientation":{"_internalId":212852,"type":"ref","$ref":"quarto-resource-document-dashboard-orientation","description":"quarto-resource-document-dashboard-orientation"},"scrolling":{"_internalId":212853,"type":"ref","$ref":"quarto-resource-document-dashboard-scrolling","description":"quarto-resource-document-dashboard-scrolling"},"expandable":{"_internalId":212854,"type":"ref","$ref":"quarto-resource-document-dashboard-expandable","description":"quarto-resource-document-dashboard-expandable"},"nav-buttons":{"_internalId":212855,"type":"ref","$ref":"quarto-resource-document-dashboard-nav-buttons","description":"quarto-resource-document-dashboard-nav-buttons"},"editor":{"_internalId":212856,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"zotero":{"_internalId":212857,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"identifier":{"_internalId":212858,"type":"ref","$ref":"quarto-resource-document-epub-identifier","description":"quarto-resource-document-epub-identifier"},"creator":{"_internalId":212859,"type":"ref","$ref":"quarto-resource-document-epub-creator","description":"quarto-resource-document-epub-creator"},"contributor":{"_internalId":212860,"type":"ref","$ref":"quarto-resource-document-epub-contributor","description":"quarto-resource-document-epub-contributor"},"subject":{"_internalId":213019,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"type":{"_internalId":212862,"type":"ref","$ref":"quarto-resource-document-epub-type","description":"quarto-resource-document-epub-type"},"relation":{"_internalId":212863,"type":"ref","$ref":"quarto-resource-document-epub-relation","description":"quarto-resource-document-epub-relation"},"coverage":{"_internalId":212864,"type":"ref","$ref":"quarto-resource-document-epub-coverage","description":"quarto-resource-document-epub-coverage"},"rights":{"_internalId":212865,"type":"ref","$ref":"quarto-resource-document-epub-rights","description":"quarto-resource-document-epub-rights"},"belongs-to-collection":{"_internalId":212866,"type":"ref","$ref":"quarto-resource-document-epub-belongs-to-collection","description":"quarto-resource-document-epub-belongs-to-collection"},"group-position":{"_internalId":212867,"type":"ref","$ref":"quarto-resource-document-epub-group-position","description":"quarto-resource-document-epub-group-position"},"page-progression-direction":{"_internalId":212868,"type":"ref","$ref":"quarto-resource-document-epub-page-progression-direction","description":"quarto-resource-document-epub-page-progression-direction"},"ibooks":{"_internalId":212869,"type":"ref","$ref":"quarto-resource-document-epub-ibooks","description":"quarto-resource-document-epub-ibooks"},"epub-metadata":{"_internalId":212870,"type":"ref","$ref":"quarto-resource-document-epub-epub-metadata","description":"quarto-resource-document-epub-epub-metadata"},"epub-subdirectory":{"_internalId":212871,"type":"ref","$ref":"quarto-resource-document-epub-epub-subdirectory","description":"quarto-resource-document-epub-epub-subdirectory"},"epub-fonts":{"_internalId":212872,"type":"ref","$ref":"quarto-resource-document-epub-epub-fonts","description":"quarto-resource-document-epub-epub-fonts"},"epub-chapter-level":{"_internalId":212873,"type":"ref","$ref":"quarto-resource-document-epub-epub-chapter-level","description":"quarto-resource-document-epub-epub-chapter-level"},"epub-cover-image":{"_internalId":212874,"type":"ref","$ref":"quarto-resource-document-epub-epub-cover-image","description":"quarto-resource-document-epub-epub-cover-image"},"epub-title-page":{"_internalId":212875,"type":"ref","$ref":"quarto-resource-document-epub-epub-title-page","description":"quarto-resource-document-epub-epub-title-page"},"engine":{"_internalId":212876,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":212877,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":212878,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":212879,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":212880,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":212881,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":212882,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":212883,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":212884,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":212885,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":212886,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":212887,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":212888,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":212889,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":212890,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":212891,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":212892,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":212893,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"mainfont":{"_internalId":212894,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":212895,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":212896,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"fontenc":{"_internalId":212897,"type":"ref","$ref":"quarto-resource-document-fonts-fontenc","description":"quarto-resource-document-fonts-fontenc"},"fontfamily":{"_internalId":212898,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamily","description":"quarto-resource-document-fonts-fontfamily"},"fontfamilyoptions":{"_internalId":212899,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamilyoptions","description":"quarto-resource-document-fonts-fontfamilyoptions"},"sansfont":{"_internalId":212900,"type":"ref","$ref":"quarto-resource-document-fonts-sansfont","description":"quarto-resource-document-fonts-sansfont"},"mathfont":{"_internalId":212901,"type":"ref","$ref":"quarto-resource-document-fonts-mathfont","description":"quarto-resource-document-fonts-mathfont"},"CJKmainfont":{"_internalId":212902,"type":"ref","$ref":"quarto-resource-document-fonts-CJKmainfont","description":"quarto-resource-document-fonts-CJKmainfont"},"mainfontoptions":{"_internalId":212903,"type":"ref","$ref":"quarto-resource-document-fonts-mainfontoptions","description":"quarto-resource-document-fonts-mainfontoptions"},"sansfontoptions":{"_internalId":212904,"type":"ref","$ref":"quarto-resource-document-fonts-sansfontoptions","description":"quarto-resource-document-fonts-sansfontoptions"},"monofontoptions":{"_internalId":212905,"type":"ref","$ref":"quarto-resource-document-fonts-monofontoptions","description":"quarto-resource-document-fonts-monofontoptions"},"mathfontoptions":{"_internalId":212906,"type":"ref","$ref":"quarto-resource-document-fonts-mathfontoptions","description":"quarto-resource-document-fonts-mathfontoptions"},"font-paths":{"_internalId":212907,"type":"ref","$ref":"quarto-resource-document-fonts-font-paths","description":"quarto-resource-document-fonts-font-paths"},"CJKoptions":{"_internalId":212908,"type":"ref","$ref":"quarto-resource-document-fonts-CJKoptions","description":"quarto-resource-document-fonts-CJKoptions"},"microtypeoptions":{"_internalId":212909,"type":"ref","$ref":"quarto-resource-document-fonts-microtypeoptions","description":"quarto-resource-document-fonts-microtypeoptions"},"pointsize":{"_internalId":212910,"type":"ref","$ref":"quarto-resource-document-fonts-pointsize","description":"quarto-resource-document-fonts-pointsize"},"lineheight":{"_internalId":212911,"type":"ref","$ref":"quarto-resource-document-fonts-lineheight","description":"quarto-resource-document-fonts-lineheight"},"linestretch":{"_internalId":212912,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"interlinespace":{"_internalId":212913,"type":"ref","$ref":"quarto-resource-document-fonts-interlinespace","description":"quarto-resource-document-fonts-interlinespace"},"linkstyle":{"_internalId":212914,"type":"ref","$ref":"quarto-resource-document-fonts-linkstyle","description":"quarto-resource-document-fonts-linkstyle"},"whitespace":{"_internalId":212915,"type":"ref","$ref":"quarto-resource-document-fonts-whitespace","description":"quarto-resource-document-fonts-whitespace"},"footnotes-hover":{"_internalId":212916,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"links-as-notes":{"_internalId":212917,"type":"ref","$ref":"quarto-resource-document-footnotes-links-as-notes","description":"quarto-resource-document-footnotes-links-as-notes"},"reference-location":{"_internalId":212918,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"indenting":{"_internalId":212919,"type":"ref","$ref":"quarto-resource-document-formatting-indenting","description":"quarto-resource-document-formatting-indenting"},"adjusting":{"_internalId":212920,"type":"ref","$ref":"quarto-resource-document-formatting-adjusting","description":"quarto-resource-document-formatting-adjusting"},"hyphenate":{"_internalId":212921,"type":"ref","$ref":"quarto-resource-document-formatting-hyphenate","description":"quarto-resource-document-formatting-hyphenate"},"list-tables":{"_internalId":212922,"type":"ref","$ref":"quarto-resource-document-formatting-list-tables","description":"quarto-resource-document-formatting-list-tables"},"split-level":{"_internalId":212923,"type":"ref","$ref":"quarto-resource-document-formatting-split-level","description":"quarto-resource-document-formatting-split-level"},"funding":{"_internalId":212924,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":212925,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":212925,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":212926,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":212927,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":212928,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":212929,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":212930,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":212931,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":212932,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":212933,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":212934,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":212935,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":212936,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":212937,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":212938,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":212939,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"track-changes":{"_internalId":212940,"type":"ref","$ref":"quarto-resource-document-hidden-track-changes","description":"quarto-resource-document-hidden-track-changes"},"keep-source":{"_internalId":212941,"type":"ref","$ref":"quarto-resource-document-hidden-keep-source","description":"quarto-resource-document-hidden-keep-source"},"keep-hidden":{"_internalId":212942,"type":"ref","$ref":"quarto-resource-document-hidden-keep-hidden","description":"quarto-resource-document-hidden-keep-hidden"},"prefer-html":{"_internalId":212943,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":212944,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":212945,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":212946,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":212947,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":212948,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":212949,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":212950,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":212951,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":212952,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"headertext":{"_internalId":212953,"type":"ref","$ref":"quarto-resource-document-includes-headertext","description":"quarto-resource-document-includes-headertext"},"footertext":{"_internalId":212954,"type":"ref","$ref":"quarto-resource-document-includes-footertext","description":"quarto-resource-document-includes-footertext"},"includesource":{"_internalId":212955,"type":"ref","$ref":"quarto-resource-document-includes-includesource","description":"quarto-resource-document-includes-includesource"},"footer":{"_internalId":213127,"type":"ref","$ref":"quarto-resource-document-reveal-content-footer","description":"quarto-resource-document-reveal-content-footer"},"header":{"_internalId":212957,"type":"ref","$ref":"quarto-resource-document-includes-header","description":"quarto-resource-document-includes-header"},"metadata-file":{"_internalId":212958,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":212959,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":212960,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":212961,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"shorthands":{"_internalId":212962,"type":"ref","$ref":"quarto-resource-document-language-shorthands","description":"quarto-resource-document-language-shorthands"},"dir":{"_internalId":212963,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"latex-auto-mk":{"_internalId":212964,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-mk","description":"quarto-resource-document-latexmk-latex-auto-mk"},"latex-auto-install":{"_internalId":212965,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-install","description":"quarto-resource-document-latexmk-latex-auto-install"},"latex-min-runs":{"_internalId":212966,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-min-runs","description":"quarto-resource-document-latexmk-latex-min-runs"},"latex-max-runs":{"_internalId":212967,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-max-runs","description":"quarto-resource-document-latexmk-latex-max-runs"},"latex-clean":{"_internalId":212968,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-clean","description":"quarto-resource-document-latexmk-latex-clean"},"latex-makeindex":{"_internalId":212969,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex","description":"quarto-resource-document-latexmk-latex-makeindex"},"latex-makeindex-opts":{"_internalId":212970,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex-opts","description":"quarto-resource-document-latexmk-latex-makeindex-opts"},"latex-tlmgr-opts":{"_internalId":212971,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tlmgr-opts","description":"quarto-resource-document-latexmk-latex-tlmgr-opts"},"latex-output-dir":{"_internalId":212972,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-output-dir","description":"quarto-resource-document-latexmk-latex-output-dir"},"latex-tinytex":{"_internalId":212973,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tinytex","description":"quarto-resource-document-latexmk-latex-tinytex"},"latex-input-paths":{"_internalId":212974,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-input-paths","description":"quarto-resource-document-latexmk-latex-input-paths"},"documentclass":{"_internalId":212975,"type":"ref","$ref":"quarto-resource-document-layout-documentclass","description":"quarto-resource-document-layout-documentclass"},"classoption":{"_internalId":212976,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"pagestyle":{"_internalId":212977,"type":"ref","$ref":"quarto-resource-document-layout-pagestyle","description":"quarto-resource-document-layout-pagestyle"},"papersize":{"_internalId":212978,"type":"ref","$ref":"quarto-resource-document-layout-papersize","description":"quarto-resource-document-layout-papersize"},"brand-mode":{"_internalId":212979,"type":"ref","$ref":"quarto-resource-document-layout-brand-mode","description":"quarto-resource-document-layout-brand-mode"},"layout":{"_internalId":212980,"type":"ref","$ref":"quarto-resource-document-layout-layout","description":"quarto-resource-document-layout-layout"},"page-layout":{"_internalId":212981,"type":"ref","$ref":"quarto-resource-document-layout-page-layout","description":"quarto-resource-document-layout-page-layout"},"page-width":{"_internalId":212982,"type":"ref","$ref":"quarto-resource-document-layout-page-width","description":"quarto-resource-document-layout-page-width"},"grid":{"_internalId":212983,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"appendix-style":{"_internalId":212984,"type":"ref","$ref":"quarto-resource-document-layout-appendix-style","description":"quarto-resource-document-layout-appendix-style"},"appendix-cite-as":{"_internalId":212985,"type":"ref","$ref":"quarto-resource-document-layout-appendix-cite-as","description":"quarto-resource-document-layout-appendix-cite-as"},"title-block-style":{"_internalId":212986,"type":"ref","$ref":"quarto-resource-document-layout-title-block-style","description":"quarto-resource-document-layout-title-block-style"},"title-block-banner":{"_internalId":212987,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner","description":"quarto-resource-document-layout-title-block-banner"},"title-block-banner-color":{"_internalId":212988,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner-color","description":"quarto-resource-document-layout-title-block-banner-color"},"title-block-categories":{"_internalId":212989,"type":"ref","$ref":"quarto-resource-document-layout-title-block-categories","description":"quarto-resource-document-layout-title-block-categories"},"max-width":{"_internalId":212990,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":212991,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":212992,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":212993,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":212994,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"geometry":{"_internalId":212995,"type":"ref","$ref":"quarto-resource-document-layout-geometry","description":"quarto-resource-document-layout-geometry"},"hyperrefoptions":{"_internalId":212996,"type":"ref","$ref":"quarto-resource-document-layout-hyperrefoptions","description":"quarto-resource-document-layout-hyperrefoptions"},"indent":{"_internalId":212997,"type":"ref","$ref":"quarto-resource-document-layout-indent","description":"quarto-resource-document-layout-indent"},"block-headings":{"_internalId":212998,"type":"ref","$ref":"quarto-resource-document-layout-block-headings","description":"quarto-resource-document-layout-block-headings"},"revealjs-url":{"_internalId":212999,"type":"ref","$ref":"quarto-resource-document-library-revealjs-url","description":"quarto-resource-document-library-revealjs-url"},"s5-url":{"_internalId":213000,"type":"ref","$ref":"quarto-resource-document-library-s5-url","description":"quarto-resource-document-library-s5-url"},"slidy-url":{"_internalId":213001,"type":"ref","$ref":"quarto-resource-document-library-slidy-url","description":"quarto-resource-document-library-slidy-url"},"slideous-url":{"_internalId":213002,"type":"ref","$ref":"quarto-resource-document-library-slideous-url","description":"quarto-resource-document-library-slideous-url"},"lightbox":{"_internalId":213003,"type":"ref","$ref":"quarto-resource-document-lightbox-lightbox","description":"quarto-resource-document-lightbox-lightbox"},"link-external-icon":{"_internalId":213004,"type":"ref","$ref":"quarto-resource-document-links-link-external-icon","description":"quarto-resource-document-links-link-external-icon"},"link-external-newwindow":{"_internalId":213005,"type":"ref","$ref":"quarto-resource-document-links-link-external-newwindow","description":"quarto-resource-document-links-link-external-newwindow"},"link-external-filter":{"_internalId":213006,"type":"ref","$ref":"quarto-resource-document-links-link-external-filter","description":"quarto-resource-document-links-link-external-filter"},"format-links":{"_internalId":213007,"type":"ref","$ref":"quarto-resource-document-links-format-links","description":"quarto-resource-document-links-format-links"},"notebook-links":{"_internalId":213008,"type":"ref","$ref":"quarto-resource-document-links-notebook-links","description":"quarto-resource-document-links-notebook-links"},"other-links":{"_internalId":213009,"type":"ref","$ref":"quarto-resource-document-links-other-links","description":"quarto-resource-document-links-other-links"},"code-links":{"_internalId":213010,"type":"ref","$ref":"quarto-resource-document-links-code-links","description":"quarto-resource-document-links-code-links"},"notebook-subarticles":{"_internalId":213011,"type":"ref","$ref":"quarto-resource-document-links-notebook-subarticles","description":"quarto-resource-document-links-notebook-subarticles"},"notebook-view":{"_internalId":213012,"type":"ref","$ref":"quarto-resource-document-links-notebook-view","description":"quarto-resource-document-links-notebook-view"},"notebook-view-style":{"_internalId":213013,"type":"ref","$ref":"quarto-resource-document-links-notebook-view-style","description":"quarto-resource-document-links-notebook-view-style"},"notebook-preview-options":{"_internalId":213014,"type":"ref","$ref":"quarto-resource-document-links-notebook-preview-options","description":"quarto-resource-document-links-notebook-preview-options"},"canonical-url":{"_internalId":213015,"type":"ref","$ref":"quarto-resource-document-links-canonical-url","description":"quarto-resource-document-links-canonical-url"},"listing":{"_internalId":213016,"type":"ref","$ref":"quarto-resource-document-listing-listing","description":"quarto-resource-document-listing-listing"},"mermaid":{"_internalId":213017,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":213018,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"description":{"_internalId":213020,"type":"ref","$ref":"quarto-resource-document-metadata-description","description":"quarto-resource-document-metadata-description"},"category":{"_internalId":213021,"type":"ref","$ref":"quarto-resource-document-metadata-category","description":"quarto-resource-document-metadata-category"},"license":{"_internalId":213023,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"title-meta":{"_internalId":213024,"type":"ref","$ref":"quarto-resource-document-metadata-title-meta","description":"quarto-resource-document-metadata-title-meta"},"pagetitle":{"_internalId":213025,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":213026,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":213027,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":213028,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":213029,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":213030,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":213031,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"secnumdepth":{"_internalId":213032,"type":"ref","$ref":"quarto-resource-document-numbering-secnumdepth","description":"quarto-resource-document-numbering-secnumdepth"},"number-offset":{"_internalId":213033,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"section-numbering":{"_internalId":213034,"type":"ref","$ref":"quarto-resource-document-numbering-section-numbering","description":"quarto-resource-document-numbering-section-numbering"},"shift-heading-level-by":{"_internalId":213035,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"page-numbering":{"_internalId":213036,"type":"ref","$ref":"quarto-resource-document-numbering-page-numbering","description":"quarto-resource-document-numbering-page-numbering"},"pagenumbering":{"_internalId":213037,"type":"ref","$ref":"quarto-resource-document-numbering-pagenumbering","description":"quarto-resource-document-numbering-pagenumbering"},"top-level-division":{"_internalId":213038,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"ojs-engine":{"_internalId":213039,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"reference-doc":{"_internalId":213040,"type":"ref","$ref":"quarto-resource-document-options-reference-doc","description":"quarto-resource-document-options-reference-doc"},"brand":{"_internalId":213041,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":213042,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"body-classes":{"_internalId":213043,"type":"ref","$ref":"quarto-resource-document-options-body-classes","description":"quarto-resource-document-options-body-classes"},"minimal":{"_internalId":213044,"type":"ref","$ref":"quarto-resource-document-options-minimal","description":"quarto-resource-document-options-minimal"},"document-css":{"_internalId":213045,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":213046,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"anchor-sections":{"_internalId":213047,"type":"ref","$ref":"quarto-resource-document-options-anchor-sections","description":"quarto-resource-document-options-anchor-sections"},"tabsets":{"_internalId":213048,"type":"ref","$ref":"quarto-resource-document-options-tabsets","description":"quarto-resource-document-options-tabsets"},"smooth-scroll":{"_internalId":213049,"type":"ref","$ref":"quarto-resource-document-options-smooth-scroll","description":"quarto-resource-document-options-smooth-scroll"},"respect-user-color-scheme":{"_internalId":213050,"type":"ref","$ref":"quarto-resource-document-options-respect-user-color-scheme","description":"quarto-resource-document-options-respect-user-color-scheme"},"html-math-method":{"_internalId":213051,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"section-divs":{"_internalId":213052,"type":"ref","$ref":"quarto-resource-document-options-section-divs","description":"quarto-resource-document-options-section-divs"},"identifier-prefix":{"_internalId":213053,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":213054,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":213055,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"pdf-engine":{"_internalId":213056,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":213057,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":213058,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"beamerarticle":{"_internalId":213059,"type":"ref","$ref":"quarto-resource-document-options-beamerarticle","description":"quarto-resource-document-options-beamerarticle"},"beameroption":{"_internalId":213060,"type":"ref","$ref":"quarto-resource-document-options-beameroption","description":"quarto-resource-document-options-beameroption"},"aspectratio":{"_internalId":213061,"type":"ref","$ref":"quarto-resource-document-options-aspectratio","description":"quarto-resource-document-options-aspectratio"},"titlegraphic":{"_internalId":213063,"type":"ref","$ref":"quarto-resource-document-options-titlegraphic","description":"quarto-resource-document-options-titlegraphic"},"navigation":{"_internalId":213064,"type":"ref","$ref":"quarto-resource-document-options-navigation","description":"quarto-resource-document-options-navigation"},"section-titles":{"_internalId":213065,"type":"ref","$ref":"quarto-resource-document-options-section-titles","description":"quarto-resource-document-options-section-titles"},"colortheme":{"_internalId":213066,"type":"ref","$ref":"quarto-resource-document-options-colortheme","description":"quarto-resource-document-options-colortheme"},"colorthemeoptions":{"_internalId":213067,"type":"ref","$ref":"quarto-resource-document-options-colorthemeoptions","description":"quarto-resource-document-options-colorthemeoptions"},"fonttheme":{"_internalId":213068,"type":"ref","$ref":"quarto-resource-document-options-fonttheme","description":"quarto-resource-document-options-fonttheme"},"fontthemeoptions":{"_internalId":213069,"type":"ref","$ref":"quarto-resource-document-options-fontthemeoptions","description":"quarto-resource-document-options-fontthemeoptions"},"innertheme":{"_internalId":213070,"type":"ref","$ref":"quarto-resource-document-options-innertheme","description":"quarto-resource-document-options-innertheme"},"innerthemeoptions":{"_internalId":213071,"type":"ref","$ref":"quarto-resource-document-options-innerthemeoptions","description":"quarto-resource-document-options-innerthemeoptions"},"outertheme":{"_internalId":213072,"type":"ref","$ref":"quarto-resource-document-options-outertheme","description":"quarto-resource-document-options-outertheme"},"outerthemeoptions":{"_internalId":213073,"type":"ref","$ref":"quarto-resource-document-options-outerthemeoptions","description":"quarto-resource-document-options-outerthemeoptions"},"themeoptions":{"_internalId":213074,"type":"ref","$ref":"quarto-resource-document-options-themeoptions","description":"quarto-resource-document-options-themeoptions"},"section":{"_internalId":213075,"type":"ref","$ref":"quarto-resource-document-options-section","description":"quarto-resource-document-options-section"},"variant":{"_internalId":213076,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":213077,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"ipynb-output":{"_internalId":213078,"type":"ref","$ref":"quarto-resource-document-options-ipynb-output","description":"quarto-resource-document-options-ipynb-output"},"quarto-required":{"_internalId":213079,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":213080,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"pdfa":{"_internalId":213081,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfa","description":"quarto-resource-document-pdfa-pdfa"},"pdfaiccprofile":{"_internalId":213082,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfaiccprofile","description":"quarto-resource-document-pdfa-pdfaiccprofile"},"pdfaintent":{"_internalId":213083,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfaintent","description":"quarto-resource-document-pdfa-pdfaintent"},"bibliography":{"_internalId":213084,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":213085,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":213086,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citation-location":{"_internalId":213087,"type":"ref","$ref":"quarto-resource-document-references-citation-location","description":"quarto-resource-document-references-citation-location"},"cite-method":{"_internalId":213088,"type":"ref","$ref":"quarto-resource-document-references-cite-method","description":"quarto-resource-document-references-cite-method"},"citeproc":{"_internalId":213089,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"biblatexoptions":{"_internalId":213090,"type":"ref","$ref":"quarto-resource-document-references-biblatexoptions","description":"quarto-resource-document-references-biblatexoptions"},"natbiboptions":{"_internalId":213091,"type":"ref","$ref":"quarto-resource-document-references-natbiboptions","description":"quarto-resource-document-references-natbiboptions"},"biblio-style":{"_internalId":213092,"type":"ref","$ref":"quarto-resource-document-references-biblio-style","description":"quarto-resource-document-references-biblio-style"},"bibliographystyle":{"_internalId":213093,"type":"ref","$ref":"quarto-resource-document-references-bibliographystyle","description":"quarto-resource-document-references-bibliographystyle"},"biblio-title":{"_internalId":213094,"type":"ref","$ref":"quarto-resource-document-references-biblio-title","description":"quarto-resource-document-references-biblio-title"},"biblio-config":{"_internalId":213095,"type":"ref","$ref":"quarto-resource-document-references-biblio-config","description":"quarto-resource-document-references-biblio-config"},"citation-abbreviations":{"_internalId":213096,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"link-citations":{"_internalId":213097,"type":"ref","$ref":"quarto-resource-document-references-link-citations","description":"quarto-resource-document-references-link-citations"},"link-bibliography":{"_internalId":213098,"type":"ref","$ref":"quarto-resource-document-references-link-bibliography","description":"quarto-resource-document-references-link-bibliography"},"notes-after-punctuation":{"_internalId":213099,"type":"ref","$ref":"quarto-resource-document-references-notes-after-punctuation","description":"quarto-resource-document-references-notes-after-punctuation"},"from":{"_internalId":213100,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":213100,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":213101,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":213102,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":213103,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":213104,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":213105,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":213106,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":213107,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":213108,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":213109,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":213110,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":213111,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":213112,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":213113,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":213114,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"keep-typ":{"_internalId":213115,"type":"ref","$ref":"quarto-resource-document-render-keep-typ","description":"quarto-resource-document-render-keep-typ"},"keep-tex":{"_internalId":213116,"type":"ref","$ref":"quarto-resource-document-render-keep-tex","description":"quarto-resource-document-render-keep-tex"},"extract-media":{"_internalId":213117,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":213118,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":213119,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":213120,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":213121,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":213122,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"html-pre-tag-processing":{"_internalId":213123,"type":"ref","$ref":"quarto-resource-document-render-html-pre-tag-processing","description":"quarto-resource-document-render-html-pre-tag-processing"},"css-property-processing":{"_internalId":213124,"type":"ref","$ref":"quarto-resource-document-render-css-property-processing","description":"quarto-resource-document-render-css-property-processing"},"use-rsvg-convert":{"_internalId":213125,"type":"ref","$ref":"quarto-resource-document-render-use-rsvg-convert","description":"quarto-resource-document-render-use-rsvg-convert"},"scrollable":{"_internalId":213128,"type":"ref","$ref":"quarto-resource-document-reveal-content-scrollable","description":"quarto-resource-document-reveal-content-scrollable"},"smaller":{"_internalId":213129,"type":"ref","$ref":"quarto-resource-document-reveal-content-smaller","description":"quarto-resource-document-reveal-content-smaller"},"output-location":{"_internalId":213130,"type":"ref","$ref":"quarto-resource-document-reveal-content-output-location","description":"quarto-resource-document-reveal-content-output-location"},"embedded":{"_internalId":213131,"type":"ref","$ref":"quarto-resource-document-reveal-hidden-embedded","description":"quarto-resource-document-reveal-hidden-embedded"},"display":{"_internalId":213132,"type":"ref","$ref":"quarto-resource-document-reveal-hidden-display","description":"quarto-resource-document-reveal-hidden-display"},"auto-stretch":{"_internalId":213133,"type":"ref","$ref":"quarto-resource-document-reveal-layout-auto-stretch","description":"quarto-resource-document-reveal-layout-auto-stretch"},"width":{"_internalId":213134,"type":"ref","$ref":"quarto-resource-document-reveal-layout-width","description":"quarto-resource-document-reveal-layout-width"},"height":{"_internalId":213135,"type":"ref","$ref":"quarto-resource-document-reveal-layout-height","description":"quarto-resource-document-reveal-layout-height"},"margin":{"_internalId":213136,"type":"ref","$ref":"quarto-resource-document-reveal-layout-margin","description":"quarto-resource-document-reveal-layout-margin"},"min-scale":{"_internalId":213137,"type":"ref","$ref":"quarto-resource-document-reveal-layout-min-scale","description":"quarto-resource-document-reveal-layout-min-scale"},"max-scale":{"_internalId":213138,"type":"ref","$ref":"quarto-resource-document-reveal-layout-max-scale","description":"quarto-resource-document-reveal-layout-max-scale"},"center":{"_internalId":213139,"type":"ref","$ref":"quarto-resource-document-reveal-layout-center","description":"quarto-resource-document-reveal-layout-center"},"disable-layout":{"_internalId":213140,"type":"ref","$ref":"quarto-resource-document-reveal-layout-disable-layout","description":"quarto-resource-document-reveal-layout-disable-layout"},"code-block-height":{"_internalId":213141,"type":"ref","$ref":"quarto-resource-document-reveal-layout-code-block-height","description":"quarto-resource-document-reveal-layout-code-block-height"},"preview-links":{"_internalId":213142,"type":"ref","$ref":"quarto-resource-document-reveal-media-preview-links","description":"quarto-resource-document-reveal-media-preview-links"},"auto-play-media":{"_internalId":213143,"type":"ref","$ref":"quarto-resource-document-reveal-media-auto-play-media","description":"quarto-resource-document-reveal-media-auto-play-media"},"preload-iframes":{"_internalId":213144,"type":"ref","$ref":"quarto-resource-document-reveal-media-preload-iframes","description":"quarto-resource-document-reveal-media-preload-iframes"},"view-distance":{"_internalId":213145,"type":"ref","$ref":"quarto-resource-document-reveal-media-view-distance","description":"quarto-resource-document-reveal-media-view-distance"},"mobile-view-distance":{"_internalId":213146,"type":"ref","$ref":"quarto-resource-document-reveal-media-mobile-view-distance","description":"quarto-resource-document-reveal-media-mobile-view-distance"},"parallax-background-image":{"_internalId":213147,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-image","description":"quarto-resource-document-reveal-media-parallax-background-image"},"parallax-background-size":{"_internalId":213148,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-size","description":"quarto-resource-document-reveal-media-parallax-background-size"},"parallax-background-horizontal":{"_internalId":213149,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-horizontal","description":"quarto-resource-document-reveal-media-parallax-background-horizontal"},"parallax-background-vertical":{"_internalId":213150,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-vertical","description":"quarto-resource-document-reveal-media-parallax-background-vertical"},"progress":{"_internalId":213151,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-progress","description":"quarto-resource-document-reveal-navigation-progress"},"history":{"_internalId":213152,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-history","description":"quarto-resource-document-reveal-navigation-history"},"navigation-mode":{"_internalId":213153,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-navigation-mode","description":"quarto-resource-document-reveal-navigation-navigation-mode"},"touch":{"_internalId":213154,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-touch","description":"quarto-resource-document-reveal-navigation-touch"},"keyboard":{"_internalId":213155,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-keyboard","description":"quarto-resource-document-reveal-navigation-keyboard"},"mouse-wheel":{"_internalId":213156,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-mouse-wheel","description":"quarto-resource-document-reveal-navigation-mouse-wheel"},"hide-inactive-cursor":{"_internalId":213157,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hide-inactive-cursor","description":"quarto-resource-document-reveal-navigation-hide-inactive-cursor"},"hide-cursor-time":{"_internalId":213158,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hide-cursor-time","description":"quarto-resource-document-reveal-navigation-hide-cursor-time"},"loop":{"_internalId":213159,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-loop","description":"quarto-resource-document-reveal-navigation-loop"},"shuffle":{"_internalId":213160,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-shuffle","description":"quarto-resource-document-reveal-navigation-shuffle"},"controls":{"_internalId":213161,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls","description":"quarto-resource-document-reveal-navigation-controls"},"controls-layout":{"_internalId":213162,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-layout","description":"quarto-resource-document-reveal-navigation-controls-layout"},"controls-tutorial":{"_internalId":213163,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-tutorial","description":"quarto-resource-document-reveal-navigation-controls-tutorial"},"controls-back-arrows":{"_internalId":213164,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-back-arrows","description":"quarto-resource-document-reveal-navigation-controls-back-arrows"},"auto-slide":{"_internalId":213165,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide","description":"quarto-resource-document-reveal-navigation-auto-slide"},"auto-slide-stoppable":{"_internalId":213166,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide-stoppable","description":"quarto-resource-document-reveal-navigation-auto-slide-stoppable"},"auto-slide-method":{"_internalId":213167,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide-method","description":"quarto-resource-document-reveal-navigation-auto-slide-method"},"default-timing":{"_internalId":213168,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-default-timing","description":"quarto-resource-document-reveal-navigation-default-timing"},"pause":{"_internalId":213169,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-pause","description":"quarto-resource-document-reveal-navigation-pause"},"help":{"_internalId":213170,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-help","description":"quarto-resource-document-reveal-navigation-help"},"hash":{"_internalId":213171,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hash","description":"quarto-resource-document-reveal-navigation-hash"},"hash-type":{"_internalId":213172,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hash-type","description":"quarto-resource-document-reveal-navigation-hash-type"},"hash-one-based-index":{"_internalId":213173,"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":213174,"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":213175,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-fragment-in-url","description":"quarto-resource-document-reveal-navigation-fragment-in-url"},"slide-tone":{"_internalId":213176,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-slide-tone","description":"quarto-resource-document-reveal-navigation-slide-tone"},"jump-to-slide":{"_internalId":213177,"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":213178,"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":213179,"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":213180,"type":"ref","$ref":"quarto-resource-document-reveal-print-pdf-page-height-offset","description":"quarto-resource-document-reveal-print-pdf-page-height-offset"},"overview":{"_internalId":213181,"type":"ref","$ref":"quarto-resource-document-reveal-tools-overview","description":"quarto-resource-document-reveal-tools-overview"},"menu":{"_internalId":213182,"type":"ref","$ref":"quarto-resource-document-reveal-tools-menu","description":"quarto-resource-document-reveal-tools-menu"},"chalkboard":{"_internalId":213183,"type":"ref","$ref":"quarto-resource-document-reveal-tools-chalkboard","description":"quarto-resource-document-reveal-tools-chalkboard"},"multiplex":{"_internalId":213184,"type":"ref","$ref":"quarto-resource-document-reveal-tools-multiplex","description":"quarto-resource-document-reveal-tools-multiplex"},"scroll-view":{"_internalId":213185,"type":"ref","$ref":"quarto-resource-document-reveal-tools-scroll-view","description":"quarto-resource-document-reveal-tools-scroll-view"},"transition":{"_internalId":213186,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-transition","description":"quarto-resource-document-reveal-transitions-transition"},"transition-speed":{"_internalId":213187,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-transition-speed","description":"quarto-resource-document-reveal-transitions-transition-speed"},"background-transition":{"_internalId":213188,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-background-transition","description":"quarto-resource-document-reveal-transitions-background-transition"},"fragments":{"_internalId":213189,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-fragments","description":"quarto-resource-document-reveal-transitions-fragments"},"auto-animate":{"_internalId":213190,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate","description":"quarto-resource-document-reveal-transitions-auto-animate"},"auto-animate-easing":{"_internalId":213191,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-easing","description":"quarto-resource-document-reveal-transitions-auto-animate-easing"},"auto-animate-duration":{"_internalId":213192,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-duration","description":"quarto-resource-document-reveal-transitions-auto-animate-duration"},"auto-animate-unmatched":{"_internalId":213193,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-unmatched","description":"quarto-resource-document-reveal-transitions-auto-animate-unmatched"},"auto-animate-styles":{"_internalId":213194,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-styles","description":"quarto-resource-document-reveal-transitions-auto-animate-styles"},"incremental":{"_internalId":213195,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":213196,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"slide-number":{"_internalId":213197,"type":"ref","$ref":"quarto-resource-document-slides-slide-number","description":"quarto-resource-document-slides-slide-number"},"show-slide-number":{"_internalId":213198,"type":"ref","$ref":"quarto-resource-document-slides-show-slide-number","description":"quarto-resource-document-slides-show-slide-number"},"title-slide-attributes":{"_internalId":213199,"type":"ref","$ref":"quarto-resource-document-slides-title-slide-attributes","description":"quarto-resource-document-slides-title-slide-attributes"},"title-slide-style":{"_internalId":213200,"type":"ref","$ref":"quarto-resource-document-slides-title-slide-style","description":"quarto-resource-document-slides-title-slide-style"},"center-title-slide":{"_internalId":213201,"type":"ref","$ref":"quarto-resource-document-slides-center-title-slide","description":"quarto-resource-document-slides-center-title-slide"},"show-notes":{"_internalId":213202,"type":"ref","$ref":"quarto-resource-document-slides-show-notes","description":"quarto-resource-document-slides-show-notes"},"rtl":{"_internalId":213203,"type":"ref","$ref":"quarto-resource-document-slides-rtl","description":"quarto-resource-document-slides-rtl"},"df-print":{"_internalId":213204,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":213205,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"columns":{"_internalId":213206,"type":"ref","$ref":"quarto-resource-document-text-columns","description":"quarto-resource-document-text-columns"},"tab-stop":{"_internalId":213207,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":213208,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":213209,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":213210,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":213211,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":213212,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":213212,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-indent":{"_internalId":213213,"type":"ref","$ref":"quarto-resource-document-toc-toc-indent","description":"quarto-resource-document-toc-toc-indent"},"toc-depth":{"_internalId":213214,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-location":{"_internalId":213215,"type":"ref","$ref":"quarto-resource-document-toc-toc-location","description":"quarto-resource-document-toc-toc-location"},"toc-title":{"_internalId":213216,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"toc-expand":{"_internalId":213217,"type":"ref","$ref":"quarto-resource-document-toc-toc-expand","description":"quarto-resource-document-toc-toc-expand"},"lof":{"_internalId":213218,"type":"ref","$ref":"quarto-resource-document-toc-lof","description":"quarto-resource-document-toc-lof"},"lot":{"_internalId":213219,"type":"ref","$ref":"quarto-resource-document-toc-lot","description":"quarto-resource-document-toc-lot"},"search":{"_internalId":213220,"type":"ref","$ref":"quarto-resource-document-website-search","description":"quarto-resource-document-website-search"},"repo-actions":{"_internalId":213221,"type":"ref","$ref":"quarto-resource-document-website-repo-actions","description":"quarto-resource-document-website-repo-actions"},"aliases":{"_internalId":213222,"type":"ref","$ref":"quarto-resource-document-website-aliases","description":"quarto-resource-document-website-aliases"},"image":{"_internalId":213223,"type":"ref","$ref":"quarto-resource-document-website-image","description":"quarto-resource-document-website-image"},"image-height":{"_internalId":213224,"type":"ref","$ref":"quarto-resource-document-website-image-height","description":"quarto-resource-document-website-image-height"},"image-width":{"_internalId":213225,"type":"ref","$ref":"quarto-resource-document-website-image-width","description":"quarto-resource-document-website-image-width"},"image-alt":{"_internalId":213226,"type":"ref","$ref":"quarto-resource-document-website-image-alt","description":"quarto-resource-document-website-image-alt"},"image-lazy-loading":{"_internalId":213227,"type":"ref","$ref":"quarto-resource-document-website-image-lazy-loading","description":"quarto-resource-document-website-image-lazy-loading"},"axe":{"_internalId":213228,"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,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","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$))","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":5533,"type":"ref","$ref":"front-matter-execute","description":"be a front-matter-execute object"},{"_internalId":213231,"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":213327,"type":"object","description":"be an object","properties":{"project":{"_internalId":213299,"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":213247,"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":213250,"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":213262,"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":213261,"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":213267,"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":213272,"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":213280,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":213279,"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":213288,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":213287,"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":213298,"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":213297,"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":213302,"type":"ref","$ref":"base-website","description":"be base-website","documentation":"Book configuration.","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":"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":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":"Displays a ‘reader-mode’ tool which allows users to hide the sidebar\nand table of contents when viewing a page."},{"_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":"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":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":"Storage options for Google Analytics data"},"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":"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":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":"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":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":"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":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":"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":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 type of announcement. Affects the appearance of the\nannouncement."},"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":"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":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":"The style of the consent banner that is displayed"},"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":"Whether to use a dark or light appearance for the consent banner\n(light or dark)."},"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":"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":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":"Type of search UI (overlay or textbox)"},"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":"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":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":"Whether to include search result parents when displaying items in\nsearch results (when possible)."},{"_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":"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":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":"Use external Algolia search index"},"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":"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":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":"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":688,"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":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":"Specification of image that will be displayed to the left of the\ntitle."},"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":"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":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":"List of items for the left side of the navbar."},"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":"List of items for the right side of the navbar."},"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":"The position of the collapsed navbar toggle when in responsive\nmode"},"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":"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":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":"The sidebar title. Uses the project title if none is specified."},"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":"Specification of image that will be displayed in the sidebar."},"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":"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":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":"List of items for the sidebar"},"contents":{"_internalId":780,"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":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":"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":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":"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":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":"Markdown to place below sidebar content (text or file path)"},"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":"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":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":"The sidebar title. Uses the project title if none is specified."},"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":"Specification of image that will be displayed in the sidebar."},"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":"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":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":"List of items for the sidebar"},"contents":{"_internalId":780,"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":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":"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":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":"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":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":"Markdown to place below sidebar content (text or file path)"},"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":"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":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":"Markdown to place below margin content (text or file path)"},"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":"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":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":"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":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":"Publish twitter card metadata"},"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":"A list of other links to appear below the TOC."},"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":"A list of code links to appear with this document."},"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":"A list of input documents that should be treated as drafts"},"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":"How to handle drafts that are encountered."},"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 subtitle"},"subtitle":{"type":"string","description":"be a string","tags":{"description":"Book subtitle"},"documentation":"Author or authors of the book"},"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":"Book publication date"},{"_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":"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":932,"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":937,"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":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":"Download buttons for other formats to include on navbar or sidebar\n(one or more of pdf, epub, and\ndocx)"},{"_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":"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":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":"Custom tools for navbar or sidebar"},{"_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":"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":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":"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":1410,"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":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":"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":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":"Chapter number (e.g. chapter number in a book; track number on an\nalbum)."},"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":"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":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":"Editor of the collection holding the item (e.g. the series editor for\na book).","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":"Number identifying the collection holding the item (e.g. the series\nnumber for a book)"},"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":"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":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":"Composer (e.g. of a musical score)."},"composer":{"_internalId":1464,"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":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":"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":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":"Curator of an exhibit or collection (e.g. in a museum)."},"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":"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":1482,"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":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":"The editor of the item."},"editor":{"_internalId":1494,"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":1497,"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":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":"Date the event related to an item took place."},"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":"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":1514,"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":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":"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":1526,"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":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":"A value which uniquely identifies this item."},"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":"Illustrator (e.g. of a children’s book or graphic novel)."},"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":"Interviewer (e.g. of an interview)."},"interviewer":{"_internalId":1542,"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":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":"Date the item was issued/published."},"issued":{"_internalId":1560,"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":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":"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":1576,"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":1581,"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":1584,"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":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":"Organizer of an event (e.g. organizer of a workshop or\nconference)."},"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":"The original creator of a work."},"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":"Issue date of the original version."},"original-date":{"_internalId":1596,"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":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":"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":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":"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":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":"Number of the specific part of the item being cited (e.g. part 2 of a\njournal article)."},"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":"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":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":"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":1636,"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":1639,"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":1648,"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":1651,"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":1660,"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":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":"Creator of a series (e.g. of a television series)."},"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":"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":1673,"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":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":"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":1681,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Translator"},"documentation":"The type\nof the item."},"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":"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":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":"Volume number of the item (e.g. “2” when citing volume 2 of a book)\nor the container holding the item."},"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":"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":213312,"type":"ref","$ref":"manuscript-schema","description":"be manuscript-schema","documentation":"internal-schema-hack","tags":{"description":"Manuscript configuration"}},"type":{"_internalId":213315,"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":213326,"type":"array","description":"be an array of values, where each element must be at least one of: a string, external-engine","items":{"_internalId":213325,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":213324,"type":"ref","$ref":"external-engine","description":"be external-engine"}],"description":"be at least one of: a string, external-engine"},"documentation":"Schema to use for numbering pages, e.g. 1 or\ni, or false to omit page numbering.","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":213358,"type":"allOf","allOf":[{"_internalId":213356,"type":"object","description":"be a Quarto YAML front matter object","properties":{"execute":{"_internalId":213353,"type":"ref","$ref":"front-matter-execute","description":"be a front-matter-execute object"},"format":{"_internalId":213354,"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":213355,"type":"ref","$ref":"project-profile","description":"Specify a default profile and profile groups"}},"patternProperties":{}},{"_internalId":213353,"type":"ref","$ref":"front-matter-execute","description":"be a front-matter-execute object"},{"_internalId":213357,"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":213328,"type":"ref","$ref":"project-config-fields","description":"be an object"}],"description":"be a project configuration object","$id":"project-config"},"engine-markdown":{"_internalId":213406,"type":"object","description":"be an object","properties":{"label":{"_internalId":213360,"type":"ref","$ref":"quarto-resource-cell-attributes-label","description":"quarto-resource-cell-attributes-label"},"classes":{"_internalId":213361,"type":"ref","$ref":"quarto-resource-cell-attributes-classes","description":"quarto-resource-cell-attributes-classes"},"renderings":{"_internalId":213362,"type":"ref","$ref":"quarto-resource-cell-attributes-renderings","description":"quarto-resource-cell-attributes-renderings"},"title":{"_internalId":213363,"type":"ref","$ref":"quarto-resource-cell-card-title","description":"quarto-resource-cell-card-title"},"padding":{"_internalId":213364,"type":"ref","$ref":"quarto-resource-cell-card-padding","description":"quarto-resource-cell-card-padding"},"expandable":{"_internalId":213365,"type":"ref","$ref":"quarto-resource-cell-card-expandable","description":"quarto-resource-cell-card-expandable"},"width":{"_internalId":213366,"type":"ref","$ref":"quarto-resource-cell-card-width","description":"quarto-resource-cell-card-width"},"height":{"_internalId":213367,"type":"ref","$ref":"quarto-resource-cell-card-height","description":"quarto-resource-cell-card-height"},"content":{"_internalId":213368,"type":"ref","$ref":"quarto-resource-cell-card-content","description":"quarto-resource-cell-card-content"},"color":{"_internalId":213369,"type":"ref","$ref":"quarto-resource-cell-card-color","description":"quarto-resource-cell-card-color"},"eval":{"_internalId":213370,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":213371,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":213372,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":213373,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":213374,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":213375,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"lst-label":{"_internalId":213376,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-label","description":"quarto-resource-cell-codeoutput-lst-label"},"lst-cap":{"_internalId":213377,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-cap","description":"quarto-resource-cell-codeoutput-lst-cap"},"fig-cap":{"_internalId":213378,"type":"ref","$ref":"quarto-resource-cell-figure-fig-cap","description":"quarto-resource-cell-figure-fig-cap"},"fig-subcap":{"_internalId":213379,"type":"ref","$ref":"quarto-resource-cell-figure-fig-subcap","description":"quarto-resource-cell-figure-fig-subcap"},"fig-link":{"_internalId":213380,"type":"ref","$ref":"quarto-resource-cell-figure-fig-link","description":"quarto-resource-cell-figure-fig-link"},"fig-align":{"_internalId":213381,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-alt":{"_internalId":213382,"type":"ref","$ref":"quarto-resource-cell-figure-fig-alt","description":"quarto-resource-cell-figure-fig-alt"},"fig-env":{"_internalId":213383,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":213384,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"fig-scap":{"_internalId":213385,"type":"ref","$ref":"quarto-resource-cell-figure-fig-scap","description":"quarto-resource-cell-figure-fig-scap"},"layout":{"_internalId":213386,"type":"ref","$ref":"quarto-resource-cell-layout-layout","description":"quarto-resource-cell-layout-layout"},"layout-ncol":{"_internalId":213387,"type":"ref","$ref":"quarto-resource-cell-layout-layout-ncol","description":"quarto-resource-cell-layout-layout-ncol"},"layout-nrow":{"_internalId":213388,"type":"ref","$ref":"quarto-resource-cell-layout-layout-nrow","description":"quarto-resource-cell-layout-layout-nrow"},"layout-align":{"_internalId":213389,"type":"ref","$ref":"quarto-resource-cell-layout-layout-align","description":"quarto-resource-cell-layout-layout-align"},"layout-valign":{"_internalId":213390,"type":"ref","$ref":"quarto-resource-cell-layout-layout-valign","description":"quarto-resource-cell-layout-layout-valign"},"column":{"_internalId":213391,"type":"ref","$ref":"quarto-resource-cell-pagelayout-column","description":"quarto-resource-cell-pagelayout-column"},"fig-column":{"_internalId":213392,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-column","description":"quarto-resource-cell-pagelayout-fig-column"},"tbl-column":{"_internalId":213393,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-column","description":"quarto-resource-cell-pagelayout-tbl-column"},"cap-location":{"_internalId":213394,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":213395,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":213396,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-cap":{"_internalId":213397,"type":"ref","$ref":"quarto-resource-cell-table-tbl-cap","description":"quarto-resource-cell-table-tbl-cap"},"tbl-subcap":{"_internalId":213398,"type":"ref","$ref":"quarto-resource-cell-table-tbl-subcap","description":"quarto-resource-cell-table-tbl-subcap"},"html-table-processing":{"_internalId":213399,"type":"ref","$ref":"quarto-resource-cell-table-html-table-processing","description":"quarto-resource-cell-table-html-table-processing"},"output":{"_internalId":213400,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":213401,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":213402,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":213403,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"panel":{"_internalId":213404,"type":"ref","$ref":"quarto-resource-cell-textoutput-panel","description":"quarto-resource-cell-textoutput-panel"},"output-location":{"_internalId":213405,"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":213501,"type":"object","description":"be an object","properties":{"label":{"_internalId":213408,"type":"ref","$ref":"quarto-resource-cell-attributes-label","description":"quarto-resource-cell-attributes-label"},"classes":{"_internalId":213409,"type":"ref","$ref":"quarto-resource-cell-attributes-classes","description":"quarto-resource-cell-attributes-classes"},"renderings":{"_internalId":213410,"type":"ref","$ref":"quarto-resource-cell-attributes-renderings","description":"quarto-resource-cell-attributes-renderings"},"cache":{"_internalId":213411,"type":"ref","$ref":"quarto-resource-cell-cache-cache","description":"quarto-resource-cell-cache-cache"},"cache-path":{"_internalId":213412,"type":"ref","$ref":"quarto-resource-cell-cache-cache-path","description":"quarto-resource-cell-cache-cache-path"},"cache-vars":{"_internalId":213413,"type":"ref","$ref":"quarto-resource-cell-cache-cache-vars","description":"quarto-resource-cell-cache-cache-vars"},"cache-globals":{"_internalId":213414,"type":"ref","$ref":"quarto-resource-cell-cache-cache-globals","description":"quarto-resource-cell-cache-cache-globals"},"cache-lazy":{"_internalId":213415,"type":"ref","$ref":"quarto-resource-cell-cache-cache-lazy","description":"quarto-resource-cell-cache-cache-lazy"},"cache-rebuild":{"_internalId":213416,"type":"ref","$ref":"quarto-resource-cell-cache-cache-rebuild","description":"quarto-resource-cell-cache-cache-rebuild"},"cache-comments":{"_internalId":213417,"type":"ref","$ref":"quarto-resource-cell-cache-cache-comments","description":"quarto-resource-cell-cache-cache-comments"},"dependson":{"_internalId":213418,"type":"ref","$ref":"quarto-resource-cell-cache-dependson","description":"quarto-resource-cell-cache-dependson"},"autodep":{"_internalId":213419,"type":"ref","$ref":"quarto-resource-cell-cache-autodep","description":"quarto-resource-cell-cache-autodep"},"title":{"_internalId":213420,"type":"ref","$ref":"quarto-resource-cell-card-title","description":"quarto-resource-cell-card-title"},"padding":{"_internalId":213421,"type":"ref","$ref":"quarto-resource-cell-card-padding","description":"quarto-resource-cell-card-padding"},"expandable":{"_internalId":213422,"type":"ref","$ref":"quarto-resource-cell-card-expandable","description":"quarto-resource-cell-card-expandable"},"width":{"_internalId":213423,"type":"ref","$ref":"quarto-resource-cell-card-width","description":"quarto-resource-cell-card-width"},"height":{"_internalId":213424,"type":"ref","$ref":"quarto-resource-cell-card-height","description":"quarto-resource-cell-card-height"},"content":{"_internalId":213425,"type":"ref","$ref":"quarto-resource-cell-card-content","description":"quarto-resource-cell-card-content"},"color":{"_internalId":213426,"type":"ref","$ref":"quarto-resource-cell-card-color","description":"quarto-resource-cell-card-color"},"eval":{"_internalId":213427,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":213428,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":213429,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":213430,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":213431,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":213432,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"lst-label":{"_internalId":213433,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-label","description":"quarto-resource-cell-codeoutput-lst-label"},"lst-cap":{"_internalId":213434,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-cap","description":"quarto-resource-cell-codeoutput-lst-cap"},"tidy":{"_internalId":213435,"type":"ref","$ref":"quarto-resource-cell-codeoutput-tidy","description":"quarto-resource-cell-codeoutput-tidy"},"tidy-opts":{"_internalId":213436,"type":"ref","$ref":"quarto-resource-cell-codeoutput-tidy-opts","description":"quarto-resource-cell-codeoutput-tidy-opts"},"collapse":{"_internalId":213437,"type":"ref","$ref":"quarto-resource-cell-codeoutput-collapse","description":"quarto-resource-cell-codeoutput-collapse"},"prompt":{"_internalId":213438,"type":"ref","$ref":"quarto-resource-cell-codeoutput-prompt","description":"quarto-resource-cell-codeoutput-prompt"},"highlight":{"_internalId":213439,"type":"ref","$ref":"quarto-resource-cell-codeoutput-highlight","description":"quarto-resource-cell-codeoutput-highlight"},"class-source":{"_internalId":213440,"type":"ref","$ref":"quarto-resource-cell-codeoutput-class-source","description":"quarto-resource-cell-codeoutput-class-source"},"attr-source":{"_internalId":213441,"type":"ref","$ref":"quarto-resource-cell-codeoutput-attr-source","description":"quarto-resource-cell-codeoutput-attr-source"},"fig-width":{"_internalId":213442,"type":"ref","$ref":"quarto-resource-cell-figure-fig-width","description":"quarto-resource-cell-figure-fig-width"},"fig-height":{"_internalId":213443,"type":"ref","$ref":"quarto-resource-cell-figure-fig-height","description":"quarto-resource-cell-figure-fig-height"},"fig-cap":{"_internalId":213444,"type":"ref","$ref":"quarto-resource-cell-figure-fig-cap","description":"quarto-resource-cell-figure-fig-cap"},"fig-subcap":{"_internalId":213445,"type":"ref","$ref":"quarto-resource-cell-figure-fig-subcap","description":"quarto-resource-cell-figure-fig-subcap"},"fig-link":{"_internalId":213446,"type":"ref","$ref":"quarto-resource-cell-figure-fig-link","description":"quarto-resource-cell-figure-fig-link"},"fig-align":{"_internalId":213447,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-alt":{"_internalId":213448,"type":"ref","$ref":"quarto-resource-cell-figure-fig-alt","description":"quarto-resource-cell-figure-fig-alt"},"fig-env":{"_internalId":213449,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":213450,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"fig-scap":{"_internalId":213451,"type":"ref","$ref":"quarto-resource-cell-figure-fig-scap","description":"quarto-resource-cell-figure-fig-scap"},"fig-format":{"_internalId":213452,"type":"ref","$ref":"quarto-resource-cell-figure-fig-format","description":"quarto-resource-cell-figure-fig-format"},"fig-dpi":{"_internalId":213453,"type":"ref","$ref":"quarto-resource-cell-figure-fig-dpi","description":"quarto-resource-cell-figure-fig-dpi"},"fig-asp":{"_internalId":213454,"type":"ref","$ref":"quarto-resource-cell-figure-fig-asp","description":"quarto-resource-cell-figure-fig-asp"},"out-width":{"_internalId":213455,"type":"ref","$ref":"quarto-resource-cell-figure-out-width","description":"quarto-resource-cell-figure-out-width"},"out-height":{"_internalId":213456,"type":"ref","$ref":"quarto-resource-cell-figure-out-height","description":"quarto-resource-cell-figure-out-height"},"fig-keep":{"_internalId":213457,"type":"ref","$ref":"quarto-resource-cell-figure-fig-keep","description":"quarto-resource-cell-figure-fig-keep"},"fig-show":{"_internalId":213458,"type":"ref","$ref":"quarto-resource-cell-figure-fig-show","description":"quarto-resource-cell-figure-fig-show"},"out-extra":{"_internalId":213459,"type":"ref","$ref":"quarto-resource-cell-figure-out-extra","description":"quarto-resource-cell-figure-out-extra"},"external":{"_internalId":213460,"type":"ref","$ref":"quarto-resource-cell-figure-external","description":"quarto-resource-cell-figure-external"},"sanitize":{"_internalId":213461,"type":"ref","$ref":"quarto-resource-cell-figure-sanitize","description":"quarto-resource-cell-figure-sanitize"},"interval":{"_internalId":213462,"type":"ref","$ref":"quarto-resource-cell-figure-interval","description":"quarto-resource-cell-figure-interval"},"aniopts":{"_internalId":213463,"type":"ref","$ref":"quarto-resource-cell-figure-aniopts","description":"quarto-resource-cell-figure-aniopts"},"animation-hook":{"_internalId":213464,"type":"ref","$ref":"quarto-resource-cell-figure-animation-hook","description":"quarto-resource-cell-figure-animation-hook"},"child":{"_internalId":213465,"type":"ref","$ref":"quarto-resource-cell-include-child","description":"quarto-resource-cell-include-child"},"file":{"_internalId":213466,"type":"ref","$ref":"quarto-resource-cell-include-file","description":"quarto-resource-cell-include-file"},"code":{"_internalId":213467,"type":"ref","$ref":"quarto-resource-cell-include-code","description":"quarto-resource-cell-include-code"},"purl":{"_internalId":213468,"type":"ref","$ref":"quarto-resource-cell-include-purl","description":"quarto-resource-cell-include-purl"},"layout":{"_internalId":213469,"type":"ref","$ref":"quarto-resource-cell-layout-layout","description":"quarto-resource-cell-layout-layout"},"layout-ncol":{"_internalId":213470,"type":"ref","$ref":"quarto-resource-cell-layout-layout-ncol","description":"quarto-resource-cell-layout-layout-ncol"},"layout-nrow":{"_internalId":213471,"type":"ref","$ref":"quarto-resource-cell-layout-layout-nrow","description":"quarto-resource-cell-layout-layout-nrow"},"layout-align":{"_internalId":213472,"type":"ref","$ref":"quarto-resource-cell-layout-layout-align","description":"quarto-resource-cell-layout-layout-align"},"layout-valign":{"_internalId":213473,"type":"ref","$ref":"quarto-resource-cell-layout-layout-valign","description":"quarto-resource-cell-layout-layout-valign"},"column":{"_internalId":213474,"type":"ref","$ref":"quarto-resource-cell-pagelayout-column","description":"quarto-resource-cell-pagelayout-column"},"fig-column":{"_internalId":213475,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-column","description":"quarto-resource-cell-pagelayout-fig-column"},"tbl-column":{"_internalId":213476,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-column","description":"quarto-resource-cell-pagelayout-tbl-column"},"cap-location":{"_internalId":213477,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":213478,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":213479,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-cap":{"_internalId":213480,"type":"ref","$ref":"quarto-resource-cell-table-tbl-cap","description":"quarto-resource-cell-table-tbl-cap"},"tbl-subcap":{"_internalId":213481,"type":"ref","$ref":"quarto-resource-cell-table-tbl-subcap","description":"quarto-resource-cell-table-tbl-subcap"},"tbl-colwidths":{"_internalId":213482,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"html-table-processing":{"_internalId":213483,"type":"ref","$ref":"quarto-resource-cell-table-html-table-processing","description":"quarto-resource-cell-table-html-table-processing"},"output":{"_internalId":213484,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":213485,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":213486,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":213487,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"panel":{"_internalId":213488,"type":"ref","$ref":"quarto-resource-cell-textoutput-panel","description":"quarto-resource-cell-textoutput-panel"},"output-location":{"_internalId":213489,"type":"ref","$ref":"quarto-resource-cell-textoutput-output-location","description":"quarto-resource-cell-textoutput-output-location"},"message":{"_internalId":213490,"type":"ref","$ref":"quarto-resource-cell-textoutput-message","description":"quarto-resource-cell-textoutput-message"},"results":{"_internalId":213491,"type":"ref","$ref":"quarto-resource-cell-textoutput-results","description":"quarto-resource-cell-textoutput-results"},"comment":{"_internalId":213492,"type":"ref","$ref":"quarto-resource-cell-textoutput-comment","description":"quarto-resource-cell-textoutput-comment"},"class-output":{"_internalId":213493,"type":"ref","$ref":"quarto-resource-cell-textoutput-class-output","description":"quarto-resource-cell-textoutput-class-output"},"attr-output":{"_internalId":213494,"type":"ref","$ref":"quarto-resource-cell-textoutput-attr-output","description":"quarto-resource-cell-textoutput-attr-output"},"class-warning":{"_internalId":213495,"type":"ref","$ref":"quarto-resource-cell-textoutput-class-warning","description":"quarto-resource-cell-textoutput-class-warning"},"attr-warning":{"_internalId":213496,"type":"ref","$ref":"quarto-resource-cell-textoutput-attr-warning","description":"quarto-resource-cell-textoutput-attr-warning"},"class-message":{"_internalId":213497,"type":"ref","$ref":"quarto-resource-cell-textoutput-class-message","description":"quarto-resource-cell-textoutput-class-message"},"attr-message":{"_internalId":213498,"type":"ref","$ref":"quarto-resource-cell-textoutput-attr-message","description":"quarto-resource-cell-textoutput-attr-message"},"class-error":{"_internalId":213499,"type":"ref","$ref":"quarto-resource-cell-textoutput-class-error","description":"quarto-resource-cell-textoutput-class-error"},"attr-error":{"_internalId":213500,"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":213554,"type":"object","description":"be an object","properties":{"label":{"_internalId":213503,"type":"ref","$ref":"quarto-resource-cell-attributes-label","description":"quarto-resource-cell-attributes-label"},"classes":{"_internalId":213504,"type":"ref","$ref":"quarto-resource-cell-attributes-classes","description":"quarto-resource-cell-attributes-classes"},"renderings":{"_internalId":213505,"type":"ref","$ref":"quarto-resource-cell-attributes-renderings","description":"quarto-resource-cell-attributes-renderings"},"tags":{"_internalId":213506,"type":"ref","$ref":"quarto-resource-cell-attributes-tags","description":"quarto-resource-cell-attributes-tags"},"id":{"_internalId":213507,"type":"ref","$ref":"quarto-resource-cell-attributes-id","description":"quarto-resource-cell-attributes-id"},"export":{"_internalId":213508,"type":"ref","$ref":"quarto-resource-cell-attributes-export","description":"quarto-resource-cell-attributes-export"},"title":{"_internalId":213509,"type":"ref","$ref":"quarto-resource-cell-card-title","description":"quarto-resource-cell-card-title"},"padding":{"_internalId":213510,"type":"ref","$ref":"quarto-resource-cell-card-padding","description":"quarto-resource-cell-card-padding"},"expandable":{"_internalId":213511,"type":"ref","$ref":"quarto-resource-cell-card-expandable","description":"quarto-resource-cell-card-expandable"},"width":{"_internalId":213512,"type":"ref","$ref":"quarto-resource-cell-card-width","description":"quarto-resource-cell-card-width"},"height":{"_internalId":213513,"type":"ref","$ref":"quarto-resource-cell-card-height","description":"quarto-resource-cell-card-height"},"context":{"_internalId":213514,"type":"ref","$ref":"quarto-resource-cell-card-context","description":"quarto-resource-cell-card-context"},"content":{"_internalId":213515,"type":"ref","$ref":"quarto-resource-cell-card-content","description":"quarto-resource-cell-card-content"},"color":{"_internalId":213516,"type":"ref","$ref":"quarto-resource-cell-card-color","description":"quarto-resource-cell-card-color"},"eval":{"_internalId":213517,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":213518,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":213519,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":213520,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":213521,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":213522,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"lst-label":{"_internalId":213523,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-label","description":"quarto-resource-cell-codeoutput-lst-label"},"lst-cap":{"_internalId":213524,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-cap","description":"quarto-resource-cell-codeoutput-lst-cap"},"fig-cap":{"_internalId":213525,"type":"ref","$ref":"quarto-resource-cell-figure-fig-cap","description":"quarto-resource-cell-figure-fig-cap"},"fig-subcap":{"_internalId":213526,"type":"ref","$ref":"quarto-resource-cell-figure-fig-subcap","description":"quarto-resource-cell-figure-fig-subcap"},"fig-link":{"_internalId":213527,"type":"ref","$ref":"quarto-resource-cell-figure-fig-link","description":"quarto-resource-cell-figure-fig-link"},"fig-align":{"_internalId":213528,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-alt":{"_internalId":213529,"type":"ref","$ref":"quarto-resource-cell-figure-fig-alt","description":"quarto-resource-cell-figure-fig-alt"},"fig-env":{"_internalId":213530,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":213531,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"fig-scap":{"_internalId":213532,"type":"ref","$ref":"quarto-resource-cell-figure-fig-scap","description":"quarto-resource-cell-figure-fig-scap"},"layout":{"_internalId":213533,"type":"ref","$ref":"quarto-resource-cell-layout-layout","description":"quarto-resource-cell-layout-layout"},"layout-ncol":{"_internalId":213534,"type":"ref","$ref":"quarto-resource-cell-layout-layout-ncol","description":"quarto-resource-cell-layout-layout-ncol"},"layout-nrow":{"_internalId":213535,"type":"ref","$ref":"quarto-resource-cell-layout-layout-nrow","description":"quarto-resource-cell-layout-layout-nrow"},"layout-align":{"_internalId":213536,"type":"ref","$ref":"quarto-resource-cell-layout-layout-align","description":"quarto-resource-cell-layout-layout-align"},"layout-valign":{"_internalId":213537,"type":"ref","$ref":"quarto-resource-cell-layout-layout-valign","description":"quarto-resource-cell-layout-layout-valign"},"column":{"_internalId":213538,"type":"ref","$ref":"quarto-resource-cell-pagelayout-column","description":"quarto-resource-cell-pagelayout-column"},"fig-column":{"_internalId":213539,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-column","description":"quarto-resource-cell-pagelayout-fig-column"},"tbl-column":{"_internalId":213540,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-column","description":"quarto-resource-cell-pagelayout-tbl-column"},"cap-location":{"_internalId":213541,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":213542,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":213543,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-cap":{"_internalId":213544,"type":"ref","$ref":"quarto-resource-cell-table-tbl-cap","description":"quarto-resource-cell-table-tbl-cap"},"tbl-subcap":{"_internalId":213545,"type":"ref","$ref":"quarto-resource-cell-table-tbl-subcap","description":"quarto-resource-cell-table-tbl-subcap"},"tbl-colwidths":{"_internalId":213546,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"html-table-processing":{"_internalId":213547,"type":"ref","$ref":"quarto-resource-cell-table-html-table-processing","description":"quarto-resource-cell-table-html-table-processing"},"output":{"_internalId":213548,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":213549,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":213550,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":213551,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"panel":{"_internalId":213552,"type":"ref","$ref":"quarto-resource-cell-textoutput-panel","description":"quarto-resource-cell-textoutput-panel"},"output-location":{"_internalId":213553,"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":213602,"type":"object","description":"be an object","properties":{"label":{"_internalId":213556,"type":"ref","$ref":"quarto-resource-cell-attributes-label","description":"quarto-resource-cell-attributes-label"},"classes":{"_internalId":213557,"type":"ref","$ref":"quarto-resource-cell-attributes-classes","description":"quarto-resource-cell-attributes-classes"},"renderings":{"_internalId":213558,"type":"ref","$ref":"quarto-resource-cell-attributes-renderings","description":"quarto-resource-cell-attributes-renderings"},"title":{"_internalId":213559,"type":"ref","$ref":"quarto-resource-cell-card-title","description":"quarto-resource-cell-card-title"},"padding":{"_internalId":213560,"type":"ref","$ref":"quarto-resource-cell-card-padding","description":"quarto-resource-cell-card-padding"},"expandable":{"_internalId":213561,"type":"ref","$ref":"quarto-resource-cell-card-expandable","description":"quarto-resource-cell-card-expandable"},"width":{"_internalId":213562,"type":"ref","$ref":"quarto-resource-cell-card-width","description":"quarto-resource-cell-card-width"},"height":{"_internalId":213563,"type":"ref","$ref":"quarto-resource-cell-card-height","description":"quarto-resource-cell-card-height"},"content":{"_internalId":213564,"type":"ref","$ref":"quarto-resource-cell-card-content","description":"quarto-resource-cell-card-content"},"color":{"_internalId":213565,"type":"ref","$ref":"quarto-resource-cell-card-color","description":"quarto-resource-cell-card-color"},"eval":{"_internalId":213566,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":213567,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":213568,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":213569,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":213570,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":213571,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"lst-label":{"_internalId":213572,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-label","description":"quarto-resource-cell-codeoutput-lst-label"},"lst-cap":{"_internalId":213573,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-cap","description":"quarto-resource-cell-codeoutput-lst-cap"},"fig-cap":{"_internalId":213574,"type":"ref","$ref":"quarto-resource-cell-figure-fig-cap","description":"quarto-resource-cell-figure-fig-cap"},"fig-subcap":{"_internalId":213575,"type":"ref","$ref":"quarto-resource-cell-figure-fig-subcap","description":"quarto-resource-cell-figure-fig-subcap"},"fig-link":{"_internalId":213576,"type":"ref","$ref":"quarto-resource-cell-figure-fig-link","description":"quarto-resource-cell-figure-fig-link"},"fig-align":{"_internalId":213577,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-alt":{"_internalId":213578,"type":"ref","$ref":"quarto-resource-cell-figure-fig-alt","description":"quarto-resource-cell-figure-fig-alt"},"fig-env":{"_internalId":213579,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":213580,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"fig-scap":{"_internalId":213581,"type":"ref","$ref":"quarto-resource-cell-figure-fig-scap","description":"quarto-resource-cell-figure-fig-scap"},"layout":{"_internalId":213582,"type":"ref","$ref":"quarto-resource-cell-layout-layout","description":"quarto-resource-cell-layout-layout"},"layout-ncol":{"_internalId":213583,"type":"ref","$ref":"quarto-resource-cell-layout-layout-ncol","description":"quarto-resource-cell-layout-layout-ncol"},"layout-nrow":{"_internalId":213584,"type":"ref","$ref":"quarto-resource-cell-layout-layout-nrow","description":"quarto-resource-cell-layout-layout-nrow"},"layout-align":{"_internalId":213585,"type":"ref","$ref":"quarto-resource-cell-layout-layout-align","description":"quarto-resource-cell-layout-layout-align"},"layout-valign":{"_internalId":213586,"type":"ref","$ref":"quarto-resource-cell-layout-layout-valign","description":"quarto-resource-cell-layout-layout-valign"},"column":{"_internalId":213587,"type":"ref","$ref":"quarto-resource-cell-pagelayout-column","description":"quarto-resource-cell-pagelayout-column"},"fig-column":{"_internalId":213588,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-column","description":"quarto-resource-cell-pagelayout-fig-column"},"tbl-column":{"_internalId":213589,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-column","description":"quarto-resource-cell-pagelayout-tbl-column"},"cap-location":{"_internalId":213590,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":213591,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":213592,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-cap":{"_internalId":213593,"type":"ref","$ref":"quarto-resource-cell-table-tbl-cap","description":"quarto-resource-cell-table-tbl-cap"},"tbl-subcap":{"_internalId":213594,"type":"ref","$ref":"quarto-resource-cell-table-tbl-subcap","description":"quarto-resource-cell-table-tbl-subcap"},"html-table-processing":{"_internalId":213595,"type":"ref","$ref":"quarto-resource-cell-table-html-table-processing","description":"quarto-resource-cell-table-html-table-processing"},"output":{"_internalId":213596,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":213597,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":213598,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":213599,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"panel":{"_internalId":213600,"type":"ref","$ref":"quarto-resource-cell-textoutput-panel","description":"quarto-resource-cell-textoutput-panel"},"output-location":{"_internalId":213601,"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"},"marginalia-side-geometry":{"_internalId":216513,"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-document-typst-margin-geometry":{"_internalId":219124,"type":"object","description":"be an object","properties":{"inner":{"_internalId":219118,"type":"ref","$ref":"marginalia-side-geometry","description":"be marginalia-side-geometry","tags":{"description":"Inner (left) margin geometry."},"documentation":"Inner (left) margin geometry."},"outer":{"_internalId":219121,"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"}} \ 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 93d62d4a27a..ae4ad484605 100644 --- a/src/resources/editor/tools/yaml/web-worker.js +++ b/src/resources/editor/tools/yaml/web-worker.js @@ -8003,7 +8003,8 @@ try { ], formats: [ "$html-files", - "$pdf-all" + "$pdf-all", + "typst" ] }, schema: { @@ -8025,7 +8026,8 @@ try { ], formats: [ "$html-files", - "$pdf-all" + "$pdf-all", + "typst" ] }, schema: { @@ -8047,7 +8049,8 @@ try { ], formats: [ "$html-files", - "$pdf-all" + "$pdf-all", + "typst" ] }, schema: { @@ -13253,6 +13256,29 @@ try { } } } + }, + { + id: "marginalia-side-geometry", + object: { + closed: true, + properties: { + far: { + string: { + description: "Distance from page edge to wideblock boundary." + } + }, + width: { + string: { + description: "Width of the margin note column." + } + }, + separation: { + string: { + description: "Gap between margin column and body text." + } + } + } + } } ], "schema/document-about.yml": [ @@ -15364,7 +15390,8 @@ try { "$markdown-all", "muse", "$html-files", - "pdf" + "pdf", + "typst" ] }, schema: { @@ -16347,6 +16374,12 @@ try { }, { name: "grid", + tags: { + formats: [ + "$html-doc", + "typst" + ] + }, schema: { object: { closed: true, @@ -16367,24 +16400,24 @@ try { }, "margin-width": { string: { - description: "The base width of the margin (right) column in an HTML page." + description: "The base width of the margin (right) column. For Typst, this controls the width of the margin note column." } }, "body-width": { string: { - description: "The base width of the body (center) column in an HTML page." + description: "The base width of the body (center) column. For Typst, this is computed as the remainder after other columns." } }, "gutter-width": { string: { - description: "The width of the gutter that appears between columns in an HTML page." + description: "The width of the gutter that appears between columns. For Typst, this is the gap between the text column and margin notes." } } } } }, description: { - short: "Properties of the grid system used to layout Quarto HTML pages." + short: "Properties of the grid system used to layout Quarto HTML and Typst pages." } }, { @@ -18074,7 +18107,8 @@ try { }, tags: { formats: [ - "$html-doc" + "$html-doc", + "typst" ] }, default: "document", @@ -23773,6 +23807,10 @@ try { short: "Shift heading levels by a positive or negative integer. For example,\nwith shift-heading-level-by: -1, level 2 headings become\nlevel 1 headings.", long: "Shift heading levels by a positive or negative integer. For example,\nwith shift-heading-level-by: -1, level 2 headings become\nlevel 1 headings, and level 3 headings become level 2 headings. Headings\ncannot have a level less than 1, so a heading that would be shifted\nbelow level 1 becomes a regular paragraph. Exception: with a shift of\n-N, a level-N heading at the beginning of the document replaces the\nmetadata title." }, + { + short: "Schema to use for numbering pages, e.g. 1 or\ni, or false to omit page numbering.", + long: 'Schema to use for numbering pages, e.g. 1 or\ni, or false to omit page numbering.\nSee Typst\nNumbering for additional information.' + }, { 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.\nSee ConTeXt\nPage Numbering for additional information.' @@ -24905,10 +24943,16 @@ try { "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.", + "Distance from page edge to wideblock boundary.", + "Width of the margin note column.", + "Gap between margin column and body text.", { - short: "Schema to use for numbering pages, e.g. 1 or\ni, or false to omit page numbering.", - long: 'Schema to use for numbering pages, e.g. 1 or\ni, or false to omit page numbering.\nSee Typst\nNumbering for additional information.' - } + short: "Advanced geometry settings for Typst margin layout.", + long: "Fine-grained control over marginalia package geometry. Most users\nshould use margin and grid options instead;\nthese values are computed automatically.\nUser-specified values override the computed defaults." + }, + "Inner (left) margin geometry.", + "Outer (right) margin geometry.", + "Minimum vertical spacing between margin notes (default: 8pt)." ], "schema/external-schemas.yml": [ { @@ -25137,12 +25181,12 @@ try { mermaid: "%%" }, "handlers/mermaid/schema.yml": { - _internalId: 218561, + _internalId: 219143, type: "object", description: "be an object", properties: { "mermaid-format": { - _internalId: 218553, + _internalId: 219135, type: "enum", enum: [ "png", @@ -25158,7 +25202,7 @@ try { exhaustiveCompletions: true }, theme: { - _internalId: 218560, + _internalId: 219142, type: "anyOf", anyOf: [ { @@ -25241,6 +25285,38 @@ try { ] }, description: "The logo image." + }, + { + name: "margin-geometry", + schema: { + object: { + closed: true, + properties: { + inner: { + ref: "marginalia-side-geometry", + description: "Inner (left) margin geometry." + }, + outer: { + ref: "marginalia-side-geometry", + description: "Outer (right) margin geometry." + }, + clearance: { + string: { + description: "Minimum vertical spacing between margin notes (default: 8pt)." + } + } + } + } + }, + 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" + } } ] }; diff --git a/src/resources/editor/tools/yaml/yaml-intelligence-resources.json b/src/resources/editor/tools/yaml/yaml-intelligence-resources.json index 1dc7fdf24ff..8b85b89fb7e 100644 --- a/src/resources/editor/tools/yaml/yaml-intelligence-resources.json +++ b/src/resources/editor/tools/yaml/yaml-intelligence-resources.json @@ -974,7 +974,8 @@ ], "formats": [ "$html-files", - "$pdf-all" + "$pdf-all", + "typst" ] }, "schema": { @@ -996,7 +997,8 @@ ], "formats": [ "$html-files", - "$pdf-all" + "$pdf-all", + "typst" ] }, "schema": { @@ -1018,7 +1020,8 @@ ], "formats": [ "$html-files", - "$pdf-all" + "$pdf-all", + "typst" ] }, "schema": { @@ -6224,6 +6227,29 @@ } } } + }, + { + "id": "marginalia-side-geometry", + "object": { + "closed": true, + "properties": { + "far": { + "string": { + "description": "Distance from page edge to wideblock boundary." + } + }, + "width": { + "string": { + "description": "Width of the margin note column." + } + }, + "separation": { + "string": { + "description": "Gap between margin column and body text." + } + } + } + } } ], "schema/document-about.yml": [ @@ -8335,7 +8361,8 @@ "$markdown-all", "muse", "$html-files", - "pdf" + "pdf", + "typst" ] }, "schema": { @@ -9318,6 +9345,12 @@ }, { "name": "grid", + "tags": { + "formats": [ + "$html-doc", + "typst" + ] + }, "schema": { "object": { "closed": true, @@ -9338,24 +9371,24 @@ }, "margin-width": { "string": { - "description": "The base width of the margin (right) column in an HTML page." + "description": "The base width of the margin (right) column. For Typst, this controls the width of the margin note column." } }, "body-width": { "string": { - "description": "The base width of the body (center) column in an HTML page." + "description": "The base width of the body (center) column. For Typst, this is computed as the remainder after other columns." } }, "gutter-width": { "string": { - "description": "The width of the gutter that appears between columns in an HTML page." + "description": "The width of the gutter that appears between columns. For Typst, this is the gap between the text column and margin notes." } } } } }, "description": { - "short": "Properties of the grid system used to layout Quarto HTML pages." + "short": "Properties of the grid system used to layout Quarto HTML and Typst pages." } }, { @@ -11045,7 +11078,8 @@ }, "tags": { "formats": [ - "$html-doc" + "$html-doc", + "typst" ] }, "default": "document", @@ -16744,6 +16778,10 @@ "short": "Shift heading levels by a positive or negative integer. For example,\nwith shift-heading-level-by: -1, level 2 headings become\nlevel 1 headings.", "long": "Shift heading levels by a positive or negative integer. For example,\nwith shift-heading-level-by: -1, level 2 headings become\nlevel 1 headings, and level 3 headings become level 2 headings. Headings\ncannot have a level less than 1, so a heading that would be shifted\nbelow level 1 becomes a regular paragraph. Exception: with a shift of\n-N, a level-N heading at the beginning of the document replaces the\nmetadata title." }, + { + "short": "Schema to use for numbering pages, e.g. 1 or\ni, or false to omit page numbering.", + "long": "Schema to use for numbering pages, e.g. 1 or\ni, or false to omit page numbering.\nSee Typst\nNumbering for additional information." + }, { "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.\nSee ConTeXt\nPage Numbering for additional information." @@ -17876,10 +17914,16 @@ "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’.", + "Distance from page edge to wideblock boundary.", + "Width of the margin note column.", + "Gap between margin column and body text.", { - "short": "Schema to use for numbering pages, e.g. 1 or\ni, or false to omit page numbering.", - "long": "Schema to use for numbering pages, e.g. 1 or\ni, or false to omit page numbering.\nSee Typst\nNumbering for additional information." - } + "short": "Advanced geometry settings for Typst margin layout.", + "long": "Fine-grained control over marginalia package geometry. Most users\nshould use margin and grid options instead;\nthese values are computed automatically.\nUser-specified values override the computed defaults." + }, + "Inner (left) margin geometry.", + "Outer (right) margin geometry.", + "Minimum vertical spacing between margin notes (default: 8pt)." ], "schema/external-schemas.yml": [ { @@ -18108,12 +18152,12 @@ "mermaid": "%%" }, "handlers/mermaid/schema.yml": { - "_internalId": 218561, + "_internalId": 219143, "type": "object", "description": "be an object", "properties": { "mermaid-format": { - "_internalId": 218553, + "_internalId": 219135, "type": "enum", "enum": [ "png", @@ -18129,7 +18173,7 @@ "exhaustiveCompletions": true }, "theme": { - "_internalId": 218560, + "_internalId": 219142, "type": "anyOf", "anyOf": [ { @@ -18212,6 +18256,38 @@ ] }, "description": "The logo image." + }, + { + "name": "margin-geometry", + "schema": { + "object": { + "closed": true, + "properties": { + "inner": { + "ref": "marginalia-side-geometry", + "description": "Inner (left) margin geometry." + }, + "outer": { + "ref": "marginalia-side-geometry", + "description": "Outer (right) margin geometry." + }, + "clearance": { + "string": { + "description": "Minimum vertical spacing between margin notes (default: 8pt)." + } + } + } + } + }, + "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" + } } ] } \ No newline at end of file diff --git a/src/resources/filters/customnodes/floatreftarget.lua b/src/resources/filters/customnodes/floatreftarget.lua index 0bb2678a596..38d8a703791 100644 --- a/src/resources/filters/customnodes/floatreftarget.lua +++ b/src/resources/filters/customnodes/floatreftarget.lua @@ -964,6 +964,7 @@ end) _quarto.ast.add_renderer("FloatRefTarget", function(_) return _quarto.format.isTypstOutput() end, function(float) + -- Get crossref info first (needed for both margin and regular figures) local ref = ref_type_from_float(float) local info = crossref.categories.by_ref_type[ref] if info == nil then @@ -974,6 +975,107 @@ end, function(float) end local kind = "quarto-float-" .. ref local supplement = titleString(ref, info.name) + + -- 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 + local content = quarto.utils.as_blocks(float.content or {}) + + -- Get optional attributes + local shift = float.attributes and float.attributes["shift"] or "auto" + local alignment = float.attributes and float.attributes["alignment"] or "baseline" + local dy = float.attributes and float.attributes["dy"] or "0pt" + + -- Get caption location (tables default to top, figures to bottom) + local caption_location = cap_location(float) + if caption_location ~= "top" and caption_location ~= "bottom" then + caption_location = "bottom" + end + + -- Check for subfloats - need to use quarto_super wrapped in note() + if float.has_subfloats then + -- Wrap quarto_super in note() for margin placement with proper subfloat numbering + local result = pandoc.Blocks({}) + result:insert(pandoc.RawBlock("typst", + '#note(counter: none, alignment: "' .. alignment .. '", dy: ' .. dy .. + ', shift: ' .. _quarto.format.typst.format_shift_param(shift) .. ')[')) + result:insert(_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)) + result:insert(pandoc.RawBlock("typst", ']\n\n')) + return result + end + + -- No subfloats - use notefigure for margin placement + return make_typst_margin_figure { + content = content, + caption = float.caption_long, + caption_location = caption_location, + identifier = float.identifier, + shift = shift, + alignment = alignment, + dy = dy, + kind = kind, + supplement = supplement + } + end + + -- Check for margin caption (figure in main column, caption in margin) + if hasMarginCaption(float) then + local content = quarto.utils.as_blocks(float.content or {}) + -- Margin captions align with top of content (consistent with HTML visual behavior) + local alignment = "top" + + return make_typst_margin_caption_figure { + content = content, + caption = float.caption_long, + identifier = float.identifier, + kind = kind, + supplement = supplement, + alignment = alignment, + } + end + + -- Check for full-width classes (column-page-right, column-page, column-screen, etc.) + -- Note: For cell outputs, columns.lua wraps the cell-output-display div in wideblock. + -- For fenced divs, the FloatRefTarget has the class and needs to wrap itself. + 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" + end + + -- Render standard figure first + local figure_blocks = make_typst_figure { + content = content, + caption_location = caption_location, + caption = float.caption_long, + kind = kind, + supplement = supplement, + numbering = info.numbering, + identifier = float.identifier + } + + -- Wrap in wideblock + return make_typst_wideblock { + content = figure_blocks, + side = wideblock_side, + } + end + -- FIXME: custom numbering doesn't work yet -- local numbering = "" -- if float.parent_id then @@ -984,8 +1086,12 @@ end, function(float) local content = quarto.utils.as_blocks(float.content or {}) local caption_location = cap_location(float) - if (caption_location ~= "top" and caption_location ~= "bottom") then - -- warn this is not supported and default to bottom + if caption_location == "margin" then + -- Margin captions should have been caught by hasMarginCaption check above. + -- If we reach here, margin-layout may not be active. Fall back to bottom. + caption_location = "bottom" + elseif caption_location ~= "top" and caption_location ~= "bottom" then + -- Unknown caption location, warn and default to bottom warn("Typst does not support this caption location: " .. caption_location .. ". Defaulting to bottom for '" .. float.identifier .. "'.") caption_location = "bottom" end diff --git a/src/resources/filters/layout/cites.lua b/src/resources/filters/layout/cites.lua index 8f919053266..c89b1a1a60f 100644 --- a/src/resources/filters/layout/cites.lua +++ b/src/resources/filters/layout/cites.lua @@ -151,10 +151,9 @@ function resolveCaptionCitations(captionContentInlines, inMargin) if #citeEls > 0 then tappend(captionContentInlines, citeEls) - return true - else - return false + return captionContentInlines end + -- return nil implicitly if no changes end function marginCitePlaceholderInline(citation) diff --git a/src/resources/filters/layout/columns-preprocess.lua b/src/resources/filters/layout/columns-preprocess.lua index 9d959bd1e63..3abb6e5a14c 100644 --- a/src/resources/filters/layout/columns-preprocess.lua +++ b/src/resources/filters/layout/columns-preprocess.lua @@ -1,12 +1,24 @@ -- columns-preprocess.lua -- Copyright (C) 2021-2022 Posit Software, PBC -function columns_preprocess() +function columns_preprocess() return { FloatRefTarget = function(float) if float.parent_id ~= nil then return nil end + -- Check for margin figure placement (.column-margin or .aside class) + if hasMarginColumn(float) then + noteHasColumns() + end + -- Check for full-width classes (column-page-*, column-screen-*) + if getWideblockSide(float.classes) then + noteHasColumns() + end + -- Check for margin caption class (added directly to element) + if hasMarginCaption(float) then + noteHasColumns() + end local location = cap_location(float) if location == 'margin' then float.classes:insert('margin-caption') diff --git a/src/resources/filters/layout/columns.lua b/src/resources/filters/layout/columns.lua index 77e47aaa58b..e639ae296b7 100644 --- a/src/resources/filters/layout/columns.lua +++ b/src/resources/filters/layout/columns.lua @@ -74,20 +74,109 @@ local function def_columns() -- for html output that isn't reveal... if _quarto.format.isHtmlOutput() and not _quarto.format.isHtmlSlideOutput() then - + -- For HTML output, note that any div marked an aside should - -- be marked a column-margin element (so that it is processed - -- by post processors). + -- be marked a column-margin element (so that it is processed + -- by post processors). -- For example: https://github.com/quarto-dev/quarto-cli/issues/2701 if el.classes and tcontains(el.classes, 'aside') then noteHasColumns() - el.classes = el.classes:filter(function(attr) + el.classes = el.classes:filter(function(attr) return attr ~= "aside" end) tappend(el.classes, {'column-margin', "margin-aside"}) return el end - + + elseif _quarto.format.isTypstOutput() then + -- For Typst output, detect column classes to trigger margin layout setup + -- Actual margin note rendering is handled in quarto-post/typst.lua + if hasMarginColumn(el) or hasColumnClasses(el) then + noteHasColumns() + end + -- Convert aside class to column-margin for consistency + if el.classes and tcontains(el.classes, 'aside') then + el.classes = el.classes:filter(function(attr) + return attr ~= "aside" + end) + tappend(el.classes, {'column-margin'}) + return el + end + -- Handle full-width classes with wideblock + local side, clz = getWideblockSide(el.classes) + if side then + noteHasColumns() -- Ensure margin layout is activated for wideblock + el.classes = el.classes:filter(function(c) return c ~= clz end) + return make_typst_wideblock { + content = el.content, + side = side, + } + end + -- Handle intermediate width classes (body-outset, page-inset, screen-inset) + local intermediateInfo, intermediateClz = getIntermediateWidthClass(el.classes) + if intermediateInfo then + noteHasColumns() -- Ensure margin layout is activated + el.classes = el.classes:filter(function(c) return c ~= intermediateClz end) + return make_typst_intermediate_width { + content = el.content, + func = intermediateInfo.func, + side = intermediateInfo.side, + } + end + -- Handle margin figures/tables: propagate .column-margin class to FloatRefTarget + -- so they render with notefigure() instead of being wrapped in #note() + if hasMarginColumn(el) then + local floatRefTargets = el.content:filter(function(contentEl) + return is_custom_node(contentEl, "FloatRefTarget") + end) + if #floatRefTargets > 0 then + -- Propagate margin class and attributes to each FloatRefTarget and return unwrapped + local result = pandoc.Blocks({}) + for _, contentEl in ipairs(el.content) do + if is_custom_node(contentEl, "FloatRefTarget") then + local custom = _quarto.ast.resolve_custom_data(contentEl) + if custom ~= nil then + -- Add column-margin class to the float + if custom.classes == nil then + custom.classes = pandoc.List({'column-margin'}) + else + custom.classes:insert('column-margin') + end + -- Propagate margin-related attributes (shift, alignment, dy) + if el.attributes then + if custom.attributes == nil then + custom.attributes = {} + end + if el.attributes.shift then + custom.attributes.shift = el.attributes.shift + end + if el.attributes.alignment then + custom.attributes.alignment = el.attributes.alignment + end + if el.attributes.dy then + custom.attributes.dy = el.attributes.dy + end + end + result:insert(contentEl) + end + else + -- Non-float content stays wrapped in margin note + local inner_div = pandoc.Div({contentEl}, pandoc.Attr("", {'column-margin'})) + result:insert(inner_div) + end + end + return result + else + -- For cell-output-display divs with column-margin, the parent FloatRefTarget + -- will handle margin placement. Strip the class to prevent quarto-post from + -- wrapping it in #note() (which would cause double-wrapping with notefigure). + if el.classes:includes("cell-output-display") then + removeColumnClasses(el) + return el + end + end + end + elseif el.identifier and el.identifier:find("^lst%-") then -- for listings, fetch column classes from sourceCode element -- and move to the appropriate spot (e.g. caption, container div) @@ -175,7 +264,7 @@ local function def_columns() -- It also means that divs that want to be both a figure* and a table* -- will never work and we won't get the column-* treatment for -- everything, just for the table. - el.classes = el.classes:filter(function(clz) + el.classes = el.classes:filter(function(clz) return not isStarEnv(clz) end) end @@ -185,14 +274,14 @@ local function def_columns() -- the general purpose `sidenote` processing from capturing this -- element (since floats know how to deal with margin positioning) local custom = _quarto.ast.resolve_custom_data(contentEl) - if custom ~= nil then + if custom ~= nil then floatRefTarget = true removeColumnClasses(el) add_column_classes_and_attributes(columnClasses, columnAttributes, custom) end - end + end end - + if not figOrTable and not floatRefTarget then processOtherContent(el.content) end @@ -267,17 +356,29 @@ local function def_columns() Span = function(el) -- a span that should be placed in the margin - if _quarto.format.isLatexOutput() and hasMarginColumn(el) then + if _quarto.format.isLatexOutput() and hasMarginColumn(el) then noteHasColumns() tprepend(el.content, {latexBeginSidenote(false)}) tappend(el.content, {latexEndSidenote(el, false)}) removeColumnClasses(el) return el - else + elseif _quarto.format.isTypstOutput() and hasMarginColumn(el) then + -- For Typst, detect margin spans to trigger margin layout setup + -- Actual margin note rendering is handled in quarto-post/typst.lua + noteHasColumns() + -- Convert aside class to column-margin for consistency + if el.classes and tcontains(el.classes, 'aside') then + el.classes = el.classes:filter(function(attr) + return attr ~= "aside" + end) + tappend(el.classes, {'column-margin'}) + end + return el + else -- convert the aside class to a column-margin class if el.classes and tcontains(el.classes, 'aside') then noteHasColumns() - el.classes = el.classes:filter(function(attr) + el.classes = el.classes:filter(function(attr) return attr ~= "aside" end) tappend(el.classes, {'column-margin', 'margin-aside'}) diff --git a/src/resources/filters/layout/meta.lua b/src/resources/filters/layout/meta.lua index 349b89beaa8..9c68c296a7d 100644 --- a/src/resources/filters/layout/meta.lua +++ b/src/resources/filters/layout/meta.lua @@ -164,6 +164,53 @@ function layout_meta_inject_latex_packages() end end end + + -- enable column layout for Typst (configure page geometry for margin notes) + if (layoutState.hasColumns or marginReferences() or marginCitations()) and _quarto.format.isTypstOutput() then + -- Use specified papersize, or default to us-letter (matches Quarto's Typst template default) + local paperWidth = typstPaperWidth(meta.papersize) or kPaperWidthsIn["letter"] + if paperWidth then + -- Read margin options (margin.left, margin.right, margin.x) + local marginOptions = nil + if meta.margin then + marginOptions = { + left = meta.margin.left or meta.margin.x or nil, + right = meta.margin.right or meta.margin.x or nil, + } + end + + -- Read grid options (grid.margin-width, grid.gutter-width) + local gridOptions = nil + if meta.grid then + gridOptions = { + ["margin-width"] = meta.grid["margin-width"] or nil, + ["body-width"] = meta.grid["body-width"] or nil, + ["gutter-width"] = meta.grid["gutter-width"] or nil, + } + end + + -- Compute default geometry from paper size and grid options + local computedGeometry = typstGeometryFromPaperWidth(paperWidth, marginOptions, gridOptions) + + -- Merge with any user-specified margin-geometry overrides + meta["margin-geometry"] = mergeMarginGeometry(computedGeometry, meta["margin-geometry"]) + end + + -- Suppress bibliography when using margin citations (consistent with HTML behavior) + -- Full citations appear in margins, no end bibliography needed + if marginCitations() then + meta["suppress-bibliography"] = true + end + + -- Add show rule to transform footnotes to sidenotes when reference-location: margin + if marginReferences() then + quarto.doc.include_text('in-header', + '// Transform footnotes to sidenotes\n' .. + '#show footnote: it => column-sidenote(it.body)\n' .. + '#show footnote.entry: none\n') + end + end + return meta end } @@ -336,4 +383,173 @@ function textWidth(width) return ((width - 2*left(width) - marginParSep(width)) * 2) / 3 end +-- Typst paper width lookup (reuse kPaperWidthsIn) +function typstPaperWidth(paperSize) + if paperSize ~= nil then + local paperSizeStr = pandoc.utils.stringify(paperSize) + -- Typst uses lowercase paper names, normalize input + paperSizeStr = string.lower(paperSizeStr) + -- Map some Typst-specific names + if paperSizeStr == "us-letter" then + paperSizeStr = "letter" + elseif paperSizeStr == "us-legal" then + paperSizeStr = "legal" + end + return kPaperWidthsIn[paperSizeStr] + end + return nil +end + +-- Parse CSS/Typst length values (e.g., "250px", "2.5in", "1.5em") +-- Returns value in inches, or nil if parsing fails +function parseCssLength(value) + if value == nil then return nil end + local str = pandoc.utils.stringify(value) + local num, unit = string.match(str, "^([%d%.]+)(%a+)$") + if num == nil then return nil end + num = tonumber(num) + if num == nil then return nil end + + -- Convert to inches for marginalia + if unit == "in" then + return num + elseif unit == "px" then + return num / 96 -- 96 DPI standard + elseif unit == "pt" then + return num / 72 + elseif unit == "cm" then + return num / 2.54 + elseif unit == "mm" then + return num / 25.4 + elseif unit == "em" then + return num * 11 / 72 -- Assume 11pt base font + else + return num -- Assume inches if no recognized unit + end +end + +-- Compute Typst geometry from paper width for marginalia package +-- Uses marginalia's recommended proportions (from A4 example: 16:40:8 for outer, 16:20:8 for inner) +-- Total: inner 21% + outer 30.5% + body 48.5% = 100% +-- marginOptions: table with left, right keys (user margin overrides) +-- gridOptions: table with margin-width, gutter-width keys (user grid overrides) +function typstGeometryFromPaperWidth(paperWidth, marginOptions, gridOptions) + -- Marginalia proportions (from A4 example) + -- inner: (far: 16mm, width: 20mm, sep: 8mm) = 44mm = 21% of 210mm + -- outer: (far: 16mm, width: 40mm, sep: 8mm) = 64mm = 30.5% of 210mm + -- body: 102mm = 48.5% of 210mm + + -- Base proportions (relative to page width) + local innerTotal = 0.21 * paperWidth -- 21% of page + local outerTotal = 0.305 * paperWidth -- 30.5% of page + -- body = 48.5% of page (remainder) + + -- Apply inner ratio 2:2.5:1 = far:width:sep + -- Sum = 5.5, so: far=2/5.5, width=2.5/5.5, sep=1/5.5 + local innerFar = innerTotal * (2 / 5.5) + local innerWidth = innerTotal * (2.5 / 5.5) + local innerSep = innerTotal * (1 / 5.5) + + -- Apply outer ratio 2:5:1 = far:width:sep + -- Sum = 8, so: far=2/8, width=5/8, sep=1/8 + local outerFar = outerTotal * (2 / 8) + local outerWidth = outerTotal * (5 / 8) + local outerSep = outerTotal * (1 / 8) + + -- Track if user specified margin.left (affects gutter-width logic) + local marginLeftSpecified = false + + -- Apply user overrides from margin options + -- margin.left -> inner.sep (separation between body and inner margin column) + -- margin.right -> outer.far (distance from outer page edge) + if marginOptions then + if marginOptions.left then + local parsed = parseCssLength(marginOptions.left) + if parsed then + innerSep = parsed + marginLeftSpecified = true + end + end + if marginOptions.right then + local parsed = parseCssLength(marginOptions.right) + if parsed then outerFar = parsed end + end + end + + -- Apply user overrides from grid options + if gridOptions then + if gridOptions["margin-width"] then + local parsed = parseCssLength(gridOptions["margin-width"]) + if parsed then outerWidth = parsed end + end + if gridOptions["gutter-width"] then + local parsed = parseCssLength(gridOptions["gutter-width"]) + if parsed then + -- gutter-width sets outer.sep always + outerSep = parsed + -- gutter-width sets inner.sep only if margin.left wasn't specified + if not marginLeftSpecified then + innerSep = parsed + end + end + end + end + + return { + inner = { + far = string.format("%.3fin", innerFar), + width = string.format("%.3fin", innerWidth), + separation = string.format("%.3fin", innerSep), + }, + outer = { + far = string.format("%.3fin", outerFar), + width = string.format("%.3fin", outerWidth), + separation = string.format("%.3fin", outerSep), + }, + clearance = "12pt", -- Match marginalia default + } +end + +-- Deep merge margin geometry tables, with overrides taking precedence +-- Only merges non-nil values from overrides +function mergeMarginGeometry(defaults, overrides) + if overrides == nil then return defaults end + + local result = {} + + -- Merge inner + result.inner = {} + for k, v in pairs(defaults.inner) do + result.inner[k] = v + end + if overrides.inner then + for k, v in pairs(overrides.inner) do + if v ~= nil then + result.inner[k] = pandoc.utils.stringify(v) + end + end + end + + -- Merge outer + result.outer = {} + for k, v in pairs(defaults.outer) do + result.outer[k] = v + end + if overrides.outer then + for k, v in pairs(overrides.outer) do + if v ~= nil then + result.outer[k] = pandoc.utils.stringify(v) + end + end + end + + -- Merge clearance + if overrides.clearance ~= nil then + result.clearance = pandoc.utils.stringify(overrides.clearance) + else + result.clearance = defaults.clearance + end + + return result +end diff --git a/src/resources/filters/layout/typst.lua b/src/resources/filters/layout/typst.lua index 83fdcc3e2be..bdc084bff17 100644 --- a/src/resources/filters/layout/typst.lua +++ b/src/resources/filters/layout/typst.lua @@ -1,6 +1,197 @@ -- typst.lua -- Copyright (C) 2023 Posit Software, PBC +-- Full-width column class mapping for wideblock +-- Note: screen-inset classes are handled separately with column-screen-inset function +local widthClassToSide = { + ["column-page-right"] = "outer", + ["column-page-left"] = "inner", + ["column-page"] = "both", + ["column-screen"] = "both", + ["column-screen-left"] = "inner", + ["column-screen-right"] = "outer", +} + +-- Check if element has a full-width class and return the wideblock side +function getWideblockSide(classes) + if classes == nil then + return nil, nil + end + for clz, side in pairs(widthClassToSide) do + if classes:includes(clz) then + return side, clz + end + end + return nil, nil +end + +-- Intermediate width classes map to Typst functions with side parameter +local intermediateWidthClasses = { + ["column-body-outset"] = { func = "column-body-outset", side = "both" }, + ["column-body-outset-left"] = { func = "column-body-outset", side = "inner" }, + ["column-body-outset-right"] = { func = "column-body-outset", side = "outer" }, + ["column-page-inset"] = { func = "column-page-inset", side = "both" }, + ["column-page-inset-left"] = { func = "column-page-inset", side = "inner" }, + ["column-page-inset-right"] = { func = "column-page-inset", side = "outer" }, + ["column-screen-inset"] = { func = "column-screen-inset", side = "both" }, + ["column-screen-inset-left"] = { func = "column-screen-inset", side = "inner" }, + ["column-screen-inset-right"] = { func = "column-screen-inset", side = "outer" }, + ["column-screen-inset-shaded"] = { func = "column-screen-inset-shaded", side = nil }, +} + +-- Check if element has an intermediate width class +function getIntermediateWidthClass(classes) + if classes == nil then + return nil, nil + end + for clz, info in pairs(intermediateWidthClasses) do + if classes:includes(clz) then + return info, clz + end + end + return nil, nil +end + +-- Wrap content in intermediate width block +function make_typst_intermediate_width(tbl) + local content = tbl.content or pandoc.Blocks({}) + local func = tbl.func + local side = tbl.side + + local result = pandoc.Blocks({}) + if side then + result:insert(pandoc.RawBlock("typst", '#' .. func .. '(side: "' .. side .. '")[')) + else + result:insert(pandoc.RawBlock("typst", '#' .. func .. '[')) + end + result:extend(quarto.utils.as_blocks(content)) + result:insert(pandoc.RawBlock("typst", ']\n\n')) + return result +end + +-- Wrap content in a wideblock for full-width layout +function make_typst_wideblock(tbl) + local content = tbl.content or pandoc.Blocks({}) + local side = tbl.side or "both" + + local result = pandoc.Blocks({}) + result:insert(pandoc.RawBlock("typst", '#wideblock(side: "' .. side .. '")[')) + result:extend(quarto.utils.as_blocks(content)) + result:insert(pandoc.RawBlock("typst", ']')) + result:insert(pandoc.RawBlock("typst", '\n\n')) + return result +end + +-- Render a figure in the margin using marginalia's notefigure +function make_typst_margin_figure(tbl) + local content = tbl.content or pandoc.Div({}) + local caption = tbl.caption + local caption_location = tbl.caption_location or "bottom" + local identifier = tbl.identifier + local shift = tbl.shift or "auto" + local alignment = tbl.alignment or "baseline" + local dy = tbl.dy or "0pt" + local kind = tbl.kind or "quarto-float-fig" + local supplement = tbl.supplement or "Figure" + + local result = pandoc.Blocks({}) + + -- Start notefigure call with parameters + -- Include kind and supplement to share counter with regular figures + result:insert(pandoc.RawBlock("typst", + '#notefigure(alignment: "' .. alignment .. '", dy: ' .. dy .. + ', shift: ' .. _quarto.format.typst.format_shift_param(shift) .. ', counter: none' .. + ', kind: "' .. kind .. '", supplement: "' .. supplement .. '", ')) + + -- Add figure content + result:insert(pandoc.RawBlock("typst", '[')) + -- Listings should not be centered inside the figure + if kind:match("lst") then + result:insert(pandoc.RawBlock("typst", '#set align(left)')) + end + result:extend(quarto.utils.as_blocks(content)) + result:insert(pandoc.RawBlock("typst", ']')) + + -- Add caption if present, with position control + if caption and not quarto.utils.is_empty_node(caption) then + result:insert(pandoc.RawBlock("typst", ', caption: figure.caption(position: ' .. caption_location .. ', [')) + if pandoc.utils.type(caption) == "Blocks" then + result:extend(caption) + else + result:insert(caption) + end + result:insert(pandoc.RawBlock("typst", '])')) + end + + -- Close notefigure + result:insert(pandoc.RawBlock("typst", ')')) + + -- Add label for cross-references + if identifier and identifier ~= "" then + result:insert(pandoc.RawBlock("typst", '<' .. identifier .. '>')) + end + + result:insert(pandoc.RawBlock("typst", '\n\n')) + return result +end + +-- Render a figure in main column with caption in margin +-- Uses marginalia's recommended show-rule approach for proper top-alignment +function make_typst_margin_caption_figure(tbl) + local content = tbl.content or pandoc.Div({}) + local caption = tbl.caption + local identifier = tbl.identifier + local kind = tbl.kind or "quarto-float-fig" + local supplement = tbl.supplement or "Figure" + -- Margin captions align with top of content (consistent with HTML visual behavior) + local alignment = tbl.alignment or "top" + + local result = pandoc.Blocks({}) + + -- Use marginalia's recommended approach: show rule transforms figure.caption into margin note + -- This ensures proper alignment because the caption anchors at the figure's position + local cap_position = alignment == "top" and "top" or "bottom" + local dy = alignment == "top" and "-0.01pt" or "0pt" + + -- Scoped show rule: transform figure captions into margin notes + result:insert(pandoc.RawBlock("typst", '#[')) + result:insert(pandoc.RawBlock("typst", '#set figure(gap: 0pt)')) + result:insert(pandoc.RawBlock("typst", '#set figure.caption(position: ' .. cap_position .. ')')) + result:insert(pandoc.RawBlock("typst", + '#show figure.caption: it => note(alignment: "' .. alignment .. '", dy: ' .. dy .. + ', counter: none, shift: "avoid", keep-order: true)[#text(size: 0.9em)[#it]]')) + + -- Render figure WITH caption - the show rule transforms it into a margin note + -- Typst's figure.caption already includes "Figure N:" prefix, so just include caption text + result:insert(pandoc.RawBlock("typst", '#figure([')) + -- Listings should not be centered inside the figure + if kind:match("lst") then + result:insert(pandoc.RawBlock("typst", '#set align(left)')) + end + result:extend(quarto.utils.as_blocks(content)) + result:insert(pandoc.RawBlock("typst", '], caption: [')) + if caption and not quarto.utils.is_empty_node(caption) then + if pandoc.utils.type(caption) == "Blocks" then + result:extend(caption) + else + result:insert(caption) + end + end + result:insert(pandoc.RawBlock("typst", + '], kind: "' .. kind .. '", supplement: "' .. supplement .. '")')) + + -- Add label for cross-references + if identifier and identifier ~= "" then + result:insert(pandoc.RawBlock("typst", '<' .. identifier .. '>')) + end + + -- Close scoping block + result:insert(pandoc.RawBlock("typst", ']')) + + result:insert(pandoc.RawBlock("typst", '\n\n')) + return result +end + function make_typst_figure(tbl) local content = tbl.content or pandoc.Div({}) local caption_location = tbl.caption_location @@ -121,6 +312,7 @@ end, function(layout) end) end) cells:insert(pandoc.RawInline("typst", ")\n")) + local has_subfloats = layout.float.has_subfloats -- count any remaining figures (with no / bad ids) as floats if not has_subfloats then @@ -130,8 +322,12 @@ end, function(layout) end }) end + + -- Check if this is a margin panel (has .column-margin or .aside class) + local is_margin = hasMarginColumn(layout.float) + if has_subfloats then - result:insert(_quarto.format.typst.function_call("quarto_super", { + 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 .. ">")}, @@ -140,17 +336,45 @@ end, function(layout) {"subrefnumbering", "1a"}, {"subcapnumbering", "(a)"}, _quarto.format.typst.as_typst_content(cells) - }, false)) + }, false) + if is_margin then + -- Wrap quarto_super in note() for margin placement + -- counter: none disables the note marker (blue dot) + local shift = layout.float.attributes and layout.float.attributes["shift"] or "auto" + local alignment = layout.float.attributes and layout.float.attributes["alignment"] or "baseline" + local dy = layout.float.attributes and layout.float.attributes["dy"] or "0pt" + result:insert(pandoc.RawBlock("typst", + '#note(counter: none, alignment: "' .. alignment .. '", dy: ' .. dy .. + ', shift: ' .. _quarto.format.typst.format_shift_param(shift) .. ')[')) + result:insert(super_call) + result:insert(pandoc.RawBlock("typst", ']\n\n')) + else + result:insert(super_call) + end else - result:extend(make_typst_figure { - content = cells, - caption_location = caption_location, - caption = layout.float.caption_long, - kind = kind, - supplement = titleString(ref, info.prefix), - numbering = info.numbering, - identifier = layout.float.identifier - }) + if is_margin then + result:extend(make_typst_margin_figure { + content = cells, + caption = layout.float.caption_long, + caption_location = caption_location, + identifier = layout.float.identifier, + shift = layout.float.attributes and layout.float.attributes["shift"] or "auto", + alignment = layout.float.attributes and layout.float.attributes["alignment"] or "baseline", + dy = layout.float.attributes and layout.float.attributes["dy"] or "0pt", + kind = kind, + supplement = supplement + }) + else + result:extend(make_typst_figure { + content = cells, + caption_location = caption_location, + caption = layout.float.caption_long, + kind = kind, + supplement = titleString(ref, info.prefix), + numbering = info.numbering, + identifier = layout.float.identifier + }) + end end return result end) diff --git a/src/resources/filters/modules/typst.lua b/src/resources/filters/modules/typst.lua index 4f157f290d1..c2b3d8bc415 100644 --- a/src/resources/filters/modules/typst.lua +++ b/src/resources/filters/modules/typst.lua @@ -89,12 +89,23 @@ local function _main() if #entries == 0 then return nil end return '(' .. table.concat(entries, ', ') .. ')' end - + + -- Helper to format shift parameter for marginalia + -- auto/true/false are unquoted, "avoid"/"ignore" are quoted strings + local function format_shift_param(shift) + if shift == "true" or shift == "false" or shift == "auto" then + return shift + else + return '"' .. shift .. '"' + end + end + return { function_call = typst_function_call, sortedPairs = sortedPairs, as_typst_content = as_typst_content, as_typst_dictionary = as_typst_dictionary, + format_shift_param = format_shift_param, css = require("modules/typst_css") } end diff --git a/src/resources/filters/quarto-post/typst.lua b/src/resources/filters/quarto-post/typst.lua index 6380dc8fee7..b925de4d05c 100644 --- a/src/resources/filters/quarto-post/typst.lua +++ b/src/resources/filters/quarto-post/typst.lua @@ -5,10 +5,24 @@ -- FIXME Ideally this would go directly on init.lua, but -- the module path set up doesn't appear to be working there. - + local typst = require("modules/typst") _quarto.format.typst = typst +-- Helper to format marginalia shift parameter +-- auto/true/false are unquoted, "avoid"/"ignore" are quoted strings +local function formatShiftParam(shift) + if shift == "true" or shift == "false" or shift == "auto" then + return shift + else + return '"' .. shift .. '"' + end +end + +-- Lookup table for citeproc-rendered bibliography entries +-- Maps citation_id -> Inlines (formatted bibliography entry) +local citeprocBibliography = {} + function render_typst() if not _quarto.format.isTypstOutput() then return {} @@ -17,6 +31,40 @@ function render_typst() local number_depth return { + -- Pass 0: Pre-process citeproc to build bibliography lookup table + -- This must run before the Cite handler so entries are available + { + Pandoc = function(doc) + -- Only build lookup if using citeproc AND margin citations + if marginCitations() and quarto.doc.cite_method() == 'citeproc' then + -- Run citeproc on a copy to get formatted bibliography + local processed = pandoc.utils.citeproc(doc) + + -- Find the refs div and extract entries + processed:walk({ + Div = function(div) + -- Each bibliography entry has id like "ref-citationkey" + local match = div.identifier:match("^ref%-(.+)$") + if match then + -- Extract the formatted content (typically a Para inside the div) + -- Flatten to Inlines for use in margin notes + local inlines = pandoc.Inlines({}) + for _, block in ipairs(div.content) do + if block.t == "Para" or block.t == "Plain" then + if #inlines > 0 then + inlines:insert(pandoc.Space()) + end + inlines:extend(block.content) + end + end + citeprocBibliography[match] = inlines + end + end + }) + end + return nil -- Don't modify the document + end + }, { Meta = function(m) -- This should be a number, but we must represent it as a string, @@ -32,6 +80,31 @@ function render_typst() }, { Div = function(div) + -- Handle .column-margin divs (margin notes) using marginalia package + if div.classes:includes("column-margin") then + div.classes = div.classes:filter(function(c) return c ~= "column-margin" end) + + -- marginalia uses alignment for baseline/top/bottom positioning + local alignment = div.attributes.alignment or "baseline" + div.attributes.alignment = nil + + -- dy is for additional offset (0pt by default) + local dy = div.attributes.dy or "0pt" + div.attributes.dy = nil + + -- shift controls overlap prevention (auto, true, false, "avoid", "ignore") + local shift = div.attributes.shift or "auto" + div.attributes.shift = nil + + local result = pandoc.Blocks({}) + result:insert(pandoc.RawBlock("typst", + '#note(alignment: "' .. alignment .. '", dy: ' .. dy .. ', shift: ' .. formatShiftParam(shift) .. ', counter: none)[')) + result:extend(div.content) + result:insert(pandoc.RawBlock("typst", "]")) + return result + end + + -- Handle .block divs if div.classes:includes("block") then div.classes = div.classes:filter(function(c) return c ~= "block" end) @@ -52,6 +125,72 @@ function render_typst() return result end end, + Span = function(span) + -- Handle .column-margin spans (inline margin notes) using marginalia package + if span.classes:includes("column-margin") then + span.classes = span.classes:filter(function(c) return c ~= "column-margin" end) + + -- marginalia uses alignment for baseline/top/bottom positioning + local alignment = span.attributes.alignment or "baseline" + span.attributes.alignment = nil + + -- dy is for additional offset (0pt by default) + local dy = span.attributes.dy or "0pt" + span.attributes.dy = nil + + -- shift controls overlap prevention (auto, true, false, "avoid", "ignore") + local shift = span.attributes.shift or "auto" + span.attributes.shift = nil + + local result = pandoc.Inlines({}) + result:insert(pandoc.RawInline("typst", + '#note(alignment: "' .. alignment .. '", dy: ' .. dy .. ', shift: ' .. formatShiftParam(shift) .. ', counter: none)[')) + result:extend(span.content) + result:insert(pandoc.RawInline("typst", "]")) + return result + end + end, + -- Note: footnotes with reference-location: margin are handled via Typst show rule + -- (see definitions.typ) rather than intercepting here, so Pandoc's native + -- block-to-Typst conversion is preserved for complex footnote content. + Cite = function(cite) + -- Show full citations in margin when citation-location: margin + if marginCitations() then + noteHasColumns() -- Activate margin layout + + local use_citeproc = quarto.doc.cite_method() == 'citeproc' + + -- Keep original Cite element (Pandoc renders it with locator inline) + -- Append margin note with full bibliographic entries + local result = pandoc.Inlines({}) + result:insert(cite) + + -- Open margin note + result:insert(pandoc.RawInline("typst", + "#note(alignment: \"baseline\", shift: auto, counter: none)[#set text(size: 0.85em)\n")) + + -- Add bibliography entries for each citation + local first = true + for _, c in ipairs(cite.citations) do + if not first then + result:insert(pandoc.RawInline("typst", "\n")) + end + first = false + + if use_citeproc and citeprocBibliography[c.id] then + -- Use pre-rendered citeproc content (Pandoc will convert to Typst) + result:extend(citeprocBibliography[c.id]) + else + -- Use native Typst citation + result:insert(pandoc.RawInline("typst", "#cite(<" .. c.id .. ">, form: \"full\")")) + end + end + + -- Close margin note + result:insert(pandoc.RawInline("typst", "]")) + return result + end + end, Header = function(el) if number_depth and el.level > number_depth then el.classes:insert("unnumbered") diff --git a/src/resources/filters/quarto-pre/parsefiguredivs.lua b/src/resources/filters/quarto-pre/parsefiguredivs.lua index 288204d3115..6215af8f2e0 100644 --- a/src/resources/filters/quarto-pre/parsefiguredivs.lua +++ b/src/resources/filters/quarto-pre/parsefiguredivs.lua @@ -257,7 +257,18 @@ function parse_floatreftargets() elseif div.attributes[caption_attr_key] ~= nil then caption = pandoc.Plain(string_to_quarto_ast_inlines(div.attributes[caption_attr_key])) div.attributes[caption_attr_key] = nil - else + elseif ref == "lst" then + -- For listings from cell options, the caption may be on a nested CodeBlock + _quarto.ast.walk(content, { + CodeBlock = function(code) + if code.attr.attributes[caption_attr_key] then + caption = pandoc.Plain(string_to_quarto_ast_inlines(code.attr.attributes[caption_attr_key])) + code.attr.attributes[caption_attr_key] = nil + end + end + }) + end + if caption == nil then -- it's possible that the content of this div includes a table with a caption -- so we'll go root around for that. local found_caption = false @@ -331,26 +342,46 @@ function parse_floatreftargets() local layout_classes = attr.classes:filter( function(c) return c:match("^column-") end ) - if #layout_classes then - attr.classes = attr.classes:filter( - function(c) return not layout_classes:includes(c) end) - div.classes = div.classes:filter( - function(c) return not layout_classes:includes(c) end) - -- if the div is a cell, then all layout attributes need to be - -- forwarded to the cell .cell-output-display content divs - content = _quarto.ast.walk(content, { - Div = function(div) - if div.classes:includes("cell-output-display") then - div.classes:extend(layout_classes) - return _quarto.ast.walk(div, { - Table = function(tbl) - tbl.classes:insert("do-not-create-environment") - return tbl - end - }) + if #layout_classes > 0 then + -- Check if there are cell-output-display divs to forward to + local has_cell_output_display = false + _quarto.ast.walk(content, { + Div = function(subdiv) + if subdiv.classes:includes("cell-output-display") then + has_cell_output_display = true end end - }) + }) + + if has_cell_output_display then + -- Forward layout classes to cell-output-display divs + content = _quarto.ast.walk(content, { + Div = function(subdiv) + if subdiv.classes:includes("cell-output-display") then + subdiv.classes:extend(layout_classes) + return _quarto.ast.walk(subdiv, { + Table = function(tbl) + tbl.classes:insert("do-not-create-environment") + return tbl + end + }) + end + end + }) + -- Remove layout classes from div + div.classes = div.classes:filter( + function(c) return not layout_classes:includes(c) end) + -- Strip fullwidth layout classes from attr (columns.lua handles wideblock wrapping) + -- but keep margin classes so FloatRefTarget can use notefigure + attr.classes = attr.classes:filter(function(c) + if c == "column-margin" or c == "aside" then + return true -- keep margin classes + end + return not layout_classes:includes(c) -- strip other layout classes + end) + end + -- If no cell-output-display (e.g., listings with echo:true eval:false), + -- keep layout_classes on attr so the FloatRefTarget inherits them end end diff --git a/src/resources/formats/typst/packages/preview/marginalia/0.3.1/README.md b/src/resources/formats/typst/packages/preview/marginalia/0.3.1/README.md new file mode 100644 index 00000000000..c763c3dc83c --- /dev/null +++ b/src/resources/formats/typst/packages/preview/marginalia/0.3.1/README.md @@ -0,0 +1,186 @@ +# Marginalia + +## Setup + +Put something akin to the following at the start of your `.typ` file: + +```typ +#import "@preview/marginalia:0.3.1" as marginalia: note, notefigure, wideblock + +#show: marginalia.setup.with( + // inner: ( far: 5mm, width: 15mm, sep: 5mm ), + // outer: ( far: 5mm, width: 15mm, sep: 5mm ), + // top: 2.5cm, + // bottom: 2.5cm, + // book: false, + // clearance: 12pt, +) +``` + +If `book` is `false`, `inner` and `outer` correspond to the left and right +margins respectively. If book is true, the margins swap sides on even and odd +pages. Notes are placed in the outside margin by default. + +Where you can then customize these options to your preferences. Shown here (as +comments) are the default values taken if the corresponding keys are unset. +[Please refer to the PDF documentation for more details on the configuration and the provided commands.](https://github.com/nleanba/typst-marginalia/blob/v0.3.1/Marginalia.pdf?raw=true) + +Additionally, I recommend using Typst's partial function application feature to +customize other aspects of the notes consistently: + +```typ +#let note = note.with(/* options here */) +#let notefigure = notefigure.with(/* same options here */) +``` + +## Margin-Notes + +Provided via the `#note[...]` command. + +_New in version 0.3.0:_ Notes can be labeled and referenced: If you write +`#note[]`, then `@xyz` just works! + +- `#note(side: "inner")[...]` to put it on the inside margin (left margin for + single-sided documents). + + Also accepts: `auto`=`"outer"`, `"left"`, `"right"`. + +- `#note(counter: none)[...]` to remove the marker. + + The display of the marker can be customized with the `numbering`, + `anchor-numbering`, and `flush-numbering` parameters. Refer to the docs for + details. + +- `#note(shift: false)[...]` to force exact position of the note. + + Also accepts `auto` (behavior depends on whether it has a marker), `true`, + `"avoid"` and `"ignore"`. + +- And more options for fine control. All details are in the docs. + +## Wide Blocks + +Provided via the `#wideblock[...]` command. + +- `#wideblock(side: "inner")[...]` to extend into the inside margin instead. + + Also accepts: `auto`=`"outer"`, `"left"`, `"right"`, or `"both"`. + +Note: Wideblocks do not handle pagebreaks well, especially in `book: true` +documents. This is a limitation of Typst which does not (yet) provide a robust +way of detecting and reacting to page breaks. + +## Figures + +You can use figures as normal, also within wideblocks. To get captions on the +side, use + +1. If you want top-aligned captions: + +```typ +#set figure(gap: 0pt) // neccessary in both cases +#set figure.caption(position: top) +#show figure.caption.where(position: top): note.with( + alignment: "top", counter: none, shift: "avoid", keep-order: true, + dy: -0.01pt, // this is so that the caption is placed above wide figures. +) +``` + +2. If you want bottom-aligned captions: + +```typ +#set figure(gap: 0pt) // neccessary in both cases +#set figure.caption(position: bottom) // (this is the default) +#show figure.caption.where(position: bottom): note.with( + alignment: "bottom", counter: none, shift: "avoid", keep-order: true) +``` + +### Figures in the Margin + +For small figures, the package also provides a `notefigure` command which places +the figure in the margin. + +```typ +#notefigure( + rect(width: 100%), + caption: [A notefigure.], +) +``` + +It takes all the same options as `#note[]`, with some additions. In particular, + +- You can use `#notefigure(note-label: , ..)` to label the underlying note + (if you want to reference it like a note) + +- `#notefigure(show-caption: .., ..)` is how you change the caption rendering. + NB.: this function is expected to take two arguments, please consult the docs. + +## Utilities + +- `#marginalia.header()` for easy two/three-column headers +- `#show: marginalia.show-frame` to show the page layout with background lines +- `#marginalia.note-numbering()` to generate your own numberings from sequences + of symbols +- `#marginalia.ref()` to reference notes by relative index, without using + labels. +- `#marginalia.get-left()` and `#marginalia.get-right()` to get contextual + layout information. + +## Manual + +[Full Manual →](https://github.com/nleanba/typst-marginalia/blob/v0.3.1/Marginalia.pdf?raw=true) +[![first page of the documentation](https://github.com/nleanba/typst-marginalia/raw/refs/tags/v0.3.1/preview.svg)](https://github.com/nleanba/typst-marginalia/blob/v0.3.1/Marginalia.pdf?raw=true) + +### Changelog + +- 0.3.1 + - Text written right-to-left is now supported. +- 0.3.0 + - Notes and notefigures can now be labeled and referenced. The `label` + parameter on notefigures has been removed, a `note-label` parameter has been + added. + - Recommended way to disable numbering a note is using `counter: none`, this + now works uniformly for notes and notefigures. (Enable markers for a + notefigure simply by using `counter: marginalia.notecounter`) + - Note markers now link to the anchor (and vice versa). Controlled via new + `link-anchor` property. +- 0.2.4 + - Pages with `height: auto` work now. + - Added `ref` utility function. +- 0.2.3: The counter used for notes can now be customized. +- 0.2.2 + - More flexible `alignment` parameter replaces `align-baseline`. + (`notefigure.dy` no longer takes a relative length, use `alignemnt` + instead.) + - Added `show-frame` and `header` utility functions. +- 0.2.1: Allow customizing the anchor independently of the in-note number using + `anchor-numbering`. +- 0.2.0 + - `block-style` can now be a function, allowing to customize the style for + even and odd pages. + - `reverse` and `double` parameters have been replaced by a uniform `side` + parameter. + - Setup is now done using the `setup` show-rule. (`configure()` and + `page-setup()` have been removed) + - `numbering` and `flush-numbering` parameters are now per-note. (`numbered` + has been removed.) +- 0.1.4: New styling parameter `block-style`. +- 0.1.3 + - New styling parameters `par-style`, and `text-style`. + - Added `shift` and `keep-order` options. +- 0.1.1 + - Notes will now avoid each other for any amount of notes. + - Added `notefigure`. + - Added `clearance` configuration option. + +(Not listing bugfixes, see the +[release notes on GitHub](https://github.com/nleanba/typst-marginalia/releases) +for the full details.) + +## Feedback + +Have you encountered a bug? +[Please report it as an issue in my GitHub repository.](https://github.com/nleanba/typst-marginalia/issues) + +Has this package been useful to you? +[I am always happy when someone gives me a ~~sticker~~ star⭐](https://github.com/nleanba/typst-marginalia) diff --git a/src/resources/formats/typst/packages/preview/marginalia/0.3.1/UNLICENSE b/src/resources/formats/typst/packages/preview/marginalia/0.3.1/UNLICENSE new file mode 100644 index 00000000000..fdddb29aa44 --- /dev/null +++ b/src/resources/formats/typst/packages/preview/marginalia/0.3.1/UNLICENSE @@ -0,0 +1,24 @@ +This is free and unencumbered software released into the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or +distribute this software, either in source code form or as a compiled +binary, for any purpose, commercial or non-commercial, and by any +means. + +In jurisdictions that recognize copyright laws, the author or authors +of this software dedicate any and all copyright interest in the +software to the public domain. We make this dedication for the benefit +of the public at large and to the detriment of our heirs and +successors. We intend this dedication to be an overt act of +relinquishment in perpetuity of all present and future rights to this +software under copyright law. + +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 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. + +For more information, please refer to diff --git a/src/resources/formats/typst/packages/preview/marginalia/0.3.1/lib.typ b/src/resources/formats/typst/packages/preview/marginalia/0.3.1/lib.typ new file mode 100644 index 00000000000..9810cd956ae --- /dev/null +++ b/src/resources/formats/typst/packages/preview/marginalia/0.3.1/lib.typ @@ -0,0 +1,1294 @@ + +/* Config Setup */ + +/// The default counter used for the note icons. +/// +/// If you use @note-numbering without @note-numbering.repeat, it is recommended you reset this occasionally, e.g. per heading or per page. +/// #example(scale-preview: 100%, ```typc notecounter.update(1)```) +/// -> counter +#let notecounter = counter("marginalia-note") + +/// Icons to use for note markers. +/// +/// ```typc ("◆", "●", "■", "▲", "♥", "◇", "○", "□", "△", "♡")``` +#let note-markers = ("◆", "●", "■", "▲", "♥", "◇", "○", "□", "△", "♡") +/// Icons to use for note markers, alternating filled/outlined. +/// +/// ```typc ("●", "○", "◆", "◇", "■", "□", "▲", "△", "♥", "♡")``` +#let note-markers-alternating = ("●", "○", "◆", "◇", "■", "□", "▲", "△", "♥", "♡") + +/// Format note marker. +/// -> content +#let note-numbering( + /// #example(```typ + /// #for i in array.range(1,15) { + /// note-numbering(markers: note-markers, i) } + /// + /// #for i in array.range(1,15) { + /// note-numbering(markers: note-markers-alternating, i) } + /// + /// #for i in array.range(1,15) { + /// note-numbering(markers: (), i) } + /// ```) + /// -> array + markers: note-markers-alternating, + /// Whether to (```typc true```) loop over the icons, or (```typc false```) continue with numbers after icons run out. + /// #example(```typ + /// #for i in array.range(1,15) { + /// note-numbering(repeat: true, i) } + /// + /// #for i in array.range(1,15) { + /// note-numbering(repeat: false, i) } + /// ```) + /// -> bool + repeat: true, + /// Wrap the symbol in a styled text function. + /// -> function + style: text.with(weight: 900, font: "Inter", size: 5pt, style: "normal", fill: rgb(54%, 72%, 95%)), + /// Whether to add a space of 2pt after the symbol. + /// If ```typc auto```, a space is only added if it is a number (the symbols have ran out). + /// -> auto | bool + space: auto, + .., + /// -> int + i, +) = { + let index = if repeat and markers.len() > 0 { calc.rem(i - 1, markers.len()) } else { i - 1 } + let symbol = if index < markers.len() { + markers.at(index) + if space == true { h(2pt) } + } else { + str(index + 1 - markers.len()) + if space == true or space == auto { h(2pt) } + } + style(symbol) +} + +///#internal() +#let _fill_config(..config) = { + let config = config.named() + // default margins a4 are 2.5 cm + let inner = config.at("inner", default: (far: 5mm, width: 15mm, sep: 5mm)) + let outer = config.at("outer", default: (far: 5mm, width: 15mm, sep: 5mm)) + return ( + inner: ( + far: inner.at("far", default: 5mm), + width: inner.at("width", default: 15mm), + sep: inner.at("sep", default: 5mm), + ), + outer: ( + far: outer.at("far", default: 5mm), + width: outer.at("width", default: 15mm), + sep: outer.at("sep", default: 5mm), + ), + top: config.at("top", default: 2.5cm), + bottom: config.at("bottom", default: 2.5cm), + book: config.at("book", default: false), + clearance: config.at("clearance", default: 12pt), + ) +} + +#let _config = state("_config", _fill_config()) + +/// Page setup helper +/// +/// This will generate a dictionary ```typc ( margin: .. )``` compatible with the passed config. +/// This can then be spread into the page setup like so: +///```typ +/// #set page( ..page-setup(..config) )``` +/// +/// Takes the same options as @setup. +/// -> dictionary +#let _page-setup( + /// Missing entries are filled with package defaults. Note: missing entries are _not_ taken from the current marginalia config, as this would require context. + /// -> dictionary + ..config, +) = { + let config = _fill_config(..config) + if config.book { + return ( + binding: left, + margin: ( + inside: config.inner.far + config.inner.width + config.inner.sep, + outside: config.outer.far + config.outer.width + config.outer.sep, + top: config.top, + bottom: config.bottom, + ), + ) + } else { + return ( + binding: left, + margin: ( + left: config.inner.far + config.inner.width + config.inner.sep, + right: config.outer.far + config.outer.width + config.outer.sep, + top: config.top, + bottom: config.bottom, + ), + ) + } +} + +/// This will update the marginalia config and setup the page with the provided config options. +/// (This means this will insert a pagebreak.) +/// +/// Use as +/// ```typ +/// #show: marginalia.setup.with(/* options here */) +/// ``` +/// +/// The default values for the margins have been chosen such that they match the default typst margins for a4. It is strongly recommended to change at least one of either `inner` or `outer` to be wide enough to actually contain text. +/// +/// This function also sets up the neccesary show-rule to allow referencing labelled notes. +/// If you also have a custom ```typ #show ref:``` rule, it may be relevant if setup is called before or after that show rule. +/// +/// #compat(( +/// "0.1.5": ( +/// [`numbering` has been replaced with @note.numbering/@notefigure.numbering. +/// #ergo[set \````typc numbering: /**/```\` directly on your notes instead of via @setup.\ Use ```typ #let note = note.with(numbering: /**/)``` for consistency.]], +/// [`flush-numbers` has been replaced by @note.flush-numbering. +/// #ergo[set \````typc flush-numbering: true```\` directly on your notes instead of via @setup.\ Use ```typ #let note = note.with(flush-numbering: /**/)``` for consistency.]], +/// ), +/// "0.2.0": ( +/// [This function does no longer apply the configuration partially, but will reset all unspecified options to the default. +/// Additionally, it replaces the `page-setup()` function that was needed previously and is no longer called `configure()`], +/// ), +/// )) +#let setup( + /// Inside/left margins. + /// - `far`: Distance between edge of page and margin (note) column. + /// - `width`: Width of the margin column. + /// - `sep`: Distance between margin column and main text column. + /// + /// The page inside/left margin should equal `far` + `width` + `sep`. + /// + /// If partial dictionary is given, it will be filled up with defaults. + /// -> dictionary + inner: (far: 5mm, width: 15mm, sep: 5mm), + /// Outside/right margins. Analogous to `inner`. + /// -> dictionary + outer: (far: 5mm, width: 15mm, sep: 5mm), + /// Top margin. + /// -> length + top: 2.5cm, + /// Bottom margin. + /// -> length + bottom: 2.5cm, + ///- If ```typc true```, will use inside/outside margins, alternating on each page. + ///- If ```typc false```, will use left/right margins with all pages the same. + /// -> bool + book: false, + /// Minimal vertical distance between notes and to wide blocks. + /// -> length + clearance: 12pt, + /// -> content + body, +) = { } +#let setup(..config, body) = { + _config.update(_fill_config(..config)) + set page(.._page-setup(..config)) + show ref: it => { + if ( + it.has("element") + and it.element != none + and it.element.has("children") + and it.element.children.len() > 1 + and it.element.children.first().func() == metadata + ) { + if it.element.children.first().value == "_marginalia_note" { + h(0pt, weak: true) + show link: it => { + show underline: i => i.body + it + } + let dest = query(selector(<_marginalia_note>).after(it.element.location())) + assert(dest.len() > 0, message: "Could not find referenced note") + link(dest.first().location(), dest.first().value.anchor) + } else if it.element.children.first().value == "_marginalia_notefigure" { + let dest = query(selector(<_marginalia_notefigure_meta>).after(it.element.location())) + assert(dest.len() > 0, message: "Could not find referenced notefigure") + if it.has("form") { + std.ref(dest.first().value.label, form: it.form, supplement: it.supplement) + } else { + std.ref(dest.first().value.label, supplement: it.supplement) + } + } else { + it + } + } else { + it + } + } + body +} + +/// // #internal[(mostly for internal use)] +/// Returns a dictionary with the keys `far`, `width`, `sep` containing the respective widths of the +/// left margin on the current page. (On both even and odd pages.) +/// +/// Requires context. +/// -> dictionary +#let get-left() = { + let config = _config.get() + if not (config.book) or calc.odd(here().page()) { + return config.inner + } else { + return config.outer + } +} + +/// // #internal[(mostly for internal use)] +/// Returns a dictionary with the keys `far`, `width`, `sep` containing the respective widths of the +/// right margin on the current page. (On both even and odd pages.) +/// +/// Requires context. +/// -> dictionary +#let get-right() = { + let config = _config.get() + if not (config.book) or calc.odd(here().page()) { + return config.outer + } else { + return config.inner + } +} + +/// Adds lines to the page background showing the various vertical and horizontal boundaries used by marginalia. +/// +/// To be used in a show-rule: +/// ```typ +/// #show: marginalia.show-frame +/// ``` +/// -> content +#let show-frame( + /// Stroke for the lines. + /// + /// ```typ + /// #show: marginalia.show-frame.with(stroke: 2pt + red) + /// ``` + /// -> color + stroke: 0.5pt + luma(90%), + /// Set to false to hide the header line + /// -> bool + header: true, + /// Set to false to hide the footer line + /// -> bool + footer: true, + /// -> content + body, +) = { + set page( + background: context { + let leftm = get-left() + let rightm = get-right() + + let topm = _config.get().top + let ascent = page.header-ascent.ratio * topm + page.header-ascent.length + place(top, dy: topm, line(length: 100%, stroke: stroke)) + if header { + place(top, dy: topm - ascent, line(length: 100%, stroke: stroke)) + } + + let bottomm = _config.get().bottom + let descent = page.footer-descent.ratio * bottomm + page.footer-descent.length + place(bottom, dy: -bottomm, line(length: 100%, stroke: stroke)) + if footer { + place(bottom, dy: -bottomm + descent, line(length: 100%, stroke: stroke)) + } + + place(left, dx: leftm.far, rect(width: leftm.width, height: 100%, stroke: (x: stroke))) + place(left, dx: leftm.far + leftm.width + leftm.sep, line(length: 100%, stroke: stroke, angle: 90deg)) + + place(right, dx: -rightm.far, rect(width: rightm.width, height: 100%, stroke: (x: stroke))) + place(right, dx: -rightm.far - rightm.width - rightm.sep, line(length: 100%, stroke: stroke, angle: 90deg)) + }, + ) + + body +} + +/// #internal[(mostly for internal use)] +/// Calculates positions for notes. +/// +/// Return type is of the form `(: offset)` +/// -> dictionary +#let _calculate-offsets( + /// Of the form + /// ```typc + /// ( + /// height: length, // total page height + /// top: length, // top margin + /// bottom: length, // bottom margin + /// ) + /// ``` + /// -> dictionary + page, + /// Of the form `(: item)` where items have the form + /// ```typc + /// ( + /// natural: length, // initial vertical position of item, relative to page + /// height: length, // vertical space needed for item + /// clearance: length, // vertical padding required. + /// // may be collapsed at top & bottom of page, and above separators + /// shift: bool | "ignore" | "avoid", // whether the item may be moved about. `auto` = move only if neccessary + /// keep-order: bool, // if false, may be reordered. if true, order relative to other `false` items is kept + /// ) + /// ``` + /// -> dictionary + items, + /// -> length + clearance, +) = { + // sorting + let ignore = () + let reoderable = () + let nonreoderable = () + for (key, item) in items.pairs() { + if item.shift == "ignore" { + ignore.push(key) + } else if item.keep-order == false { + reoderable.push((key, item.natural)) + } else { + nonreoderable.push((key, item.natural)) + } + } + reoderable = reoderable.sorted(key: ((_, pos)) => pos) + + let positions = () + + let index_r = 0 + let index_n = 0 + while index_r < reoderable.len() and index_n < nonreoderable.len() { + if reoderable.at(index_r).at(1) <= nonreoderable.at(index_n).at(1) { + positions.push(reoderable.at(index_r)) + index_r += 1 + } else { + positions.push(nonreoderable.at(index_n)) + index_n += 1 + } + } + while index_n < nonreoderable.len() { + positions.push(nonreoderable.at(index_n)) + index_n += 1 + } + while index_r < reoderable.len() { + positions.push(reoderable.at(index_r)) + index_r += 1 + } + + // shift down + let cur = page.top + let empty = 0pt + let prev-shift-avoid = false + let positions_d = () + for (key, position) in positions { + let fault = cur - position + if cur <= position { + positions_d.push((key, position)) + if items.at(key).shift == false { + empty = 0pt + } else { + empty += position - cur + } + cur = position + items.at(key).height + clearance + } else if items.at(key).shift == "avoid" { + if fault <= empty { + if prev-shift-avoid { + positions_d.push((key, cur)) + cur = cur + items.at(key).height + clearance + } else { + // can stay + positions_d.push((key, position)) + empty -= fault // ? + cur = position + items.at(key).height + clearance + } + } else { + if prev-shift-avoid { + positions_d.push((key, cur)) + cur = cur + items.at(key).height + clearance + } else { + positions_d.push((key, position + fault - empty)) + cur = position + fault - empty + items.at(key).height + clearance + empty = 0pt + } + } + } else if items.at(key).shift == false { + // check if we can swap with previous + if ( + positions_d.len() > 0 + and fault > empty + and items.at(positions_d.last().at(0)).shift != false + and ((not items.at(key).keep-order) or (not items.at(positions_d.last().at(0)).keep-order)) + ) { + let (prev, _) = positions_d.pop() + cur -= items.at(prev).height + positions_d.push((key, position)) + empty = 0pt + let new_x = calc.max(position + items.at(key).height + clearance, cur) + cur = new_x + positions_d.push((prev, cur)) + cur = cur + items.at(prev).height + clearance + } else { + positions_d.push((key, position)) + empty = 0pt + cur = calc.max(position + items.at(key).height + clearance, cur) + } + } else { + positions_d.push((key, cur)) + empty += 0pt + // empty = 0pt + cur = cur + items.at(key).height + clearance + } + prev-shift-avoid = items.at(key).shift == "avoid" + } + + let positions = () + + let max = if page.height == auto { + if positions_d.len() > 0 { + let (key, position) = positions_d.at(-1) + position + items.at(key).height + } else { 0pt } + } else { + page.height - page.bottom + } + for (key, position) in positions_d.rev() { + if max > position + items.at(key).height { + positions.push((key, position)) + max = position - clearance + } else if items.at(key).shift == false { + positions.push((key, position)) + max = calc.min(position - clearance, max) + } else { + positions.push((key, max - items.at(key).height)) + max = max - items.at(key).height - clearance + } + } + + let result = (:) + for (key, position) in positions { + result.insert(key, position - items.at(key).natural) + } + for key in ignore { + result.insert(key, 0pt) + } + result +} + +// #let _parent-note = state("_marginalia_parent-note-natural", false) + +#let _note_extends_left = state("_note_extends_left", (:)) +// #let _note_offsets_left = state("_note_offsets_left", (:)) + +#let _note_extends_right = state("_note_extends_right", (:)) +// #let _note_offsets_right = state("_note_offsets_right", (:)) + + +// Internal use. +// Requires Context. +// -> "left" | "right" +#let _get-near-side() = { + let anchor = here().position() + let pagewidth = if page.flipped { page.height } else { page.width } + let left = get-left() + let right = get-right() + if ( + anchor.x - left.far - left.width - left.sep + < (pagewidth - left.far - left.width - left.sep - right.far - right.width - right.sep) / 2 + ) { + "left" + } else { + "right" + } +} + +// Internal use. +#let place-note( + /// -> "right" | "left" | "near" + side: "right", + dy: 0pt, + keep-order: false, + shift: true, + body, +) = ( + box( + width: 0pt, + context { + assert(side == "left" or side == "right" or side == "near", message: "side must be left or right.") + + let dy = dy.to-absolute() + let anchor = here().position() + let pagewidth = if page.flipped { page.height } else { page.width } + let page_num = str(anchor.page) + + let side = if side == "near" { _get-near-side() } else { side } + + let width = if side == "left" { get-left().width } else { get-right().width } + let height = measure(body, width: width).height + let notebox = box(width: width, height: height, body) + let natural_position = anchor.y + dy + + let extends = if side == "right" { _note_extends_right } else { _note_extends_left } + // let offsets = if side == "right" { _note_offsets_right } else { _note_offsets_left } + + let current = extends.get().at(page_num, default: ()) + let index = current.len() + + extends.update(old => { + let oldpage = old.at(page_num, default: ()) + oldpage.push((natural: natural_position, height: height, shift: shift, keep-order: keep-order)) + old.insert(page_num, oldpage) + old + }) + + let offset_page = ( + height: if page.flipped { page.width } else { page.height }, + bottom: _config.get().bottom, + top: _config.get().top, + ) + let offset_items = extends + .final() + .at(page_num, default: ()) + .enumerate() + .map(((key, item)) => (str(key), item)) + .to-dict() + let offset_clearance = _config.get().clearance + let dbg = _calculate-offsets(offset_page, offset_items, offset_clearance) + // TODO: trying to cache the results does not work. + // offsets.update(old => { + // // only do calculations if not yet in old + // if page_num in old { + // old + // } else { + // let new_offsets = _calculate-offsets(offset_page, offset_items, offset_clearance) + // assert(dbg == new_offsets) + // old.insert(page_num, new_offsets) + // old + // } + // }) + + // let vadjust = dy + offsets.final().at(page_num, default: (:)).at(str(index), default: 0pt) + let vadjust = dy + dbg.at(str(index), default: 0pt) + + // box(width: 0pt, place(box(fill: yellow, width: 1cm, text(size: 5pt)[#anchor.y + #vadjust = #(anchor.y + vadjust)]))) + + let hadjust = if side == "left" { get-left().far - anchor.x } else { + pagewidth - anchor.x - get-right().far - get-right().width + } + + place(left, dx: hadjust, dy: vadjust, notebox) + }, + ) +) + +/// Create a marginnote. +/// Will adjust it's position downwards to avoid previously placed notes, and upwards to avoid extending past the bottom margin. +/// +/// Notes can be attached a label and are referenceable (if @setup was run). +/// +/// #compat(( +/// "0.1.5": ( +/// [`reverse` has been replaced with @note.side. +/// #ergo[use \````typc side: "inner"```\` instead of \````typc reverse: true```\`]], +/// [`numbered` has been replaced with @note.numbering. +/// #ergo[use \````typc numbering: "none"```\` instead of \````typc numbered: false```\`]], +/// ), +/// "0.2.2": ( +/// [`align-baseline` has been replaced with @note.alignment. +/// #ergo[use \````typc alignment: "top"```\` instead of \````typc align-baseline: false```\`]], +/// ), +/// )) +#let note( + /// Counter to use for this note. + /// Can be set to ```typc none``` do disable numbering this note. + /// + /// Will only be stepped if `numbering` is not ```typc none```. + /// -> counter | none + counter: notecounter, + /// Function or `numbering`-string to generate the note markers from the `notecounter`. + /// - If ```typc none```, will not step the `counter`. + /// - Will be ignored if `counter` is ```typc none```. + /// + /// Examples: + /// - ```typc (..i) => super(numbering("1", ..i))``` for superscript numbers + /// #note(numbering: (..i) => super(numbering("1", ..i)))[E.g.] + /// - ```typc (..i) => super(numbering("a", ..i))``` for superscript letters + /// #note(numbering: (..i) => super(numbering("a", ..i)))[E.g.] + /// - ```typc marginalia.note-numbering.with(repeat: false, markers: ())``` for small blue numbers + /// #note(numbering: marginalia.note-numbering.with(repeat: false, markers: ()))[E.g.] + /// -> none | function | string + numbering: note-numbering, + /// Used to generate the marker for the anchor (i.e. the one in the surrounding text) + /// + /// - If ```typc auto```, will use the given @note.numbering. + /// - Will be ignored if `counter` is ```typc none```. + /// -> none | auto | function | string + anchor-numbering: auto, + /// Whether to have the anchor link to the note, and vice-versa. + /// -> bool + link-anchor: true, + /// Disallow note markers hanging into the whitespace. + /// - If ```typc auto```, acts like ```typc false``` if @note.anchor-numbering is ```typc auto```. + /// -> auto | bool + flush-numbering: auto, + /// Which side to place the note. + /// ```typc auto``` defaults to ```typc "outer"```. + /// In non-book documents, ```typc "outer"```/```typc "inner"``` are equivalent to ```typc "right"```/```typc "left"``` respectively. + /// ```typc "near"``` will place the note in the left or right margin, depending which is nearer. + /// -> auto | "outer" | "inner" | "left" | "right" | "near" + side: auto, + /// Vertical alignment of the note. + /// #let note = note.with(block-style: (outset: (left: 5cm), fill: oklch(70%, 0.1, 120deg, 20%)), shift: "ignore") + /// - ```typc "bottom"``` aligns the bottom edge of the note with the main text baseline.#note(alignment: "bottom")[Bottom\ ...] + /// - ```typc "baseline"``` aligns the first baseline of the note with the main text baseline.#note(alignment: "baseline")[Baseline\ ...] + /// - ```typc "top"``` aligns the top edge of the note with the main text baseline.#note(alignment: "top")[Top\ ...] + /// + /// -> "baseline" | "top" | "bottom" + alignment: "baseline", + /// Inital vertical offset of the note, relative to the alignment point. + /// The note may get shifted still to avoid other notes depending on @note.shift. + /// -> length + dy: 0pt, + /// Notes with ```typc keep-order: true``` are not re-ordered relative to one another. + /// + /// // If ```typc auto```, defaults to false unless ```typc numbering``` is ```typc none``. + /// // -> bool | auto + /// -> bool + keep-order: false, + /// Whether the note may get shifted vertically to avoid other notes. + /// - ```typc true```: The note may shift to avoid other notes, wide-blocks and the top/bottom margins. + /// - ```typc false```: The note is placed exactly where it appears, and other notes may shift to avoid it. + /// - ```typc "avoid"```: The note is only shifted if shifting other notes is not sufficent to avoid a collision. + /// E.g. if it would collide with a wideblock or a note with ```typc shift: false```. + /// - ```typc "ignore"```: Like ```typc false```, but other notes do not try to avoid it. + /// - ```typc auto```: ```typc true``` if numbered, ```typc "avoid"``` otherwise. + /// -> bool | auto | "avoid" | "ignore" + shift: auto, + /// Will be used to ```typc set``` the text style. + /// -> dictionary + text-style: (size: 9.35pt, style: "normal", weight: "regular"), + /// Will be used to ```typc set``` the par style. + /// -> dictionary + par-style: (spacing: 1.2em, leading: 0.5em, hanging-indent: 0pt), + /// Will be passed to the `block` containing the note body. + /// If this is a function, it will be called with ```typc "left"``` or ```typc "right"``` as its argument, and the result is passed to the `block`. + /// -> dictionary | function + block-style: (width: 100%), + /// -> content + body, +) = { + metadata("_marginalia_note") + + let numbering = if counter == none { none } else { numbering } + if numbering != none { counter.step() } + let flush-numbering = if flush-numbering == auto { anchor-numbering != auto } else { flush-numbering } + let anchor-numbering = if anchor-numbering == auto { numbering } else { anchor-numbering } + + // let keep-order = if keep-order == auto { not numbered } else { keep-orders } + let shift = if shift == auto { if numbering != none { true } else { "avoid" } } else { shift } + + let text-style = (size: 9.35pt, style: "normal", weight: "regular", ..text-style) + let par-style = (spacing: 1.2em, leading: 0.5em, hanging-indent: 0pt, ..par-style) + + context { + let side = if side == "outer" or side == auto { + if _config.get().book and calc.even(here().page()) { "left" } else { "right" } + } else if side == "inner" { + if _config.get().book and calc.even(here().page()) { "right" } else { "left" } + } else { side } + + assert( + side == "left" or side == "right" or side == "near", + message: "side must be auto, left, right, near, outer, or inner.", + ) + let body = if numbering != none { + let number = { + if link-anchor { + show link: it => { + show underline: i => i.body + it + } + link(here(), counter.display(numbering)) + } else { + counter.display(numbering) + } + } + if flush-numbering { + box(number) + h(0pt, weak: true) + body + } else { + body + let width = measure({ + set text(..text-style) + set par(..par-style) + number + }).width + if width < 8pt { width = 8pt } + place( + top + start, + { + h(-width) // HACK: uses `h` instad of `dx` so it works in ltr and rtl contexts + box( + width: width, + { + h(1fr) + sym.zws + number + h(1fr) + }, + ) + }, + ) + } + } else { + body + } + + let block-style = if type(block-style) == function { + block-style(side) + } else { + block-style + } + + let anchor = if anchor-numbering != none and counter != none { + counter.display(anchor-numbering) + } else [] + + let body = align( + top, + block( + width: 100%, + ..block-style, + align( + start, + { + // HACK: inner align ensures text-direction is unaffected by `place(left,..)` + set text(..text-style) + set par(..par-style) + [#metadata((note: true, anchor: anchor))<_marginalia_note>#body] + }, + ), + ), + ) + + let dy-adjust = if alignment == "baseline" { + measure(text(..text-style, sym.zws)).height + } else if alignment == "top" { + 0pt + } else if alignment == "bottom" { + let width = if side == "left" { + get-left().width + } else { + get-right().width + } + measure(width: width, body).height + } else { + panic("Unknown value for alignment") + } + let dy = dy - dy-adjust + + h(0pt, weak: true) + box({ + if anchor-numbering != none { + if link-anchor { + show link: it => { + show underline: i => i.body + it + } + let dest = query(selector(<_marginalia_note>).after(here())) + if dest.len() > 0 { + link(dest.first().location(), anchor) + } else { + anchor + } + } else { + anchor + } + } + place-note(side: side, dy: dy, keep-order: keep-order, shift: shift, body) + }) + } +} + +/// Reference a nearby margin note. Will place the same anchor as that note had. +/// +/// Be aware that notes without an anchor (including notefigures) still count for the offset, but the rendered link is empty. +/// +/// #example(scale-preview: 100%, ```typ +/// This is a note: #note[Blah Blah] +/// +/// This is a link to that note: +/// #marginalia.ref(-1) +/// +/// This is an unnumbered note: +/// #note(counter: none)[Blah Blah] +/// +/// This is a useless link to that note: +/// #marginalia.ref(-1) +/// ```) +#let ref( + /// How many notes away the target note is. + /// - ```typc -1```: The previous note. + /// - ```typc 0```: Disallowed + /// - ```typc 1```: The next note. + /// -> integer + offset, +) = context { + h(0pt, weak: true) + show link: it => { + show underline: i => i.body + it + } + assert(offset != 0, message: "marginalia.ref offset must not be 0.") + if offset > 0 { + let dest = query(selector(<_marginalia_note>).after(here())) + assert(dest.len() > offset, message: "Not enough notes after this to reference") + link(dest.at(offset - 1).location(), dest.at(offset - 1).value.anchor) + } else { + let dest = query(selector(<_marginalia_note>).before(here())) + assert(dest.len() >= -offset, message: "Not enough notes before this to reference") + link(dest.at(offset).location(), dest.at(offset).value.anchor) + } +} + +/// Creates a figure in the margin. +/// +/// Parameters `numbering`, `anchor-numbering`, `flush-numbering`, `side`, `keep-order`, `shift`, `text-style`, `par-style`, and `block-style` work the same as for @note. +/// +/// Notefigures can be attached a label and are referenceable (if @setup was run). Furthermore, the underlying @note can be given a label using the `note-label` parameter. +/// +/// #compat(( +/// "0.1.5": ( +/// [`reverse` has been replaced with @notefigure.side. +/// #ergo[use \````typc side: "inner"```\` instead of \````typc reverse: true```\`]], +/// [`numbered` has been replaced with @notefigure.numbering. +/// #ergo[use \````typc numbering: marginalia.note-numbering```\` instead of \````typc numbered: true```\`]], +/// ), +/// "0.2.2": ( +/// [@notefigure.dy no longer takes a relative length, instead @notefigure.alignment was added.], +/// ), +/// "0.3.0": ( +/// [The `label` argument has been removed. +/// #ergo[Instead of ```typ #notefigure(label: , ..)```, use ```typ #notefigure(..)```.]], +/// ) +/// )) +/// -> content +#let notefigure( + /// Same as @note.numbering, but with different default. + /// Set this to `marginalia.notecounter` (or another counter) to enable numbering this note. + /// + /// Will only be stepped if `numbering` is not ```typc none```. + /// + /// #example(scale-preview: 100%, dir: ttb, ```typ + /// Notefigure with marker: + /// #notefigure(rect(height: 10pt, width: 100%), caption: [...], counter: marginalia.notecounter) + /// ```) + /// #example(scale-preview: 100%, dir: ttb, ```typ + /// Using the figure counter for the numbering: + /// #notefigure( + /// rect(height: 10pt, width: 100%), caption: [...], + /// counter: counter(figure.where(kind: image)), + /// anchor-numbering: (.., i) => super[fig. #numbering("1", i+1)], numbering: none, + /// ) + /// ```) + /// -> counter | none + counter: none, + /// Same as @note.numbering. + /// -> none | function | string + numbering: note-numbering, + /// Same as @note.anchor-numbering. + /// -> none | auto | function | string + anchor-numbering: auto, + /// Whether to have the anchor link to the note, and vice-versa. + /// -> bool + link-anchor: true, + /// Disallow note markers hanging into the whitespace. + /// - If ```typc auto```, acts like ```typc false``` if @notefigure.anchor-numbering is ```typc auto```. + /// -> auto | bool + flush-numbering: auto, + /// Which side to place the note. + /// ```typc auto``` defaults to ```typc "outer"```. + /// In non-book documents, ```typc "outer"```/```typc "inner"``` are equivalent to ```typc "right"```/```typc "left"``` respectively. + /// -> auto | "outer" | "inner" | "left" | "right" | "near" + side: auto, + /// Vertical alignment of the notefigure. + /// #let notefigure = notefigure.with(shift: "ignore", show-caption: (number, caption) => block(outset: (left: 5cm), width: 100%, fill: oklch(70%, 0.1, 120deg, 20%), { + /// number; caption.supplement; [ ]; caption.counter.display(caption.numbering); caption.separator; caption.body + /// })) + /// - ```typc "top"```, ```typc "bottom"``` work the same as @note.alignment. + /// - ```typc "baseline"``` aligns the first baseline of the _caption_ with the main text baseline. + /// #notefigure(rect(width: 100%, height: 2pt, stroke: 0.5pt + gray), alignment: "baseline", caption: [Baseline]) + /// - ```typc "caption-top"``` aligns the top of the caption with the main text baseline. + /// #notefigure(rect(width: 100%, height: 2pt, stroke: 0.5pt + gray), alignment: "caption-top", caption: [Caption-top]) + /// + /// -> "baseline" | "top" | "bottom" | "caption-top" + alignment: "baseline", + /// Inital vertical offset of the notefigure, relative to the alignment point. + /// + /// The notefigure may get shifted still to avoid other notes depending on ```typc notefigure.shift```. + /// -> length + dy: 0pt, + /// -> bool + keep-order: false, + /// -> bool | auto | "avoid" | "ignore" + shift: auto, + /// Will be used to ```typc set``` the text style. + /// -> dictionary + text-style: (size: 9.35pt, style: "normal", weight: "regular"), + /// Will be used to ```typc set``` the par style. + /// -> dictionary + par-style: (spacing: 1.2em, leading: 0.5em, hanging-indent: 0pt), + /// Will be passed to the `block` containing the note body (this contains the entire figure). + /// If this is a function, it will be called with ```typc "left"``` or ```typc "right"``` as its argument, and the result is passed to the `block`. + /// -> dictionary | function + block-style: (width: 100%), + /// A function with two arguments, the (note-)number and the caption. + /// Will be called as the caption show rule. + /// + /// If @notefigure.numbering is ```typc none```, `number` will be ```typc none```. + /// -> function + show-caption: (number, caption) => { + number + caption.supplement + [ ] + caption.counter.display(caption.numbering) + caption.separator + caption.body + }, + /// Pass-through to ```typ #figure()```, but used to adjust the vertical position. + /// -> length + gap: 0.55em, + /// A label to attach to the note. Referencing this label will repeat the anchor, + /// so it is only really useful if @notefigure.anchor-numbering is not ```typc none```. + /// -> none | label + note-label: none, + /// The figure content, e.g.~an image. Pass-through to ```typ #figure()```, but used to adjust the vertical position. + /// -> content + content, + /// Pass-through to ```typ #figure()```. + /// + /// (E.g. `caption`) + /// -> arguments + ..figureargs, +) = { + [#metadata("_marginalia_notefigure")<_marginalia_notefigure>] + + let numbering = if counter == none { none } else { numbering } + if numbering != none { counter.step() } + let flush-numbering = if flush-numbering == auto { anchor-numbering != auto } else { flush-numbering } + let anchor-numbering = if anchor-numbering == auto { numbering } else { anchor-numbering } + + let shift = if shift == auto { if numbering != none { true } else { "avoid" } } else { shift } + + let text-style = (size: 9.35pt, style: "normal", weight: "regular", ..text-style) + let par-style = (spacing: 1.2em, leading: 0.5em, hanging-indent: 0pt, ..par-style) + + context { + let number = if counter != none and numbering != none { + if link-anchor { + show link: it => { + show underline: i => i.body + it + } + link(here(), counter.display(numbering)) + } else { + counter.display(numbering) + } + } else { none } + let number-width = if numbering != none and not flush-numbering { + let width = measure({ + set text(..text-style) + set par(..par-style) + number + }).width + if width < 8pt { 8pt } else { width } + } else { 0pt } + + set figure.caption(position: bottom) + show figure.caption: it => { + set align(left) + if numbering != none { + context if flush-numbering { + show-caption( + number, + it, + ) + } else { + show-caption( + place( + // top + left, + left, + dx: -number-width, + box( + width: number-width, + { + h(1fr) + sym.zws + number + h(1fr) + }, + ), + ), + it, + ) + } + } else { + context show-caption(none, it) + } + } + + let side = if side == "outer" or side == auto { + if _config.get().book and calc.even(here().page()) { "left" } else { "right" } + } else if side == "inner" { + if _config.get().book and calc.even(here().page()) { "right" } else { "left" } + } else if side == "near" { + _get-near-side() + } else { + side + } + + let width = if side == "left" { + get-left().width + } else { + get-right().width + } + let height = ( + measure( + width: width, + { + set text(..text-style) + set par(..par-style) + content + }, + ).height + + measure(text(..text-style, v(gap))).height + ) + let baseline-height = measure(text(..text-style, sym.zws)).height + let alignment = alignment + let dy = dy + if alignment == "baseline" { + alignment = "top" + dy = dy - height - baseline-height + } else if alignment == "caption-top" { + alignment = "top" + dy = dy - height + } + + let index = query(selector(<_marginalia_notefigure>).before(here())).len() + let figure-label = std.label("_marginalia_notefigure__" + str(index)) + + [#note( + numbering: none, + anchor-numbering: anchor-numbering, + link-anchor: link-anchor, + counter: counter, + side: side, + dy: dy, + alignment: alignment, + keep-order: keep-order, + shift: shift, + text-style: text-style, + par-style: par-style, + block-style: block-style, + [#figure( + content, + gap: gap, + placement: none, + ..figureargs, + )#figure-label], + )#note-label] + // for unclear reasons, if this is placed before the note, it becomes part of the content referenced by note-label. + [#metadata((label: figure-label))<_marginalia_notefigure_meta>] + } +} + +/// Creates a block that extends into the outside/right margin. +/// +/// Note: This does not handle page-breaks sensibly. +/// If ```typc config.book = false```, this is not a problem, as then the margins on all pages are the same. +/// However, when using alternating page margins, a multi-page `wideblock` will not work properly. +/// To be able to set this appendix in a many-page wideblock, this code was used: +/// ```typ +/// #show: marginalia.setup.with(..config, book: false) +/// #wideblock(side: "inner")[...] +/// ``` +/// +/// #compat(( +/// "0.1.5": ( +/// [`reverse` and `double` have been replaced with @wideblock.side. +/// #ergo[use \````typc side: "inner"```\` instead of \````typc reverse: true```\`] +/// #ergo[use \````typc side: "both"```\` instead of \````typc double: true```\`]], +/// ), +/// )) +/// -> content +#let wideblock( + /// Which side to extend into. + /// ```typc auto``` defaults to ```typc "outer"```. + /// In non-book documents, ```typc "outer"```/```typc "inner"``` are equivalent to ```typc "right"```/```typc "left"``` respectively. + /// -> auto | "outer" | "inner" | "left" | "right" | "both" + side: auto, + /// -> content + body, +) = ( + context { + let left-margin = get-left() + let right-margin = get-right() + + let side = if side == "outer" or side == auto { + if _config.get().book and calc.even(here().page()) { "left" } else { "right" } + } else if side == "inner" { + if _config.get().book and calc.even(here().page()) { "right" } else { "left" } + } else { side } + + assert( + side == "left" or side == "right" or side == "both", + message: "side must be auto, both, left, right, outer, or inner.", + ) + + let left = if side == "both" or side == "left" { + left-margin.width + left-margin.sep + } else { + 0pt + } + let right = if side == "both" or side == "right" { + right-margin.width + right-margin.sep + } else { + 0pt + } + + let position = here().position().y + let page_num = str(here().page()) + let pagewidth = if page.flipped { page.height } else { page.width } + let linewidth = ( + pagewidth + - left-margin.far + - left-margin.width + - left-margin.sep + - right-margin.far + - right-margin.width + - right-margin.sep + ) + let height = measure(width: linewidth + left + right, body).height + + if left != 0pt { + let current = _note_extends_left.get().at(page_num, default: ()) + let index = current.len() + _note_extends_left.update(old => { + let oldpage = old.at(page_num, default: ()) + oldpage.push((natural: position, height: height, shift: false, keep-order: false)) + old.insert(page_num, oldpage) + old + }) + } + + if right != 0pt { + let current = _note_extends_right.get().at(page_num, default: ()) + let index = current.len() + _note_extends_right.update(old => { + let oldpage = old.at(page_num, default: ()) + oldpage.push((natural: position, height: height, shift: false, keep-order: false)) + old.insert(page_num, oldpage) + old + }) + } + + pad(left: -left, right: -right, body) + } +) + + +// #let header( +// /// Will be used to ```typc set``` the text style. +// /// -> dictionary +// text-style: (:), +// /// -> optional | (content, content, content) +// even: (none, none, none), +// /// -> optional | (content, content, content) +// odd: (none, none, none), +// /// -> optional | content +// inner, +// /// -> optional | content +// center, +// /// -> optional | content +// outer, +// ) = {} + +/// This generates a @wideblock and divides its arguments into three boxes sized to match the margin setup. +/// -> content +#let header( + /// Will be used to ```typc set``` the text style. + /// -> dictionary + text-style: (:), + /// Up to three positional arguments. + /// They are interpreted as `⟨outer⟩`, `⟨center⟩⟨outer⟩`, or `⟨inner⟩⟨center⟩⟨outer⟩`, + /// depending on how many there are. + ..args, + /// This is ignored if there are positional parameters or if @setup.book is ```typc false```. + /// + /// Otherwise, it is interpreted as `(⟨outer⟩, ⟨center⟩, ⟨inner⟩)` on even pages. + /// -> array + even: (), + /// This is ignored if there are positional parameters. + /// + /// Otherwise, it is interpreted as `(⟨inner⟩, ⟨center⟩, ⟨outer⟩)` on odd pages or, if @setup.book is ```typc false```, on all pages. + /// -> array + odd: (), +) = context { + let leftm = get-left() + let rightm = get-right() + let is-odd = not _config.get().book or calc.odd(here().page()) + + set text(..text-style) + + let pos = args.pos() + if pos.len() > 0 { + // if args.named().len() > 0 { panic("cannot have named and positional arguments") } + if pos.len() == 1 { + pos = (none, none, ..pos) + } else if pos.len() == 2 { + pos = (none, ..pos) + } + let (inner, center, outer) = pos + wideblock( + side: "both", + { + box(width: leftm.width, if is-odd { inner } else { outer }) + h(leftm.sep) + box(width: 1fr, center) + h(rightm.sep) + box(width: rightm.width, if is-odd { outer } else { inner }) + }, + ) + } else { + wideblock( + side: "both", + { + box( + width: leftm.width, + if is-odd { + odd.at(0, default: none) + } else { + even.at(0, default: none) + }, + ) + h(leftm.sep) + box( + width: 1fr, + if is-odd { + odd.at(1, default: none) + } else { + even.at(1, default: none) + }, + ) + h(rightm.sep) + box( + width: rightm.width, + if is-odd { + odd.at(2, default: none) + } else { + even.at(2, default: none) + }, + ) + }, + ) + } +} diff --git a/src/resources/formats/typst/packages/preview/marginalia/0.3.1/typst.toml b/src/resources/formats/typst/packages/preview/marginalia/0.3.1/typst.toml new file mode 100644 index 00000000000..08c514bc58a --- /dev/null +++ b/src/resources/formats/typst/packages/preview/marginalia/0.3.1/typst.toml @@ -0,0 +1,22 @@ +[package] +name = "marginalia" +version = "0.3.1" +entrypoint = "lib.typ" +authors = ["nleanba <@nleanba>"] +license = "Unlicense" +description = "Configurable margin-notes with smart positioning and matching wide-blocks." +repository = "https://github.com/nleanba/typst-marginalia" +keywords = [ + "margins", + "notes", + "annotations", + "comments", + "marginnote", + "sidenote", + "tufte", + "positioning", + "layout", +] +categories = ["layout", "utility"] +compiler = "0.12.0" +exclude = ["main.typ", "Marginalia.pdf", "preview.svg"] diff --git a/src/resources/formats/typst/pandoc/quarto/biblio.typ b/src/resources/formats/typst/pandoc/quarto/biblio.typ index 49ce4c99c2d..2c8f0ebae8a 100644 --- a/src/resources/formats/typst/pandoc/quarto/biblio.typ +++ b/src/resources/formats/typst/pandoc/quarto/biblio.typ @@ -1,12 +1,17 @@ $if(citations)$ -$if(csl)$ - -#set bibliography(style: "$csl$") -$elseif(bibliographystyle)$ +$if(csl)$ + +#set bibliography(style: "$csl$") +$elseif(bibliographystyle)$ #set bibliography(style: "$bibliographystyle$") $endif$ $if(bibliography)$ +$-- Suppress bibliography display when citation-location: margin (consistent with HTML behavior) +$-- Full citations appear in margins; bibliography is loaded but not displayed +$if(suppress-bibliography)$ +#show bibliography: none +$endif$ #bibliography(($for(bibliography)$"$bibliography$"$sep$,$endfor$)) $endif$ diff --git a/src/resources/formats/typst/pandoc/quarto/definitions.typ b/src/resources/formats/typst/pandoc/quarto/definitions.typ index c5b2f55e645..4434f3edf52 100644 --- a/src/resources/formats/typst/pandoc/quarto/definitions.typ +++ b/src/resources/formats/typst/pandoc/quarto/definitions.typ @@ -183,6 +183,72 @@ ) } +$if(margin-geometry)$ +// Margin layout support using marginalia package +#import "@preview/marginalia:0.3.1" as marginalia: note, notefigure, wideblock + +// Render footnote as margin note using standard footnote counter +// Used via show rule: #show footnote: it => column-sidenote(it.body) +// The footnote element already steps the counter, so we just display it +#let column-sidenote(body) = { + context { + let num = counter(footnote).display("1") + // Superscript mark in text + super(num) + // Content in margin with matching number + note( + alignment: "baseline", + shift: auto, + counter: none, // We display our own number from footnote counter + )[ + #super(num) #body + ] + } +} + +// Note: Margin citations are now emitted directly from Lua as #note() calls +// with #cite(form: "full") + locator text, preserving citation locators. + +// Utility: compute padding for each side based on side parameter +#let side-pad(side, left-amount, right-amount) = { + let l = if side == "both" or side == "left" or side == "inner" { left-amount } else { 0pt } + let r = if side == "both" or side == "right" or side == "outer" { right-amount } else { 0pt } + (left: l, right: r) +} + +// body-outset: extends ~15% into margin area +#let column-body-outset(side: "both", body) = context { + let r = marginalia.get-right() + let out = 0.15 * (r.sep + r.width) + pad(..side-pad(side, -out, -out), body) +} + +// page-inset: wideblock minus small inset from page boundary +#let column-page-inset(side: "both", body) = context { + let l = marginalia.get-left() + let r = marginalia.get-right() + // Inset is a small fraction of the extension area (wideblock stops at far) + let left-inset = 0.15 * l.sep + let right-inset = 0.15 * (r.sep + r.width) + wideblock(side: side)[#pad(..side-pad(side, left-inset, right-inset), body)] +} + +// screen-inset: full width minus `far` distance from edges +#let column-screen-inset(side: "both", body) = context { + let l = marginalia.get-left() + let r = marginalia.get-right() + wideblock(side: side)[#pad(..side-pad(side, l.far, r.far), body)] +} + +// screen-inset-shaded: screen-inset with gray background +#let column-screen-inset-shaded(body) = context { + let l = marginalia.get-left() + wideblock(side: "both")[ + #block(fill: luma(245), width: 100%, inset: (x: l.far, y: 1em), body) + ] +} +$endif$ + $if(highlighting-definitions)$ // syntax highlighting functions from skylighting: $highlighting-definitions$ diff --git a/src/resources/formats/typst/pandoc/quarto/page.typ b/src/resources/formats/typst/pandoc/quarto/page.typ index a0289428606..cee094b4003 100644 --- a/src/resources/formats/typst/pandoc/quarto/page.typ +++ b/src/resources/formats/typst/pandoc/quarto/page.typ @@ -1,9 +1,34 @@ #set page( paper: $if(papersize)$"$papersize$"$else$"us-letter"$endif$, - margin: $if(margin)$($for(margin/pairs)$$margin.key$: $margin.value$,$endfor$)$else$(x: 1.25in, y: 1.25in)$endif$, +$if(margin-geometry)$ + // Margins handled by marginalia.setup below +$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$, ) $if(logo)$ #set page(background: align($logo.location$, box(inset: $logo.inset$, image("$logo.path$", width: $logo.width$$if(logo.alt)$, alt: "$logo.alt$"$endif$)))) $endif$ +$if(margin-geometry)$ +// Configure marginalia page geometry (functions defined in definitions.typ) +#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$, + book: false, + clearance: $margin-geometry.clearance$, +) +$endif$ diff --git a/src/resources/schema/cell-pagelayout.yml b/src/resources/schema/cell-pagelayout.yml index fe41741ead4..415b5147044 100644 --- a/src/resources/schema/cell-pagelayout.yml +++ b/src/resources/schema/cell-pagelayout.yml @@ -22,7 +22,7 @@ - name: cap-location tags: contexts: [document-layout] - formats: [$html-files, $pdf-all] + formats: [$html-files, $pdf-all, typst] schema: enum: [top, bottom, margin] default: bottom @@ -31,7 +31,7 @@ - name: fig-cap-location tags: contexts: [document-layout, document-figures] - formats: [$html-files, $pdf-all] + formats: [$html-files, $pdf-all, typst] schema: enum: [top, bottom, margin] default: bottom @@ -40,7 +40,7 @@ - name: tbl-cap-location tags: contexts: [document-layout, document-tables] - formats: [$html-files, $pdf-all] + formats: [$html-files, $pdf-all, typst] schema: enum: [top, bottom, margin] default: top diff --git a/src/resources/schema/definitions.yml b/src/resources/schema/definitions.yml index d222c043e74..df1ca9d2b7d 100644 --- a/src/resources/schema/definitions.yml +++ b/src/resources/schema/definitions.yml @@ -3483,4 +3483,18 @@ - string - boolean - number +- id: marginalia-side-geometry + object: + closed: true + properties: + far: + string: + description: "Distance from page edge to wideblock boundary." + width: + string: + description: "Width of the margin note column." + separation: + string: + description: "Gap between margin column and body text." + # - id: quarto-extension diff --git a/src/resources/schema/document-footnotes.yml b/src/resources/schema/document-footnotes.yml index 98f8631199e..fd1b0d855a5 100644 --- a/src/resources/schema/document-footnotes.yml +++ b/src/resources/schema/document-footnotes.yml @@ -14,7 +14,7 @@ - name: reference-location tags: - formats: [$markdown-all, muse, $html-files, pdf] + formats: [$markdown-all, muse, $html-files, pdf, typst] schema: enum: [block, section, margin, document] default: document diff --git a/src/resources/schema/document-layout.yml b/src/resources/schema/document-layout.yml index fe33f021ae1..eb5ced43477 100644 --- a/src/resources/schema/document-layout.yml +++ b/src/resources/schema/document-layout.yml @@ -90,6 +90,8 @@ docx and odt (8.5 inches with 1 inch for each margins). - name: grid + tags: + formats: [$html-doc, typst] schema: object: closed: true @@ -102,15 +104,15 @@ description: "The base width of the sidebar (left) column in an HTML page." margin-width: string: - description: "The base width of the margin (right) column in an HTML page." + description: "The base width of the margin (right) column. For Typst, this controls the width of the margin note column." body-width: string: - description: "The base width of the body (center) column in an HTML page." + description: "The base width of the body (center) column. For Typst, this is computed as the remainder after other columns." gutter-width: string: - description: "The width of the gutter that appears between columns in an HTML page." + description: "The width of the gutter that appears between columns. For Typst, this is the gap between the text column and margin notes." description: - short: "Properties of the grid system used to layout Quarto HTML pages." + short: "Properties of the grid system used to layout Quarto HTML and Typst pages." - name: appendix-style schema: diff --git a/src/resources/schema/document-references.yml b/src/resources/schema/document-references.yml index 030f9b33856..0790b27bed0 100644 --- a/src/resources/schema/document-references.yml +++ b/src/resources/schema/document-references.yml @@ -19,7 +19,7 @@ schema: enum: [document, margin] tags: - formats: [$html-doc] + formats: [$html-doc, typst] default: document description: Where citation information should be displayed (`document` or `margin`) diff --git a/src/resources/schema/document-typst.yml b/src/resources/schema/document-typst.yml index bc68449d6f9..15ccc0f864d 100644 --- a/src/resources/schema/document-typst.yml +++ b/src/resources/schema/document-typst.yml @@ -4,3 +4,27 @@ tags: formats: [typst] description: "The logo image." + +- name: margin-geometry + schema: + object: + closed: true + properties: + inner: + ref: marginalia-side-geometry + description: "Inner (left) margin geometry." + outer: + ref: marginalia-side-geometry + description: "Outer (right) margin geometry." + clearance: + string: + description: "Minimum vertical spacing between margin notes (default: 8pt)." + tags: + formats: [typst] + description: + short: "Advanced geometry settings for Typst margin layout." + long: | + Fine-grained control over marginalia package geometry. Most users should + use `margin` and `grid` options instead; these values are computed automatically. + + User-specified values override the computed defaults. diff --git a/src/resources/schema/json-schemas.json b/src/resources/schema/json-schemas.json index 10722d221d2..9c8df2da9a3 100644 --- a/src/resources/schema/json-schemas.json +++ b/src/resources/schema/json-schemas.json @@ -4244,6 +4244,21 @@ } } }, + "MarginaliaSideGeometry": { + "object": { + "properties": { + "far": { + "type": "string" + }, + "width": { + "type": "string" + }, + "separation": { + "type": "string" + } + } + } + }, "ProjectConfig": { "object": { "properties": { diff --git a/src/resources/types/schema-types.ts b/src/resources/types/schema-types.ts index b46615bce56..fe9119db54b 100644 --- a/src/resources/types/schema-types.ts +++ b/src/resources/types/schema-types.ts @@ -1641,6 +1641,12 @@ export type BrandDefaultsBootstrap = { defaults?: { [key: string]: string | boolean | number }; }; +export type MarginaliaSideGeometry = { + far?: string /* Distance from page edge to wideblock boundary. */; + separation?: string /* Gap between margin column and body text. */; + width?: string; /* Width of the margin note column. */ +}; + export type ProjectConfig = { "execute-dir"?: | "file" diff --git a/src/resources/types/zod/schema-types.ts b/src/resources/types/zod/schema-types.ts index f38781989f4..95aea9ebbbb 100644 --- a/src/resources/types/zod/schema-types.ts +++ b/src/resources/types/zod/schema-types.ts @@ -1797,6 +1797,12 @@ export const ZodBrandDefaultsBootstrap = z.object({ ), }).passthrough().partial(); +export const ZodMarginaliaSideGeometry = z.object({ + far: z.string(), + width: z.string(), + separation: z.string(), +}).strict().partial(); + export const ZodProjectConfig = z.object({ title: z.string(), type: z.string(), @@ -2060,6 +2066,8 @@ export type BrandDefaults = z.infer; export type BrandDefaultsBootstrap = z.infer; +export type MarginaliaSideGeometry = z.infer; + export type ProjectConfig = z.infer; export type BookProject = z.infer; @@ -2174,6 +2182,7 @@ export const Zod = { BrandPathBoolLightDark: ZodBrandPathBoolLightDark, BrandDefaults: ZodBrandDefaults, BrandDefaultsBootstrap: ZodBrandDefaultsBootstrap, + MarginaliaSideGeometry: ZodMarginaliaSideGeometry, ProjectConfig: ZodProjectConfig, BookProject: ZodBookProject, }; diff --git a/tests/docs/render/typst-package-staging/.gitignore b/tests/docs/render/typst-package-staging/.gitignore new file mode 100644 index 00000000000..8c00f5eac16 --- /dev/null +++ b/tests/docs/render/typst-package-staging/.gitignore @@ -0,0 +1,4 @@ +/.quarto/ +**/*.quarto_ipynb +test.pdf +test.typ diff --git a/tests/docs/render/typst-package-staging/_extensions/test-ext/_extension.yml b/tests/docs/render/typst-package-staging/_extensions/test-ext/_extension.yml new file mode 100644 index 00000000000..acd412a1c46 --- /dev/null +++ b/tests/docs/render/typst-package-staging/_extensions/test-ext/_extension.yml @@ -0,0 +1,9 @@ +title: Test Extension +author: Test +version: 1.0.0 +quarto-required: ">=1.6.0" +contributes: + formats: + typst: + template-partials: + - typst-show.typ diff --git a/tests/docs/render/typst-package-staging/_extensions/test-ext/typst-show.typ b/tests/docs/render/typst-package-staging/_extensions/test-ext/typst-show.typ new file mode 100644 index 00000000000..c7d70d5b752 --- /dev/null +++ b/tests/docs/render/typst-package-staging/_extensions/test-ext/typst-show.typ @@ -0,0 +1,11 @@ +// Import packages from extension's typst/packages/ +#import "@preview/hello:0.1.0": greet +#import "@local/confetti:0.1.0": celebrate + +// Apply standard article show rule +#show: doc => article( + $if(title)$ + title: [$title$], + $endif$ + doc, +) diff --git a/tests/docs/render/typst-package-staging/_extensions/test-ext/typst/packages/local/confetti/0.1.0/lib.typ b/tests/docs/render/typst-package-staging/_extensions/test-ext/typst/packages/local/confetti/0.1.0/lib.typ new file mode 100644 index 00000000000..e9396829b14 --- /dev/null +++ b/tests/docs/render/typst-package-staging/_extensions/test-ext/typst/packages/local/confetti/0.1.0/lib.typ @@ -0,0 +1 @@ +#let celebrate(occasion) = [🎉 #occasion 🎊] diff --git a/tests/docs/render/typst-package-staging/_extensions/test-ext/typst/packages/local/confetti/0.1.0/typst.toml b/tests/docs/render/typst-package-staging/_extensions/test-ext/typst/packages/local/confetti/0.1.0/typst.toml new file mode 100644 index 00000000000..109390d1769 --- /dev/null +++ b/tests/docs/render/typst-package-staging/_extensions/test-ext/typst/packages/local/confetti/0.1.0/typst.toml @@ -0,0 +1,4 @@ +[package] +name = "confetti" +version = "0.1.0" +entrypoint = "lib.typ" diff --git a/tests/docs/render/typst-package-staging/_extensions/test-ext/typst/packages/preview/hello/0.1.0/lib.typ b/tests/docs/render/typst-package-staging/_extensions/test-ext/typst/packages/preview/hello/0.1.0/lib.typ new file mode 100644 index 00000000000..e51da92d97a --- /dev/null +++ b/tests/docs/render/typst-package-staging/_extensions/test-ext/typst/packages/preview/hello/0.1.0/lib.typ @@ -0,0 +1 @@ +#let greet(name) = [Hello, #name!] diff --git a/tests/docs/render/typst-package-staging/_extensions/test-ext/typst/packages/preview/hello/0.1.0/typst.toml b/tests/docs/render/typst-package-staging/_extensions/test-ext/typst/packages/preview/hello/0.1.0/typst.toml new file mode 100644 index 00000000000..e0f708f4a74 --- /dev/null +++ b/tests/docs/render/typst-package-staging/_extensions/test-ext/typst/packages/preview/hello/0.1.0/typst.toml @@ -0,0 +1,4 @@ +[package] +name = "hello" +version = "0.1.0" +entrypoint = "lib.typ" diff --git a/tests/docs/render/typst-package-staging/_quarto.yml b/tests/docs/render/typst-package-staging/_quarto.yml new file mode 100644 index 00000000000..9524e4548a1 --- /dev/null +++ b/tests/docs/render/typst-package-staging/_quarto.yml @@ -0,0 +1,2 @@ +project: + title: "Typst Package Staging Test" diff --git a/tests/docs/render/typst-package-staging/test.qmd b/tests/docs/render/typst-package-staging/test.qmd new file mode 100644 index 00000000000..a0f0256042a --- /dev/null +++ b/tests/docs/render/typst-package-staging/test.qmd @@ -0,0 +1,27 @@ +--- +title: "Typst Package Staging Test" +papersize: us-letter +format: test-ext-typst +keep-typ: true +--- + +This tests that typst packages from extensions are staged to `.quarto/typst-packages/`. + +::: {.column-margin} +This margin note triggers the marginalia package. + +| 3 | 1 | 4 | +|---|---|---| +| 1 | 5 | 9 | +| 2 | 6 | 5 | + +: Numbers 1-9 (some repeated) +::: + +The extension's template imports `@preview/hello:0.1.0` and `@local/confetti` which are bundled in the extension's `typst/packages/` directory. + +```{=typst} +#greet("World") + +#celebrate("Airgap rendering works!") +``` diff --git a/tests/docs/smoke-all/article-layout/margin-citations/.gitignore b/tests/docs/smoke-all/article-layout/margin-citations/.gitignore new file mode 100644 index 00000000000..715baab1701 --- /dev/null +++ b/tests/docs/smoke-all/article-layout/margin-citations/.gitignore @@ -0,0 +1,4 @@ +*.pdf +*.tex +*.aux +*.log diff --git a/tests/docs/smoke-all/article-layout/margin-citations/borges-refs.bib b/tests/docs/smoke-all/article-layout/margin-citations/borges-refs.bib new file mode 100644 index 00000000000..3ae36d26d6a --- /dev/null +++ b/tests/docs/smoke-all/article-layout/margin-citations/borges-refs.bib @@ -0,0 +1,138 @@ +% Borgesian Bibliography: On the Library and Its Commentators +% A mixture of the real, the apocryphal, and the impossible + +@incollection{borges1941library, + author = {Borges, Jorge Luis}, + title = {La biblioteca de Babel}, + booktitle = {El jard{\'i}n de senderos que se bifurcan}, + publisher = {Editorial Sur}, + year = {1941}, + address = {Buenos Aires}, + note = {First appearance of the infinite library} +} + +@book{borges1944ficciones, + author = {Borges, Jorge Luis}, + title = {Ficciones}, + publisher = {Editorial Sur}, + year = {1944}, + address = {Buenos Aires}, + note = {Contains both "The Library of Babel" and "Tl{\"o}n, Uqbar, Orbis Tertius"} +} + +@article{kurd1933hexagonal, + author = {Kurd Lasswitz}, + title = {{Die Universalbibliothek}}, + journal = {Traumkristalle}, + year = {1904}, + note = {German precursor describing a universal library of all possible books}, + address = {Leipzig} +} + +@unpublished{menard1934quixote, + author = {Pierre Menard}, + title = {El Quijote}, + year = {1934}, + note = {Fragment. Chapters IX and XXXVIII of Part One, and a fragment of Chapter XXII. Word-for-word identical to Cervantes yet infinitely richer} +} + +@book{nemo1897catalogue, + author = {Captain Nemo}, + title = {Catalogue of the Nautilus Library}, + publisher = {Submarine Press}, + year = {1897}, + address = {20,000 Leagues Beneath the Sea}, + note = {12,000 volumes. No works published after 1865} +} + +@article{funes1897memory, + author = {Ireneo Funes}, + title = {Sistema original de numeraci{\'o}n}, + journal = {Unpublished manuscript, Fray Bentos}, + year = {1897}, + note = {Each number given a unique name. The author could recall every leaf on every tree he had ever seen} +} + +@book{quain1936labyrinth, + author = {Herbert Quain}, + title = {April March}, + publisher = {Siamese Press}, + year = {1936}, + address = {London}, + note = {A novel with thirteen chapters that must be read backwards. Nine possible endings} +} + +@phdthesis{tzinacana1521jaguar, + author = {Tzinac{\'a}n}, + title = {The Writing of the God}, + school = {Temple of Qaholom}, + year = {1521}, + note = {Fourteen words that make their speaker omnipotent. Written on the skin of a jaguar} +} + +@misc{librarians1638first, + author = {{The First Librarian of the Third Hexagon}}, + title = {On the Total Library}, + year = {1638}, + howpublished = {Oral tradition}, + note = {Asserted that the Library contains all books, including the faithful catalogue of the Library and the demonstration that this catalogue is false} +} + +@article{soergel1638index, + author = {Soergel, Johann Valentin}, + title = {{Index Librorum Omnium}}, + journal = {Hexagon Quarterly}, + year = {1638}, + volume = {MCCXIV}, + pages = {1--410}, + note = {Purported to be the index of all books. Later discovered to be the index of all indexes} +} + +@book{ts1001nights, + author = {{Scheherazade}}, + title = {The Thousand and One Nights: The Tale of the Infinite Manuscript}, + publisher = {Royal Palace of King Shahryar}, + year = {1001}, + note = {Contains a story about a story that contains all stories} +} + +@book{eco1980name, + author = {Eco, Umberto}, + title = {Il nome della rosa}, + publisher = {Bompiani}, + year = {1980}, + address = {Milano}, + note = {A library that kills to protect its secrets} +} + +@article{calvino1979winter, + author = {Calvino, Italo}, + title = {Se una notte d'inverno un viaggiatore}, + journal = {Einaudi}, + year = {1979}, + note = {A novel about trying to read a novel that keeps transforming into other novels} +} + +@book{casares1940morel, + author = {Bioy Casares, Adolfo}, + title = {La invenci{\'o}n de Morel}, + publisher = {Editorial Losada}, + year = {1940}, + address = {Buenos Aires}, + note = {Prologue by Borges. Machines that record and replay reality eternally} +} + +@misc{babel2XXX, + author = {{Anonymous Hexagon Dweller}}, + title = {MCV:LXXXIII:JTK:QRZL}, + howpublished = {Shelf 17, Row 3, Hexagon 41159131621}, + note = {One of the infinitely many books consisting entirely of the letters MCV repeated. Date of composition unknown---perhaps infinite} +} + +@article{vindication1738, + author = {{Anonymous}}, + title = {Vindication}, + journal = {Some hexagon}, + year = {1738}, + note = {A book containing the vindication of every person who has ever lived. Its location is unknown. Searchers have died looking for it} +} diff --git a/tests/docs/smoke-all/article-layout/margin-citations/citation-margin-biblatex.qmd b/tests/docs/smoke-all/article-layout/margin-citations/citation-margin-biblatex.qmd new file mode 100644 index 00000000000..b3f56f39d85 --- /dev/null +++ b/tests/docs/smoke-all/article-layout/margin-citations/citation-margin-biblatex.qmd @@ -0,0 +1,37 @@ +--- +title: "Apocryphal Librarians and Impossible Catalogues" +citation-location: margin +bibliography: borges-refs.bib +cite-method: biblatex +format: + pdf: + keep-tex: true +_quarto: + tests: + pdf: + ensureLatexFileRegexMatches: + # Biblatex uses \fullcite - verify placeholders resolved to \fullcite + - ['\\fullcite\{vindication1738\}', '\\fullcite\{borges1941library\}'] + - ['\?quarto-cite:'] + ensurePdfRegexMatches: + # Verify rendered citations appear in PDF + - ['FIRST-CITE-MARKER', 'SECOND-CITE-MARKER', 'MULTI-CITE-MARKER', 'Vindication', 'Borges', 'Funes'] + - [] + noErrors: default +--- + +# The Seekers of the Vindication + +Among the infinite shelves of the Library, certain books have achieved mythical status. FIRST-CITE-MARKER The most sought-after is the Vindication [@vindication1738]---a book said to contain the complete justification of every person who has ever lived, written in clear prose. + +## The First Librarian's Paradox + +SECOND-CITE-MARKER The First Librarian of the Third Hexagon [@librarians1638first] famously observed that if the Library contains all books, it must contain both the faithful catalogue of the Library and the demonstration that this catalogue is false. Soergel's attempt at an index [@soergel1638index] proved to be merely an index of all indexes, recursively swallowing itself. + +## Fictional Precursors + +MULTI-CITE-MARKER These paradoxes echo throughout literature [@borges1941library; @eco1980name; @calvino1979winter]. The tradition of impossible books extends from Scheherazade's tales [@ts1001nights] through Pierre Menard's verbatim yet infinitely richer Quixote [@menard1934quixote]. + +## The Memory of Funes + +Not all impossible texts require a library. Ireneo Funes [@funes1897memory], after an accident that left him with perfect memory, devised a numbering system where each integer had a unique name. He could recall every leaf on every tree he had ever seen. His attempt to catalogue his memories would have required more time than the universe contains. diff --git a/tests/docs/smoke-all/article-layout/margin-citations/citation-margin-citeproc.qmd b/tests/docs/smoke-all/article-layout/margin-citations/citation-margin-citeproc.qmd new file mode 100644 index 00000000000..d1483ea8826 --- /dev/null +++ b/tests/docs/smoke-all/article-layout/margin-citations/citation-margin-citeproc.qmd @@ -0,0 +1,36 @@ +--- +title: "Apocryphal Librarians and Impossible Catalogues" +citation-location: margin +bibliography: borges-refs.bib +format: + pdf: + keep-tex: true +_quarto: + tests: + pdf: + ensureLatexFileRegexMatches: + # Verify placeholders are resolved - should NOT find unresolved markers + - [] + - ['\?quarto-cite:'] + ensurePdfRegexMatches: + # Verify rendered citations appear in PDF + - ['FIRST-CITE-MARKER', 'SECOND-CITE-MARKER', 'MULTI-CITE-MARKER', 'Vindication', 'Borges', 'Funes'] + - [] + noErrors: default +--- + +# The Seekers of the Vindication + +Among the infinite shelves of the Library, certain books have achieved mythical status. FIRST-CITE-MARKER The most sought-after is the Vindication [@vindication1738]---a book said to contain the complete justification of every person who has ever lived, written in clear prose. + +## The First Librarian's Paradox + +SECOND-CITE-MARKER The First Librarian of the Third Hexagon [@librarians1638first] famously observed that if the Library contains all books, it must contain both the faithful catalogue of the Library and the demonstration that this catalogue is false. Soergel's attempt at an index [@soergel1638index] proved to be merely an index of all indexes, recursively swallowing itself. + +## Fictional Precursors + +MULTI-CITE-MARKER These paradoxes echo throughout literature [@borges1941library; @eco1980name; @calvino1979winter]. The tradition of impossible books extends from Scheherazade's tales [@ts1001nights] through Pierre Menard's verbatim yet infinitely richer Quixote [@menard1934quixote]. + +## The Memory of Funes + +Not all impossible texts require a library. Ireneo Funes [@funes1897memory], after an accident that left him with perfect memory, devised a numbering system where each integer had a unique name. He could recall every leaf on every tree he had ever seen. His attempt to catalogue his memories would have required more time than the universe contains. diff --git a/tests/docs/smoke-all/article-layout/margin-citations/citation-margin-natbib.qmd b/tests/docs/smoke-all/article-layout/margin-citations/citation-margin-natbib.qmd new file mode 100644 index 00000000000..6f422745bce --- /dev/null +++ b/tests/docs/smoke-all/article-layout/margin-citations/citation-margin-natbib.qmd @@ -0,0 +1,37 @@ +--- +title: "Apocryphal Librarians and Impossible Catalogues" +citation-location: margin +bibliography: borges-refs.bib +cite-method: natbib +format: + pdf: + keep-tex: true +_quarto: + tests: + pdf: + ensureLatexFileRegexMatches: + # Natbib uses \bibentry - verify placeholders resolved to \bibentry + - ['\\bibentry\{vindication1738\}', '\\bibentry\{borges1941library\}'] + - ['\?quarto-cite:'] + ensurePdfRegexMatches: + # Verify rendered citations appear in PDF + - ['FIRST-CITE-MARKER', 'SECOND-CITE-MARKER', 'MULTI-CITE-MARKER', 'Vindication', 'Borges', 'Funes'] + - [] + noErrors: default +--- + +# The Seekers of the Vindication + +Among the infinite shelves of the Library, certain books have achieved mythical status. FIRST-CITE-MARKER The most sought-after is the Vindication [@vindication1738]---a book said to contain the complete justification of every person who has ever lived, written in clear prose. + +## The First Librarian's Paradox + +SECOND-CITE-MARKER The First Librarian of the Third Hexagon [@librarians1638first] famously observed that if the Library contains all books, it must contain both the faithful catalogue of the Library and the demonstration that this catalogue is false. Soergel's attempt at an index [@soergel1638index] proved to be merely an index of all indexes, recursively swallowing itself. + +## Fictional Precursors + +MULTI-CITE-MARKER These paradoxes echo throughout literature [@borges1941library; @eco1980name; @calvino1979winter]. The tradition of impossible books extends from Scheherazade's tales [@ts1001nights] through Pierre Menard's verbatim yet infinitely richer Quixote [@menard1934quixote]. + +## The Memory of Funes + +Not all impossible texts require a library. Ireneo Funes [@funes1897memory], after an accident that left him with perfect memory, devised a numbering system where each integer had a unique name. He could recall every leaf on every tree he had ever seen. His attempt to catalogue his memories would have required more time than the universe contains. diff --git a/tests/docs/smoke-all/article-layout/tables/tufte-typst-sidenote-orphans.qmd b/tests/docs/smoke-all/article-layout/tables/tufte-typst-sidenote-orphans.qmd new file mode 100644 index 00000000000..f180f04ed05 --- /dev/null +++ b/tests/docs/smoke-all/article-layout/tables/tufte-typst-sidenote-orphans.qmd @@ -0,0 +1,191 @@ +--- +title: "Typst Sidenote Orphan Detection Test" +subtitle: "Tests that margin captions stay with their figures" +format: + typst: + keep-typ: true + papersize: us-letter +# This test verifies that margin captions don't get orphaned from their figures +# across page breaks. The test uses Typst introspection to embed page numbers +# directly in captions, making orphans visible: (CAPTION-PG:2 FIGURE-PG:3) would +# mean the caption is on page 2 but the figure moved to page 3. +# +# The fix wraps margin caption + figure in block(breakable: false) in the +# generated Typst output (see make_typst_margin_caption_figure in layout/typst.lua). +_quarto: + tests: + typst: + ensurePdfRegexMatches: + - [] # nothing required to match + # FAIL if caption and figure are on different pages (orphan detected) + # Regex matches CAPTION-PG:X followed by FIGURE-PG:Y where Y != X + - ['CAPTION-PG:(\d+) FIGURE-PG:(?!\1)\d+'] + noErrors: default +--- + +# Sidenote Orphan Test + +This test verifies that margin captions stay on the same page as their figures. +Each caption displays its page number alongside the figure's page number using +Typst introspection. If these numbers differ, the caption has been orphaned. + +**Expected behavior**: All captions should show matching page numbers like +`(CAPTION-PG:N FIGURE-PG:N)` where both N values are the same. + +**Bug behavior**: Orphaned captions show mismatched pages like +`(CAPTION-PG:X FIGURE-PG:Y)` where X and Y differ - the caption is stranded. + +## Test Case 1: Simple Margin Caption + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor +incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis +nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. +Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore +eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt +in culpa qui officia deserunt mollit anim id est laborum. + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor +incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis +nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. +Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore +eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt +in culpa qui officia deserunt mollit anim id est laborum. + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor +incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis +nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. +Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore +eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt +in culpa qui officia deserunt mollit anim id est laborum. + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor +incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis +nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. +Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore +eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt +in culpa qui officia deserunt mollit anim id est laborum. + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor +incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis +nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. + +::: {#fig-test1 fig-cap-location="margin"} + +```{=typst} +#rect(width: 100%, height: 2.5in, fill: luma(200), stroke: 1pt)[ + #align(center + horizon)[Figure 1 Content Area] +] +``` + +A figure with margin caption. This tests basic orphan prevention. +`#context { let f = query().first().location().page(); let c = here().page(); [(CAPTION-PG:#c FIGURE-PG:#f)] }`{=typst} + +::: + +More content after the first figure to continue the document flow. + +## Test Case 2: Larger Figure Near Page Break + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor +incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis +nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. +Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore +eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt +in culpa qui officia deserunt mollit anim id est laborum. + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor +incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis +nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. +Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore +eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt +in culpa qui officia deserunt mollit anim id est laborum. + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor +incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis +nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. +Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore +eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt +in culpa qui officia deserunt mollit anim id est laborum. + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor +incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis +nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. +Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore +eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt +in culpa qui officia deserunt mollit anim id est laborum. + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor +incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis +nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. +Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore +eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt +in culpa qui officia deserunt mollit anim id est laborum. + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor +incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis +nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. + +::: {#fig-test2 fig-cap-location="margin"} + +```{=typst} +#rect(width: 100%, height: 3in, fill: luma(180), stroke: 1pt)[ + #align(center + horizon)[Figure 2 Content Area - Taller] +] +``` + +A taller figure that is more likely to cause orphaning when positioned near a +page boundary. The caption should stay with the figure. +`#context { let f = query().first().location().page(); let c = here().page(); [(CAPTION-PG:#c FIGURE-PG:#f)] }`{=typst} + +::: + +Content continues after figure 2. + +## Test Case 3: Multiple Figures in Sequence + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor +incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis +nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. +Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore +eu fugiat nulla pariatur. + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor +incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis +nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. +Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore +eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt +in culpa qui officia deserunt mollit anim id est laborum. + +::: {#fig-test3a fig-cap-location="margin"} + +```{=typst} +#rect(width: 100%, height: 2in, fill: luma(220), stroke: 1pt)[ + #align(center + horizon)[Figure 3a Content] +] +``` + +First of two sequential figures with margin captions. +`#context { let f = query().first().location().page(); let c = here().page(); [(CAPTION-PG:#c FIGURE-PG:#f)] }`{=typst} + +::: + +Brief text between figures. + +::: {#fig-test3b fig-cap-location="margin"} + +```{=typst} +#rect(width: 100%, height: 2in, fill: luma(160), stroke: 1pt)[ + #align(center + horizon)[Figure 3b Content] +] +``` + +Second sequential figure. Both captions should stay with their figures. +`#context { let f = query().first().location().page(); let c = here().page(); [(CAPTION-PG:#c FIGURE-PG:#f)] }`{=typst} + +::: + +## Conclusion + +If all `CAPTION-PG` and `FIGURE-PG` values match within each figure, the +orphan prevention is working correctly. If any pair shows different page +numbers, the margin caption has been orphaned from its figure. diff --git a/tests/docs/smoke-all/typst/margin-layout/.gitignore b/tests/docs/smoke-all/typst/margin-layout/.gitignore new file mode 100644 index 00000000000..ad293093b07 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/.gitignore @@ -0,0 +1,2 @@ +/.quarto/ +**/*.quarto_ipynb diff --git a/tests/docs/smoke-all/typst/margin-layout/_quarto.yml b/tests/docs/smoke-all/typst/margin-layout/_quarto.yml new file mode 100644 index 00000000000..477c78e95a3 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/_quarto.yml @@ -0,0 +1,15 @@ +project: + type: website + +website: + title: "Typst Margin Layout Tests" + sidebar: + contents: "*.qmd" + +bibliography: borges-refs.bib + +format: + html: + toc: true + typst: + keep-typ: true diff --git a/tests/docs/smoke-all/typst/margin-layout/aside.qmd b/tests/docs/smoke-all/typst/margin-layout/aside.qmd new file mode 100644 index 00000000000..05f693c61dd --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/aside.qmd @@ -0,0 +1,26 @@ +--- +title: "Aside Test" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + - ['#note\(alignment: "baseline"'] + - [] + ensurePdfTextPositions: + - - subject: "This aside" + relation: rightOf + object: "Main content" + - [] + noErrors: default +--- + +::: {.aside} +This aside should appear in the margin. +::: + +Main content here. diff --git a/tests/docs/smoke-all/typst/margin-layout/basic-margin-note.qmd b/tests/docs/smoke-all/typst/margin-layout/basic-margin-note.qmd new file mode 100644 index 00000000000..cd43d741014 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/basic-margin-note.qmd @@ -0,0 +1,26 @@ +--- +title: "Typst Margin Layout Foundation Test" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + - ['@preview/marginalia:0\.3\.1', 'marginalia\.setup\.with\('] + - [] + ensurePdfTextPositions: + - - subject: "This triggers" + relation: rightOf + object: "Main content" + - [] + noErrors: default +--- + +::: {.column-margin} +This triggers margin layout. +::: + +Main content here. diff --git a/tests/docs/smoke-all/typst/margin-layout/borges-refs.bib b/tests/docs/smoke-all/typst/margin-layout/borges-refs.bib new file mode 100644 index 00000000000..3ae36d26d6a --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/borges-refs.bib @@ -0,0 +1,138 @@ +% Borgesian Bibliography: On the Library and Its Commentators +% A mixture of the real, the apocryphal, and the impossible + +@incollection{borges1941library, + author = {Borges, Jorge Luis}, + title = {La biblioteca de Babel}, + booktitle = {El jard{\'i}n de senderos que se bifurcan}, + publisher = {Editorial Sur}, + year = {1941}, + address = {Buenos Aires}, + note = {First appearance of the infinite library} +} + +@book{borges1944ficciones, + author = {Borges, Jorge Luis}, + title = {Ficciones}, + publisher = {Editorial Sur}, + year = {1944}, + address = {Buenos Aires}, + note = {Contains both "The Library of Babel" and "Tl{\"o}n, Uqbar, Orbis Tertius"} +} + +@article{kurd1933hexagonal, + author = {Kurd Lasswitz}, + title = {{Die Universalbibliothek}}, + journal = {Traumkristalle}, + year = {1904}, + note = {German precursor describing a universal library of all possible books}, + address = {Leipzig} +} + +@unpublished{menard1934quixote, + author = {Pierre Menard}, + title = {El Quijote}, + year = {1934}, + note = {Fragment. Chapters IX and XXXVIII of Part One, and a fragment of Chapter XXII. Word-for-word identical to Cervantes yet infinitely richer} +} + +@book{nemo1897catalogue, + author = {Captain Nemo}, + title = {Catalogue of the Nautilus Library}, + publisher = {Submarine Press}, + year = {1897}, + address = {20,000 Leagues Beneath the Sea}, + note = {12,000 volumes. No works published after 1865} +} + +@article{funes1897memory, + author = {Ireneo Funes}, + title = {Sistema original de numeraci{\'o}n}, + journal = {Unpublished manuscript, Fray Bentos}, + year = {1897}, + note = {Each number given a unique name. The author could recall every leaf on every tree he had ever seen} +} + +@book{quain1936labyrinth, + author = {Herbert Quain}, + title = {April March}, + publisher = {Siamese Press}, + year = {1936}, + address = {London}, + note = {A novel with thirteen chapters that must be read backwards. Nine possible endings} +} + +@phdthesis{tzinacana1521jaguar, + author = {Tzinac{\'a}n}, + title = {The Writing of the God}, + school = {Temple of Qaholom}, + year = {1521}, + note = {Fourteen words that make their speaker omnipotent. Written on the skin of a jaguar} +} + +@misc{librarians1638first, + author = {{The First Librarian of the Third Hexagon}}, + title = {On the Total Library}, + year = {1638}, + howpublished = {Oral tradition}, + note = {Asserted that the Library contains all books, including the faithful catalogue of the Library and the demonstration that this catalogue is false} +} + +@article{soergel1638index, + author = {Soergel, Johann Valentin}, + title = {{Index Librorum Omnium}}, + journal = {Hexagon Quarterly}, + year = {1638}, + volume = {MCCXIV}, + pages = {1--410}, + note = {Purported to be the index of all books. Later discovered to be the index of all indexes} +} + +@book{ts1001nights, + author = {{Scheherazade}}, + title = {The Thousand and One Nights: The Tale of the Infinite Manuscript}, + publisher = {Royal Palace of King Shahryar}, + year = {1001}, + note = {Contains a story about a story that contains all stories} +} + +@book{eco1980name, + author = {Eco, Umberto}, + title = {Il nome della rosa}, + publisher = {Bompiani}, + year = {1980}, + address = {Milano}, + note = {A library that kills to protect its secrets} +} + +@article{calvino1979winter, + author = {Calvino, Italo}, + title = {Se una notte d'inverno un viaggiatore}, + journal = {Einaudi}, + year = {1979}, + note = {A novel about trying to read a novel that keeps transforming into other novels} +} + +@book{casares1940morel, + author = {Bioy Casares, Adolfo}, + title = {La invenci{\'o}n de Morel}, + publisher = {Editorial Losada}, + year = {1940}, + address = {Buenos Aires}, + note = {Prologue by Borges. Machines that record and replay reality eternally} +} + +@misc{babel2XXX, + author = {{Anonymous Hexagon Dweller}}, + title = {MCV:LXXXIII:JTK:QRZL}, + howpublished = {Shelf 17, Row 3, Hexagon 41159131621}, + note = {One of the infinitely many books consisting entirely of the letters MCV repeated. Date of composition unknown---perhaps infinite} +} + +@article{vindication1738, + author = {{Anonymous}}, + title = {Vindication}, + journal = {Some hexagon}, + year = {1738}, + note = {A book containing the vindication of every person who has ever lived. Its location is unknown. Searchers have died looking for it} +} diff --git a/tests/docs/smoke-all/typst/margin-layout/citation-and-sidenotes-combined.qmd b/tests/docs/smoke-all/typst/margin-layout/citation-and-sidenotes-combined.qmd new file mode 100644 index 00000000000..f2cd1e92883 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/citation-and-sidenotes-combined.qmd @@ -0,0 +1,56 @@ +--- +title: "Combined Margin Citations and Sidenotes" +papersize: us-letter +citation-location: margin +reference-location: margin +bibliography: borges-refs.bib +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Should have both margin citations (note) and sidenotes (column-sidenote) + - ['#note\(', 'column-sidenote', 'form: "full"'] + - [] + ensurePdfRegexMatches: + - ['COMBINED-TEST', 'SIDENOTE-CONTENT', 'Borges', 'bifurcan'] + - [] + ensurePdfTextPositions: + - # Both citation and sidenote should be in margin + - subject: "bifurcan" + relation: rightOf + object: "COMBINED-TEST" + - subject: "SIDENOTE-CONTENT" + relation: rightOf + object: "explains" + # Vertical stacking: citations and sidenotes alternate + - subject: "SIDENOTE-CONTENT" + relation: below + object: "bifurcan" + - subject: "rosa" + relation: below + object: "SIDENOTE-CONTENT" + - subject: "Another sidenote" + relation: below + object: "rosa" + - subject: "Calvino" + relation: below + object: "Another sidenote" + - [] + noErrors: default +--- + +# Testing Combined Margin Citations and Sidenotes + +COMBINED-TEST: This paragraph has a margin citation [@borges1941library] that should appear in the margin. + +This paragraph explains^[SIDENOTE-CONTENT: This is a sidenote that should also appear in the margin] a concept with a footnote. + +When both `citation-location: margin` and `reference-location: margin` are set, citations and footnotes should coexist in the margin without conflicts. + +Here's another citation [@eco1980name] followed by another footnote^[Another sidenote in the margin]. + +The margin should handle the interleaving of citations and sidenotes gracefully, avoiding overlaps [@calvino1979winter]. diff --git a/tests/docs/smoke-all/typst/margin-layout/citation-margin-bare.qmd b/tests/docs/smoke-all/typst/margin-layout/citation-margin-bare.qmd new file mode 100644 index 00000000000..2d0a3e6d764 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/citation-margin-bare.qmd @@ -0,0 +1,36 @@ +--- +title: "Margin Citation with Bare Citations" +papersize: us-letter +citation-location: margin +bibliography: borges-refs.bib +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Margin citations emit note() with cite(form: "full") directly + - ['#note\(', 'form: "full"'] + - [] + ensurePdfRegexMatches: + # Bare citations should render author-date inline with full in margin + - ['BARE-MARKER', 'Borges', '1941'] + - [] + ensurePdfTextPositions: + - # Full citation in margin - "bifurcan" is unique to borges1941library booktitle + - subject: "bifurcan" + relation: rightOf + object: "BARE-MARKER" + - [] + noErrors: default +--- + +# Testing Bare (In-Text) Citations in Margins + +BARE-MARKER: According to @borges1941library, the Library is infinite. + +The story was later collected by @borges1944ficciones in his famous anthology. + +Both @eco1980name and @calvino1979winter were influenced by Borges. diff --git a/tests/docs/smoke-all/typst/margin-layout/citation-margin-basic.qmd b/tests/docs/smoke-all/typst/margin-layout/citation-margin-basic.qmd new file mode 100644 index 00000000000..699ad40d280 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/citation-margin-basic.qmd @@ -0,0 +1,43 @@ +--- +title: "On the Library of Babel" +papersize: us-letter +citation-location: margin +bibliography: borges-refs.bib +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Margin citations emit note() with cite(form: "full") directly + - ['#note\(', 'form: "full"'] + - [] + ensurePdfRegexMatches: + - ['Library', 'Borges', 'hexagon', 'infinite'] + - [] + ensurePdfTextPositions: + - # Citation in margin (rightOf body text) - "bifurcan" from booktitle only in citation + - subject: "bifurcan" + relation: rightOf + object: "hexagonal galleries" + - [] + noErrors: default +--- + +# The Library of Babel + +In 1941, Jorge Luis Borges published what many consider his most perfect short story: "La biblioteca de Babel" [@borges1941library]. The premise is deceptively simple yet philosophically devastating: the universe consists of an enormous, perhaps infinite, library. + +## Structure of the Library + +The Library is composed of an indefinite, perhaps infinite, number of hexagonal galleries. Each hexagon contains exactly twenty bookshelves, five on each of four walls. Each shelf holds thirty-two books of identical format: each book has four hundred ten pages; each page, forty lines; each line, approximately eighty black letters. + +The totality of such letters comprises twenty-five orthographical symbols: the twenty-two letters of the alphabet, the comma, the period, and the space. No two books are identical. From these incontrovertible premises, the librarian deduces that the Library is total---that its shelves contain all possible combinations of the twenty-five symbols, which is to say, all that can be expressed in any language. + +## The Total Library + +The concept of a universal library predates Borges. The German author Kurd Lasswitz explored similar territory [@kurd1933hexagonal], calculating that such a library, while enormous, would be finite. Borges, characteristically, preferred the more vertiginous infinite. + +Later collected in *Ficciones* [@borges1944ficciones], the story has influenced countless writers. Umberto Eco's medieval mystery [@eco1980name] features a labyrinthine library that kills to protect its secrets. Italo Calvino [@calvino1979winter] wrote an entire novel about the impossibility of reading a single book completely. diff --git a/tests/docs/smoke-all/typst/margin-layout/citation-margin-bibliographystyle.qmd b/tests/docs/smoke-all/typst/margin-layout/citation-margin-bibliographystyle.qmd new file mode 100644 index 00000000000..4c1404d2b6a --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/citation-margin-bibliographystyle.qmd @@ -0,0 +1,36 @@ +--- +title: "Margin Citation with Bibliography Style" +papersize: us-letter +citation-location: margin +bibliography: borges-refs.bib +bibliographystyle: apa +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Margin citations emit note() with cite(form: "full") and bibliography style + - ['#note\(', 'form: "full"', 'style:\s*"apa"'] + - [] + ensurePdfRegexMatches: + - ['BIBSTYLE-TEST', 'Borges'] + - [] + ensurePdfTextPositions: + - # "La biblioteca" is unique to borges1941library title + - subject: "La biblioteca" + relation: rightOf + object: "BIBSTYLE-TEST" + - [] + noErrors: default +--- + +# Testing Bibliography Style with Margin Citations + +BIBSTYLE-TEST: With `bibliographystyle: apa`, citations should follow APA format [@borges1941library]. + +The full citation in the margin should also use APA styling [@eco1980name]. + +Multiple citations should maintain consistent style [@calvino1979winter; @casares1940morel]. diff --git a/tests/docs/smoke-all/typst/margin-layout/citation-margin-citeproc.qmd b/tests/docs/smoke-all/typst/margin-layout/citation-margin-citeproc.qmd new file mode 100644 index 00000000000..d94d59fb2af --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/citation-margin-citeproc.qmd @@ -0,0 +1,36 @@ +--- +title: "Margin Citation with Citeproc Enabled" +papersize: us-letter +citation-location: margin +bibliography: borges-refs.bib +citeproc: true +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # With citeproc, margin notes contain pre-rendered bibliography text (not #cite calls) + - ['#note\(', 'Borges.*1941', 'Bifurcan'] + - ['#cite\(<[^>]+>, form: "full"\)'] # Should NOT have native Typst cite calls + ensurePdfRegexMatches: + - ['CITEPROC-MARKER', 'Borges', 'Babel'] + - [] + ensurePdfTextPositions: + - # Citation in margin - "Bifurcan" is unique to borges1941library booktitle (citeproc uses title case) + - subject: "Bifurcan" + relation: rightOf + object: "CITEPROC-MARKER" + - [] + noErrors: default +--- + +# Testing Citeproc Mode with Margin Citations + +CITEPROC-MARKER: With `citeproc: true`, Pandoc handles citation processing instead of Typst's native system [@borges1941library]. + +This affects how citations are rendered [@borges1944ficciones]. + +Multiple works can be cited together [@eco1980name; @calvino1979winter]. diff --git a/tests/docs/smoke-all/typst/margin-layout/citation-margin-complex.qmd b/tests/docs/smoke-all/typst/margin-layout/citation-margin-complex.qmd new file mode 100644 index 00000000000..ec97fecf3ba --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/citation-margin-complex.qmd @@ -0,0 +1,30 @@ +--- +title: "Margin Citation Complex Syntax" +papersize: us-letter +citation-location: margin +bibliography: borges-refs.bib +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Margin citations emit note() with cite(form: "full") directly + - ['#note\(', 'form: "full"'] + - [] + ensurePdfRegexMatches: + # Check complex citation elements appear + - ['COMPLEX-TEST', 'Borges', 'Eco', 'Calvino'] + - [] + noErrors: default +--- + +# Testing Complex Citation Syntax in Margins + +COMPLEX-TEST: The literary tradition spans multiple works [see @borges1941library, pp. 33-35; also @eco1980name, ch. 1; and @calvino1979winter for related themes]. + +Multiple locator types: The key passage [@borges1944ficciones, sec. 2, para. 3] explains the concept. + +Combining prefix, multiple citations, and locators [for an overview, see @kurd1933hexagonal, p. 100; @quain1936labyrinth, ch. 5-7]. diff --git a/tests/docs/smoke-all/typst/margin-layout/citation-margin-elaborate-citeproc.qmd b/tests/docs/smoke-all/typst/margin-layout/citation-margin-elaborate-citeproc.qmd new file mode 100644 index 00000000000..6f0260b0925 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/citation-margin-elaborate-citeproc.qmd @@ -0,0 +1,89 @@ +--- +title: "The Universe (Which Others Call the Library)" +subtitle: "A Meditation on Infinite Texts and Their Margin Notes" +author: "A Hexagon Dweller" +papersize: us-letter +citation-location: margin +bibliography: borges-refs.bib +citeproc: true +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # With citeproc, margin notes contain pre-rendered bibliography text + - ['#note\(', 'Borges.*1941', 'Bifurcan'] + - ['#cite\(<[^>]+>, form: "full"\)'] # Should NOT have native Typst cite calls + ensurePdfRegexMatches: + - - 'Universe' + - 'Library' + - 'hexagon' + - 'Vindication' + - 'Borges' + # Locators appear inline (citeproc drops "p." prefix) + - '1941, 51' + - 'ch\. 1' + # Author-suppressed shows year + locator + - '1936, 12' + # Suffix appears inline (may be line-wrapped) + - 'throughout' + - [] + ensurePdfTextPositions: + - # Citations appear in margin (rightOf body text) + - subject: "Bifurcan" + relation: rightOf + object: "ventilation shaft" + - subject: "Ficciones" + relation: rightOf + object: "architecture" + # Sequential citations are stacked vertically in margin + - subject: "Ficciones" + relation: below + object: "Bifurcan" + - subject: "Universalbibliothek" + relation: below + object: "Ficciones" + # "Siamese Press" is unique to Quain citation in margin + - subject: "Siamese Press" + relation: below + object: "Universalbibliothek" + - [] + noErrors: default +--- + +# Prolegomena + +The universe (which others call the Library) is composed of an indefinite, perhaps infinite, number of hexagonal galleries [@borges1941library, p. 51]. In the center of each gallery is a ventilation shaft, bounded by a low railing. From any hexagon one can see the floors above and below---one after another, endlessly. + +This essay concerns itself not with the Library's architecture, which has been adequately described elsewhere [see @borges1944ficciones, ch. 1], but with a peculiar feature of its books: the margin notes. + +# On Marginalia in the Total Library + +If the Library contains all possible books of 410 pages, it must contain books with margins. And if it contains books with margins, it must contain margin notes. The German philosopher @kurd1933hexagonal did not consider this recursive complication in his calculations. + +Consider: for each book in the Library, there exists another book containing the first book's text plus commentary in the margins. And for each of these annotated volumes, there exists a meta-commentary. The recursion is, like the Library itself, infinite. + +## Herbert Quain's Marginal Method + +The Anglo-Irish writer Herbert Quain [-@quain1936labyrinth, pp. 12-15] reportedly composed his novels in reverse, writing the margin notes first. His masterwork, *April March*, can be read in nine different ways, each determined by which margin notes the reader chooses to follow. + +## The Margins of the Vindication + +The seekers of the Vindication [cf. @vindication1738, p. 7 and throughout] have long debated: if the Vindication exists, do its margins contain additional vindications? The First Librarian [@librarians1638first] argued that the true Vindication would have no margins at all---that the text itself would fill every available space, justifying even the whiteness of the paper. + +# Literary Descendants + +Borges's influence on subsequent literature is well documented [@casares1940morel; @eco1980name; @calvino1979winter]. Bioy Casares, Borges's collaborator and friend, created machines that record and replay reality. Eco built a library that murders. Calvino wrote about a reader unable to finish any book because each book keeps becoming another book. + +What these authors share is an understanding that texts are not stable objects but rather provisional arrangements of signs that point to other signs. This is the lesson of the Library: meaning is always deferred, always in the margins. + +# Conclusion + +In the Library, I search for the book that will explain my life. Somewhere among the twenty-five symbols lies my vindication. Until then, I write these margin notes, adding to the infinite commentary. + +As @tzinacana1521jaguar discovered in his prison, sometimes the most important text is not written in books at all but inscribed on the skin of a jaguar, fourteen words that make their speaker omnipotent. But Tzinacana chose not to speak them. + +Perhaps the Library's true meaning is in the margins we choose not to read, the books we pass by in our endless search for the one book that will make sense of all the others. Perhaps meaning itself is marginal. diff --git a/tests/docs/smoke-all/typst/margin-layout/citation-margin-elaborate.qmd b/tests/docs/smoke-all/typst/margin-layout/citation-margin-elaborate.qmd new file mode 100644 index 00000000000..f1e243ec10d --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/citation-margin-elaborate.qmd @@ -0,0 +1,87 @@ +--- +title: "The Universe (Which Others Call the Library)" +subtitle: "A Meditation on Infinite Texts and Their Margin Notes" +author: "A Hexagon Dweller" +papersize: us-letter +citation-location: margin +bibliography: borges-refs.bib +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Margin citations emit note() with cite(form: "full") directly + - ['#note\(', 'form: "full"'] + - [] + ensurePdfRegexMatches: + - - 'Universe' + - 'Library' + - 'hexagon' + - 'Vindication' + - 'Borges' + # Locators appear inline + - '\[1, p\. 51\]' + - '\[2, ch\. 1\]' + # Author-suppressed shows just year + - '\(1936\)' + # Suffix appears inline + - 'and throughout' + - [] + ensurePdfTextPositions: + - # Citations appear in margin (rightOf body text) + - subject: "bifurcan" + relation: rightOf + object: "ventilation shaft" + - subject: "Ficciones" + relation: rightOf + object: "architecture" + # Sequential citations are stacked vertically in margin + - subject: "Ficciones" + relation: below + object: "bifurcan" + - subject: "Universalbib" + relation: below + object: "Ficciones" + - subject: "Siamese Press" + relation: below + object: "Universalbib" + - [] + noErrors: default +--- + +# Prolegomena + +The universe (which others call the Library) is composed of an indefinite, perhaps infinite, number of hexagonal galleries [@borges1941library, p. 51]. In the center of each gallery is a ventilation shaft, bounded by a low railing. From any hexagon one can see the floors above and below---one after another, endlessly. + +This essay concerns itself not with the Library's architecture, which has been adequately described elsewhere [see @borges1944ficciones, ch. 1], but with a peculiar feature of its books: the margin notes. + +# On Marginalia in the Total Library + +If the Library contains all possible books of 410 pages, it must contain books with margins. And if it contains books with margins, it must contain margin notes. The German philosopher @kurd1933hexagonal did not consider this recursive complication in his calculations. + +Consider: for each book in the Library, there exists another book containing the first book's text plus commentary in the margins. And for each of these annotated volumes, there exists a meta-commentary. The recursion is, like the Library itself, infinite. + +## Herbert Quain's Marginal Method + +The Anglo-Irish writer Herbert Quain [-@quain1936labyrinth, pp. 12-15] reportedly composed his novels in reverse, writing the margin notes first. His masterwork, *April March*, can be read in nine different ways, each determined by which margin notes the reader chooses to follow. + +## The Margins of the Vindication + +The seekers of the Vindication [cf. @vindication1738, p. 7 and throughout] have long debated: if the Vindication exists, do its margins contain additional vindications? The First Librarian [@librarians1638first] argued that the true Vindication would have no margins at all---that the text itself would fill every available space, justifying even the whiteness of the paper. + +# Literary Descendants + +Borges's influence on subsequent literature is well documented [@casares1940morel; @eco1980name; @calvino1979winter]. Bioy Casares, Borges's collaborator and friend, created machines that record and replay reality. Eco built a library that murders. Calvino wrote about a reader unable to finish any book because each book keeps becoming another book. + +What these authors share is an understanding that texts are not stable objects but rather provisional arrangements of signs that point to other signs. This is the lesson of the Library: meaning is always deferred, always in the margins. + +# Conclusion + +In the Library, I search for the book that will explain my life. Somewhere among the twenty-five symbols lies my vindication. Until then, I write these margin notes, adding to the infinite commentary. + +As @tzinacana1521jaguar discovered in his prison, sometimes the most important text is not written in books at all but inscribed on the skin of a jaguar, fourteen words that make their speaker omnipotent. But Tzinacana chose not to speak them. + +Perhaps the Library's true meaning is in the margins we choose not to read, the books we pass by in our endless search for the one book that will make sense of all the others. Perhaps meaning itself is marginal. diff --git a/tests/docs/smoke-all/typst/margin-layout/citation-margin-link-citations.qmd b/tests/docs/smoke-all/typst/margin-layout/citation-margin-link-citations.qmd new file mode 100644 index 00000000000..a87ec0ed91a --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/citation-margin-link-citations.qmd @@ -0,0 +1,30 @@ +--- +title: "Margin Citation with Link Citations" +papersize: us-letter +citation-location: margin +bibliography: borges-refs.bib +link-citations: true +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Margin citations emit note() with cite(form: "full") directly + - ['#note\(', 'form: "full"'] + - [] + ensurePdfRegexMatches: + - ['LINK-TEST', 'Borges'] + - [] + noErrors: default +--- + +# Testing Link Citations with Margin Citations + +LINK-TEST: With `link-citations: true`, inline citations should be hyperlinked to the bibliography [@borges1941library]. + +The margin note should also contain the full citation [@eco1980name]. + +This tests whether link-citations interacts correctly with margin citation placement [@calvino1979winter]. diff --git a/tests/docs/smoke-all/typst/margin-layout/citation-margin-locator-citeproc.qmd b/tests/docs/smoke-all/typst/margin-layout/citation-margin-locator-citeproc.qmd new file mode 100644 index 00000000000..62a80c7add3 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/citation-margin-locator-citeproc.qmd @@ -0,0 +1,49 @@ +--- +title: "Margin Citation with Locators (Citeproc)" +papersize: us-letter +citation-location: margin +bibliography: borges-refs.bib +citeproc: true +format: + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # With citeproc, margin notes contain pre-rendered bibliography text (not #cite calls) + - ['#note\(', 'Borges.*1941', 'Bifurcan'] + - ['#cite\(<[^>]+>, form: "full"\)'] # Should NOT have native Typst cite calls + ensurePdfRegexMatches: + - - 'LOCATOR-MARKER' + - 'Borges' + - 'Quain' + # Citeproc drops "p." prefix - locators appear INLINE after author-date + # Use year + locator to avoid line-wrap issues with author names + - '1941, 42\)' # borges1941library, p. 42 + - '1944, 100' # borges1944ficciones, pp. 100-115 + - '1936, ch\. 3\)' # quain1936labyrinth, ch. 3 + - '1980, 200' # eco1980name, p. 200, fig. 5 + - [] + ensurePdfTextPositions: + - # Full citation in margin - "Bifurcan" is from borges1941library booktitle + - subject: "Bifurcan" + relation: rightOf + object: "LOCATOR-MARKER" + # Locator appears inline (left of margin content) - citeproc drops "p." prefix + - subject: "42" + relation: leftOf + object: "Bifurcan" + - [] + noErrors: default +--- + +# Testing Citation Locators in Margins + +LOCATOR-MARKER: The Library was first described with specific page references [@borges1941library, p. 42]. + +The expanded edition contains more details [@borges1944ficciones, pp. 100-115]. + +Chapter-specific references also work [@quain1936labyrinth, ch. 3]. + +Multiple locator types: see [@eco1980name, p. 200, fig. 5] for the library map. diff --git a/tests/docs/smoke-all/typst/margin-layout/citation-margin-locator.qmd b/tests/docs/smoke-all/typst/margin-layout/citation-margin-locator.qmd new file mode 100644 index 00000000000..3d097101a20 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/citation-margin-locator.qmd @@ -0,0 +1,48 @@ +--- +title: "Margin Citation with Locators" +papersize: us-letter +citation-location: margin +bibliography: borges-refs.bib +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Margin citations use direct note() calls with cite(form: "full") + - ['#note\(', 'form: "full"'] + - [] + ensurePdfRegexMatches: + - - 'LOCATOR-MARKER' + - 'Borges' + - 'Quain' + # Locators appear INLINE after citation number [N, locator] + - '\[1,\s*p\.\s*42\]' # borges1941library, p. 42 + - '\[2,\s*pp\.\s*100' # borges1944ficciones, pp. 100-115 + - '\[3,\s*ch\.\s*3\]' # quain1936labyrinth, ch. 3 + - '\[4,\s*p\.\s*200' # eco1980name, p. 200, fig. 5 + - [] + ensurePdfTextPositions: + - # Full citation in margin - "bifurcan" is unique to borges1941library booktitle + - subject: "bifurcan" + relation: rightOf + object: "LOCATOR-MARKER" + # Locator appears inline (left of margin content) + - subject: "p. 42" + relation: leftOf + object: "bifurcan" + - [] + noErrors: default +--- + +# Testing Citation Locators in Margins + +LOCATOR-MARKER: The Library was first described with specific page references [@borges1941library, p. 42]. + +The expanded edition contains more details [@borges1944ficciones, pp. 100-115]. + +Chapter-specific references also work [@quain1936labyrinth, ch. 3]. + +Multiple locator types: see [@eco1980name, p. 200, fig. 5] for the library map. diff --git a/tests/docs/smoke-all/typst/margin-layout/citation-margin-multiple.qmd b/tests/docs/smoke-all/typst/margin-layout/citation-margin-multiple.qmd new file mode 100644 index 00000000000..5c11f08ef22 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/citation-margin-multiple.qmd @@ -0,0 +1,43 @@ +--- +title: "Apocryphal Librarians and Impossible Catalogues" +papersize: us-letter +citation-location: margin +bibliography: borges-refs.bib +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Margin citations emit note() with cite(form: "full") directly + - ['#note\(', 'form: "full"'] + - [] + ensurePdfRegexMatches: + - ['FIRST-CITE-MARKER', 'SECOND-CITE-MARKER', 'MULTI-CITE-MARKER', 'Vindication'] + - [] + ensurePdfTextPositions: + - # Citation in margin - "1738" is the unique year from @vindication1738 + - subject: "1738" + relation: rightOf + object: "FIRST-CITE-MARKER" + - [] + noErrors: default +--- + +# The Seekers of the Vindication + +Among the infinite shelves of the Library, certain books have achieved mythical status. FIRST-CITE-MARKER The most sought-after is the Vindication [@vindication1738]---a book said to contain the complete justification of every person who has ever lived, written in clear prose. + +## The First Librarian's Paradox + +SECOND-CITE-MARKER The First Librarian of the Third Hexagon [@librarians1638first] famously observed that if the Library contains all books, it must contain both the faithful catalogue of the Library and the demonstration that this catalogue is false. Soergel's attempt at an index [@soergel1638index] proved to be merely an index of all indexes, recursively swallowing itself. + +## Fictional Precursors + +MULTI-CITE-MARKER These paradoxes echo throughout literature [@borges1941library; @eco1980name; @calvino1979winter]. The tradition of impossible books extends from Scheherazade's tales [@ts1001nights] through Pierre Menard's verbatim yet infinitely richer Quixote [@menard1934quixote]. + +## The Memory of Funes + +Not all impossible texts require a library. Ireneo Funes [@funes1897memory], after an accident that left him with perfect memory, devised a numbering system where each integer had a unique name. He could recall every leaf on every tree he had ever seen. His attempt to catalogue his memories would have required more time than the universe contains. diff --git a/tests/docs/smoke-all/typst/margin-layout/citation-margin-prefix-suffix-citeproc.qmd b/tests/docs/smoke-all/typst/margin-layout/citation-margin-prefix-suffix-citeproc.qmd new file mode 100644 index 00000000000..2e967b81c71 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/citation-margin-prefix-suffix-citeproc.qmd @@ -0,0 +1,46 @@ +--- +title: "Margin Citation with Prefix and Suffix (Citeproc)" +papersize: us-letter +citation-location: margin +bibliography: borges-refs.bib +citeproc: true +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # With citeproc, margin notes contain pre-rendered bibliography text (not #cite calls) + - ['#note\(', 'Borges'] + - ['#cite\(<[^>]+>, form: "full"\)'] # Should NOT have native Typst cite calls + ensurePdfRegexMatches: + # Citeproc preserves prefix/suffix inline (unlike native Typst which drops prefixes) + - - 'PREFIX-MARKER' + - 'SUFFIX-MARKER' + - 'Borges' + # Prefixes appear inline with author-date citation + - 'see Borges 1941' # prefix "see" preserved + - 'cf\. Eco' # prefix "cf." preserved + - 'see also' # complex prefix preserved + # Suffix appears inline (may be hyphenated across lines) + - 'phasis added' # "em-phasis added" hyphenated + - 'contrasting' + - [] + ensurePdfTextPositions: + - # Full citation in margin - "Bifurcan" is unique (citeproc uses title case) + - subject: "Bifurcan" + relation: rightOf + object: "PREFIX-MARKER" + - [] + noErrors: default +--- + +# Testing Citation Prefix and Suffix in Margins + +PREFIX-MARKER: As noted by several scholars [see @borges1941library], the Library concept is profound. + +SUFFIX-MARKER: The story was revolutionary [@borges1944ficciones, emphasis added]. + +COMPLEX-MARKER: For background [cf. @eco1980name; but see also @calvino1979winter for a contrasting view]. diff --git a/tests/docs/smoke-all/typst/margin-layout/citation-margin-prefix-suffix.qmd b/tests/docs/smoke-all/typst/margin-layout/citation-margin-prefix-suffix.qmd new file mode 100644 index 00000000000..1e1220afb8b --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/citation-margin-prefix-suffix.qmd @@ -0,0 +1,36 @@ +--- +title: "Margin Citation with Prefix and Suffix" +papersize: us-letter +citation-location: margin +bibliography: borges-refs.bib +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Margin citations emit note() with cite(form: "full") directly + - ['#note\(', 'form: "full"'] + - [] + ensurePdfRegexMatches: + # Check that suffix text appears (prefix handled separately for margin citations) + - ['PREFIX-MARKER', 'SUFFIX-MARKER', 'emphasis', 'Borges'] + - [] + ensurePdfTextPositions: + - # Full citation in margin - "bifurcan" is unique to borges1941library booktitle + - subject: "bifurcan" + relation: rightOf + object: "PREFIX-MARKER" + - [] + noErrors: default +--- + +# Testing Citation Prefix and Suffix in Margins + +PREFIX-MARKER: As noted by several scholars [see @borges1941library], the Library concept is profound. + +SUFFIX-MARKER: The story was revolutionary [@borges1944ficciones, emphasis added]. + +COMPLEX-MARKER: For background [cf. @eco1980name; but see also @calvino1979winter for a contrasting view]. diff --git a/tests/docs/smoke-all/typst/margin-layout/citation-margin-suppress-bib.qmd b/tests/docs/smoke-all/typst/margin-layout/citation-margin-suppress-bib.qmd new file mode 100644 index 00000000000..41b98b99ab4 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/citation-margin-suppress-bib.qmd @@ -0,0 +1,34 @@ +--- +title: "Margin Citation with Suppress Bibliography" +papersize: us-letter +citation-location: margin +bibliography: borges-refs.bib +suppress-bibliography: true +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Margin citations emit note() with cite(form: "full") directly + - ['#note\(', 'form: "full"'] + - [] + ensurePdfRegexMatches: + # Citations should appear but NO bibliography section at end + - ['SUPPRESS-TEST', 'Borges'] + # Should NOT have a References/Bibliography heading + - ['References\s*$', 'Bibliography\s*$'] + noErrors: default +--- + +# Testing Suppress Bibliography with Margin Citations + +SUPPRESS-TEST: When using margin citations, the full citation appears in the margin [@borges1941library]. + +Since `suppress-bibliography: true` is set, there should be no bibliography section at the end of the document [@eco1980name]. + +This is the expected behavior because full citations already appear in the margins [@calvino1979winter]. + +The document should end here with no bibliography listing. diff --git a/tests/docs/smoke-all/typst/margin-layout/citation-margin-suppressed.qmd b/tests/docs/smoke-all/typst/margin-layout/citation-margin-suppressed.qmd new file mode 100644 index 00000000000..7575ebbb791 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/citation-margin-suppressed.qmd @@ -0,0 +1,36 @@ +--- +title: "Margin Citation with Author Suppression" +papersize: us-letter +citation-location: margin +bibliography: borges-refs.bib +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Margin citations emit note() with cite(form: "full") directly + - ['#note\(', 'form: "full"'] + - [] + ensurePdfRegexMatches: + # Author-suppressed should show year only in text, full in margin + - ['SUPPRESSED-MARKER', '1941', 'Borges'] + - [] + ensurePdfTextPositions: + - # Full citation in margin - "bifurcan" is unique to borges1941library booktitle + - subject: "bifurcan" + relation: rightOf + object: "SUPPRESSED-MARKER" + - [] + noErrors: default +--- + +# Testing Author-Suppressed Citations in Margins + +SUPPRESSED-MARKER: Borges [-@borges1941library] first published the story in 1941. + +As noted by Borges [-@borges1944ficciones], the collection brought together his finest work. + +The technique differs from a regular citation [@eco1980name] which shows the author. diff --git a/tests/docs/smoke-all/typst/margin-layout/collision-avoidance.qmd b/tests/docs/smoke-all/typst/margin-layout/collision-avoidance.qmd new file mode 100644 index 00000000000..fe9e5558008 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/collision-avoidance.qmd @@ -0,0 +1,54 @@ +--- +title: "Collision Avoidance Test" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + - ['#note\('] + - [] + ensurePdfTextPositions: + - # All margin notes right of body + - subject: "First margin" + relation: rightOf + object: "Line 1" + # Vertical stacking chain + - subject: "First margin" + relation: above + object: "Second note" + - subject: "Second note" + relation: above + object: "Third note" + - subject: "Third note" + relation: above + object: "NOTE4" + # Line 5 should be top-aligned with its margin note (enough space) + - subject: "Line 5" + relation: topAligned + object: "This note" + - [] + noErrors: default +--- + +This tests that multiple notes on nearby lines stack properly without overlapping. + +Line 1 [First margin note with longer content that takes up multiple lines in the narrow margin column to test stacking]{.column-margin}. +Line 2 [Second note should shift down to avoid the first]{.column-margin}. +Line 3 [Third note shifts further down]{.column-margin}. +Line 4 [NOTE4 margin content]{.column-margin}. + +## About Tufte Layout + +The Tufte layout style, named after Edward Tufte, places supplementary information in wide margins alongside the main text. This approach keeps the primary narrative clean while providing context, citations, and asides within the reader's peripheral vision. + +Tufte's books on information design—*The Visual Display of Quantitative Information*, *Envisioning Information*, and *Beautiful Evidence*—pioneered this layout for print. The wide right margin accommodates sidenotes, small figures, and citations without interrupting the flow of the main argument. + +In digital contexts, this layout translates well to screens wide enough to display both columns comfortably. For narrower screens, the margin content typically reflows into the main column or becomes expandable. + +The key advantage is reduced cognitive load: readers don't need to jump to footnotes at the page bottom or endnotes in a separate section. The relevant context appears exactly where it's needed. + +Line 5 [This note should appear near its source line since there's enough vertical space now]{.column-margin}. diff --git a/tests/docs/smoke-all/typst/margin-layout/column-widths-both.qmd b/tests/docs/smoke-all/typst/margin-layout/column-widths-both.qmd new file mode 100644 index 00000000000..11ef2653326 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/column-widths-both.qmd @@ -0,0 +1,71 @@ +--- +title: "Column Widths Both Sides Test" +papersize: us-letter +format: + html: + include-in-header: + text: | + + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + - ['#column-body-outset', '#column-page-inset'] + - [] + ensurePdfRegexMatches: + - ['BODY-B', 'OUTSET-B', 'PINSET-B', 'PAGE-B'] + - [] + ensurePdfTextPositions: + # Test width progression on left side (left edge moves leftward) + - - subject: {text: "OUTSET-B", edge: "left"} + relation: leftOf + object: {text: "BODY-B", edge: "left"} + byMin: 1 + - subject: {text: "PINSET-B", edge: "left"} + relation: leftOf + object: {text: "OUTSET-B", edge: "left"} + byMin: 1 + - subject: {text: "PAGE-B", edge: "left"} + relation: leftOf + object: {text: "PINSET-B", edge: "left"} + byMin: 1 + # Test width progression on right side (right edge moves rightward) + - subject: {text: "OUTSET-B", edge: "right"} + relation: rightOf + object: {text: "BODY-B", edge: "right"} + byMin: 1 + - subject: {text: "PINSET-B", edge: "right"} + relation: rightOf + object: {text: "OUTSET-B", edge: "right"} + byMin: 1 + - subject: {text: "PAGE-B", edge: "right"} + relation: rightOf + object: {text: "PINSET-B", edge: "right"} + byMin: 1 + - [] + noErrors: default +--- + +## Column Widths Both Sides Test + +Tests the width progression of symmetric column classes: body < body-outset < page-inset < page. + +::: {.column-body} +BODY-B: Standard body column width. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit. +::: + +::: {.column-body-outset} +OUTSET-B: Body outset extends slightly into both margins. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit. +::: + +::: {.column-page-inset} +PINSET-B: Page inset extends further into both margins than body-outset. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit. +::: + +::: {.column-page} +PAGE-B: Full page width extends to both page edges. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit. +::: + +Regular text for comparison. diff --git a/tests/docs/smoke-all/typst/margin-layout/column-widths-left.qmd b/tests/docs/smoke-all/typst/margin-layout/column-widths-left.qmd new file mode 100644 index 00000000000..f4f8d1ed9d5 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/column-widths-left.qmd @@ -0,0 +1,72 @@ +--- +title: "Column Widths Left Test" +papersize: us-letter +format: + html: + include-in-header: + text: | + + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + - ['#column-body-outset\(side: "inner"', '#column-page-inset\(side: "inner"'] + - [] + ensurePdfRegexMatches: + - ['BODY-L', 'OUTSET-L', 'PINSET-L', 'PAGE-L'] + - [] + ensurePdfTextPositions: + # Test width progression (left edge moves leftward): body < body-outset < page-inset < page + # Using leftOf with edge overrides to compare left edges + - - subject: {text: "OUTSET-L", edge: "left"} + relation: leftOf + object: {text: "BODY-L", edge: "left"} + byMin: 1 + - subject: {text: "PINSET-L", edge: "left"} + relation: leftOf + object: {text: "OUTSET-L", edge: "left"} + byMin: 1 + - subject: {text: "PAGE-L", edge: "left"} + relation: leftOf + object: {text: "PINSET-L", edge: "left"} + byMin: 1 + # Right edges should stay aligned with body (within tolerance) + - subject: "OUTSET-L" + relation: rightAligned + object: "BODY-L" + tolerance: 5 + - subject: "PINSET-L" + relation: rightAligned + object: "BODY-L" + tolerance: 5 + - subject: "PAGE-L" + relation: rightAligned + object: "BODY-L" + tolerance: 5 + - [] + noErrors: default +--- + +## Column Widths Left Test + +Tests the width progression of left-extending column classes: body < body-outset-left < page-inset-left < page-left. + +::: {.column-body} +BODY-L: Standard body column width. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit. +::: + +::: {.column-body-outset-left} +OUTSET-L: Body outset left extends slightly into the left margin. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit. +::: + +::: {.column-page-inset-left} +PINSET-L: Page inset left extends further into the left margin than body-outset. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit. +::: + +::: {.column-page-left} +PAGE-L: Full page left extends to the left page edge. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit. +::: + +Regular text for comparison. diff --git a/tests/docs/smoke-all/typst/margin-layout/column-widths-right.qmd b/tests/docs/smoke-all/typst/margin-layout/column-widths-right.qmd new file mode 100644 index 00000000000..eefc0cd8a9e --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/column-widths-right.qmd @@ -0,0 +1,72 @@ +--- +title: "Column Widths Right Test" +papersize: us-letter +format: + html: + include-in-header: + text: | + + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + - ['#column-body-outset\(side: "outer"', '#column-page-inset\(side: "outer"'] + - [] + ensurePdfRegexMatches: + - ['BODY-R', 'OUTSET-R', 'PINSET-R', 'PAGE-R'] + - [] + ensurePdfTextPositions: + # Test width progression (right edge moves rightward): body < body-outset < page-inset < page + # Using rightOf with edge overrides to compare right edges + - - subject: {text: "OUTSET-R", edge: "right"} + relation: rightOf + object: {text: "BODY-R", edge: "right"} + byMin: 1 + - subject: {text: "PINSET-R", edge: "right"} + relation: rightOf + object: {text: "OUTSET-R", edge: "right"} + byMin: 1 + - subject: {text: "PAGE-R", edge: "right"} + relation: rightOf + object: {text: "PINSET-R", edge: "right"} + byMin: 1 + # Left edges should stay aligned with body (within tolerance) + - subject: "OUTSET-R" + relation: leftAligned + object: "BODY-R" + tolerance: 5 + - subject: "PINSET-R" + relation: leftAligned + object: "BODY-R" + tolerance: 5 + - subject: "PAGE-R" + relation: leftAligned + object: "BODY-R" + tolerance: 5 + - [] + noErrors: default +--- + +## Column Widths Right Test + +Tests the width progression of right-extending column classes: body < body-outset-right < page-inset-right < page-right. + +::: {.column-body} +BODY-R: Standard body column width. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit. +::: + +::: {.column-body-outset-right} +OUTSET-R: Body outset right extends slightly into the right margin. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit. +::: + +::: {.column-page-inset-right} +PINSET-R: Page inset right extends further into the right margin than body-outset. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit. +::: + +::: {.column-page-right} +PAGE-R: Full page right extends to the right page edge. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit. +::: + +Regular text for comparison. diff --git a/tests/docs/smoke-all/typst/margin-layout/crossref-grand-finale.qmd b/tests/docs/smoke-all/typst/margin-layout/crossref-grand-finale.qmd new file mode 100644 index 00000000000..55a34f8d1eb --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/crossref-grand-finale.qmd @@ -0,0 +1,332 @@ +--- +title: "Cross-Reference Grand Finale" +papersize: us-letter +grid: + margin-width: 2in + gutter-width: 0.25in +format: + html: default + typst: + keep-typ: true + include-in-header: + text: | + #show figure: set block(breakable: true) +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Should have notefigure for margin content and regular figures for main + - ['#notefigure\(', '#figure\('] + - [] + ensurePdfRegexMatches: + # Verify sequential numbering throughout document + # Figures: 1-6 + - - 'Figure 1' + - 'FIG-MARGIN-ALPHA' + - 'Figure 2' + - 'FIG-MAIN-BETA' + - 'Figure 3' + - 'FIG-MARGINCAP-GAMMA' + - 'Figure 4' + - 'FIG-MARGIN-DELTA' + - 'Figure 5' + - 'FIG-MAIN-EPSILON' + - 'Figure 6' + - 'FIG-MARGINCAP-ZETA' + # Tables: 1-6 + - 'Table 1' + - 'TBL-MARGIN-ALPHA' + - 'Table 2' + - 'TBL-MAIN-BETA' + - 'Table 3' + - 'TBL-MARGINCAP-GAMMA' + - 'Table 4' + - 'TBL-MARGIN-DELTA' + - 'Table 5' + - 'TBL-MAIN-EPSILON' + - 'Table 6' + - 'TBL-MARGINCAP-ZETA' + # Listings: 1-6 + - 'Listing 1' + - 'LST-MARGIN-ALPHA' + - 'Listing 2' + - 'LST-MAIN-BETA' + - 'Listing 3' + - 'LST-MARGINCAP-GAMMA' + - 'Listing 4' + - 'LST-MARGIN-DELTA' + - 'Listing 5' + - 'LST-MAIN-EPSILON' + - 'Listing 6' + - 'LST-MARGINCAP-ZETA' + # Equations: 1-6 + - 'Equation 1' + - 'Equation 2' + - 'Equation 3' + - 'Equation 4' + - 'Equation 5' + - 'Equation 6' + - [] + ensurePdfTextPositions: + - # Margin figure caption in margin (rightOf body text) - "Figure 1:" unique to caption + - subject: "Figure 1:" + relation: rightOf + object: "Round 1" + # Margin table caption in margin + - subject: "Table 1:" + relation: rightOf + object: "Round 1" + # Margin listing caption in margin + - subject: "Listing 1:" + relation: rightOf + object: "Round 1" + # Margin caption figure in margin + - subject: "Figure 3:" + relation: rightOf + object: "Round 3" + - [] + noErrors: default +--- + +This comprehensive test verifies cross-reference numbering across figures, tables, listings, and equations placed in different layout positions. + +## Round 1: Margin Placement + +### Figure in Margin + +::: {.column-margin} +![FIG-MARGIN-ALPHA](https://placehold.co/150x100/blue/white?text=Fig1){#fig-margin-alpha} +::: + +Reference to @fig-margin-alpha (Figure 1, caption FIG-MARGIN-ALPHA). + +### Table in Margin + +::: {.column-margin} + +| X | Y | +|---|---| +| 1 | 2 | + +: TBL-MARGIN-ALPHA {#tbl-margin-alpha} + +::: + +Reference to @tbl-margin-alpha (Table 1, caption TBL-MARGIN-ALPHA). + +### Listing in Margin + +::: {.column-margin} + +```{#lst-margin-alpha .python lst-cap="LST-MARGIN-ALPHA"} +x = 1 # margin listing 1 +``` + +::: + +Reference to @lst-margin-alpha (Listing 1, caption LST-MARGIN-ALPHA). + +### Equation in Margin + +::: {.column-margin} +$$ +\alpha = 1 +$$ {#eq-margin-alpha} +::: + +Reference to @eq-margin-alpha (Equation 1). + +## Round 2: Main Column Placement + +### Figure in Main + +![FIG-MAIN-BETA](https://placehold.co/400x200/green/white?text=Fig2){#fig-main-beta} + +Reference to @fig-main-beta (Figure 2, caption FIG-MAIN-BETA). + +### Table in Main + +| A | B | C | +|---|---|---| +| 1 | 2 | 3 | +| 4 | 5 | 6 | + +: TBL-MAIN-BETA {#tbl-main-beta} + +Reference to @tbl-main-beta (Table 2, caption TBL-MAIN-BETA). + +### Listing in Main + +```{#lst-main-beta .python lst-cap="LST-MAIN-BETA"} +y = 2 # main listing 2 +``` + +Reference to @lst-main-beta (Listing 2, caption LST-MAIN-BETA). + +### Equation in Main + +$$ +\beta = 2 +$$ {#eq-main-beta} + +Reference to @eq-main-beta (Equation 2). + +## Round 3: Main Content with Margin Caption + +### Figure with Margin Caption + +![FIG-MARGINCAP-GAMMA](https://placehold.co/400x200/red/white?text=Fig3){#fig-margincap-gamma .margin-caption} + +Reference to @fig-margincap-gamma (Figure 3, caption FIG-MARGINCAP-GAMMA in margin). + +### Table with Margin Caption + +| P | Q | R | +|---|---|---| +| a | b | c | + +: TBL-MARGINCAP-GAMMA {#tbl-margincap-gamma .margin-caption} + +Reference to @tbl-margincap-gamma (Table 3, caption TBL-MARGINCAP-GAMMA in margin). + +### Listing with Margin Caption + +```{#lst-margincap-gamma .python lst-cap="LST-MARGINCAP-GAMMA" .margin-caption} +z = 3 # main listing with margin caption +``` + +Reference to @lst-margincap-gamma (Listing 3, caption LST-MARGINCAP-GAMMA in margin). + +### Equation in Main (equations don't have separate captions) + +$$ +\gamma = 3 +$$ {#eq-main-gamma} + +Reference to @eq-main-gamma (Equation 3). + +## Round 4: More Margin Placement + +### Figure in Margin + +::: {.column-margin} +![FIG-MARGIN-DELTA](https://placehold.co/150x100/purple/white?text=Fig4){#fig-margin-delta} +::: + +Reference to @fig-margin-delta (Figure 4, caption FIG-MARGIN-DELTA). + +### Table in Margin + +::: {.column-margin} + +| M | N | +|---|---| +| 7 | 8 | + +: TBL-MARGIN-DELTA {#tbl-margin-delta} + +::: + +Reference to @tbl-margin-delta (Table 4, caption TBL-MARGIN-DELTA). + +### Listing in Margin + +::: {.column-margin} + +```{#lst-margin-delta .python lst-cap="LST-MARGIN-DELTA"} +a = 4 # margin listing 4 +``` + +::: + +Reference to @lst-margin-delta (Listing 4, caption LST-MARGIN-DELTA). + +### Equation in Margin + +::: {.column-margin} +$$ +\delta = 4 +$$ {#eq-margin-delta} +::: + +Reference to @eq-margin-delta (Equation 4). + +## Round 5: More Main Column + +### Figure in Main + +![FIG-MAIN-EPSILON](https://placehold.co/400x200/orange/white?text=Fig5){#fig-main-epsilon} + +Reference to @fig-main-epsilon (Figure 5, caption FIG-MAIN-EPSILON). + +### Table in Main + +| D | E | F | +|---|---|---| +| 9 | 0 | 1 | + +: TBL-MAIN-EPSILON {#tbl-main-epsilon} + +Reference to @tbl-main-epsilon (Table 5, caption TBL-MAIN-EPSILON). + +### Listing in Main + +```{#lst-main-epsilon .python lst-cap="LST-MAIN-EPSILON"} +b = 5 # main listing 5 +``` + +Reference to @lst-main-epsilon (Listing 5, caption LST-MAIN-EPSILON). + +### Equation in Main + +$$ +\epsilon = 5 +$$ {#eq-main-epsilon} + +Reference to @eq-main-epsilon (Equation 5). + +## Round 6: More Margin Caption + +### Figure with Margin Caption + +![FIG-MARGINCAP-ZETA](https://placehold.co/400x200/teal/white?text=Fig6){#fig-margincap-zeta .margin-caption} + +Reference to @fig-margincap-zeta (Figure 6, caption FIG-MARGINCAP-ZETA in margin). + +### Table with Margin Caption + +| G | H | I | +|---|---|---| +| x | y | z | + +: TBL-MARGINCAP-ZETA {#tbl-margincap-zeta .margin-caption} + +Reference to @tbl-margincap-zeta (Table 6, caption TBL-MARGINCAP-ZETA in margin). + +### Listing with Margin Caption + +```{#lst-margincap-zeta .python lst-cap="LST-MARGINCAP-ZETA" .margin-caption} +c = 6 # main listing with margin caption 6 +``` + +Reference to @lst-margincap-zeta (Listing 6, caption LST-MARGINCAP-ZETA in margin). + +### Equation in Main + +$$ +\zeta = 6 +$$ {#eq-main-zeta} + +Reference to @eq-main-zeta (Equation 6). + +## Summary of Cross-References + +All references should show correct sequential numbering: + +**Figures:** @fig-margin-alpha, @fig-main-beta, @fig-margincap-gamma, @fig-margin-delta, @fig-main-epsilon, @fig-margincap-zeta + +**Tables:** @tbl-margin-alpha, @tbl-main-beta, @tbl-margincap-gamma, @tbl-margin-delta, @tbl-main-epsilon, @tbl-margincap-zeta + +**Listings:** @lst-margin-alpha, @lst-main-beta, @lst-margincap-gamma, @lst-margin-delta, @lst-main-epsilon, @lst-margincap-zeta + +**Equations:** @eq-margin-alpha, @eq-main-beta, @eq-main-gamma, @eq-margin-delta, @eq-main-epsilon, @eq-main-zeta diff --git a/tests/docs/smoke-all/typst/margin-layout/custom-geometry-asymmetric.qmd b/tests/docs/smoke-all/typst/margin-layout/custom-geometry-asymmetric.qmd new file mode 100644 index 00000000000..6ab99e26476 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/custom-geometry-asymmetric.qmd @@ -0,0 +1,77 @@ +--- +title: "Custom Geometry: Asymmetric Page Margins" +papersize: us-letter +margin: + left: 0.75in + right: 0.5in +grid: + margin-width: 2.5in + gutter-width: 0.4in +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # inner block contains sep: 0.750in (the left margin) + # outer block contains far: 0.500in, width: 2.500in, sep: 0.400in + - ['inner:', 'sep: 0.750in', 'outer:', 'far: 0.500in', 'width: 2.500in', 'sep: 0.400in'] + - [] + ensurePdfRegexMatches: + - - 'Figure 1' + - 'asymmetric' + - 'tight\s+right\s+padding' + - [] + ensurePdfTextPositions: + - # Margin notes are in margin (rightOf body text) with asymmetric geometry + - subject: "asymmetric layout" + relation: rightOf + object: "Asymmetric Page Layout" + - subject: "asymmetric layout" + relation: above + object: "pushes the text" + - [] + noErrors: default +--- + +```{r} +#| label: setup +#| echo: false +library(ggplot2) +``` + +## Asymmetric Page Layout Test + +This document tests asymmetric page margins: 0.75in left margin and 0.5in right padding. +[Combined with a 2.5in margin column, this creates an asymmetric layout with tight right padding.]{.aside} + +The left page margin is slightly smaller than default (0.75in vs 1in), and the right edge padding is tighter (0.5in). +[This layout pushes the text toward the left and gives more room for margin notes.]{.aside} + +```{r} +#| label: fig-asymmetric +#| echo: false +#| fig-cap: "Phase-shifted waves (seed 2024)" + +set.seed(2024) +x <- seq(0, 4 * pi, length.out = 200) +df <- data.frame( + x = rep(x, 4), + y = c(sin(x), + sin(x + pi/4) * 0.9 + rnorm(200, 0, 0.02), + sin(x + pi/2) * 0.8 + rnorm(200, 0, 0.02), + sin(x + 3*pi/4) * 0.7 + rnorm(200, 0, 0.02)), + wave = rep(c("0 deg", "45 deg", "90 deg", "135 deg"), each = 200) +) +ggplot(df, aes(x, y, color = wave)) + + geom_line(linewidth = 1) + + theme_minimal() + + labs(x = NULL, y = NULL, title = "Phase Shifts") + + theme(legend.position = "bottom") +``` + +[Asymmetric layouts can be useful for binding or visual balance.]{.aside} + +The grid options (margin-width, gutter-width) control the internal column layout, while margin options (left, right) control the page boundaries. diff --git a/tests/docs/smoke-all/typst/margin-layout/custom-geometry-narrow.qmd b/tests/docs/smoke-all/typst/margin-layout/custom-geometry-narrow.qmd new file mode 100644 index 00000000000..740dda71a92 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/custom-geometry-narrow.qmd @@ -0,0 +1,73 @@ +--- +title: "Custom Geometry: Narrow Margins" +papersize: us-letter +grid: + margin-width: 1.5in + gutter-width: 0.2in +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # outer block contains width: 1.500in (margin column) and sep: 0.200in (gutter) + - ['outer:', 'width: 1.500in', 'sep: 0.200in'] + - [] + ensurePdfRegexMatches: + - - 'Figure 1' + - 'Narrow margin' + - 'compact notes' + - [] + ensurePdfTextPositions: + - # Margin notes are in margin (rightOf body text) with narrow geometry + - subject: "compact notes" + relation: rightOf + object: "Narrow Margin Layout" + - subject: "compact notes" + relation: above + object: "Short annotations" + - [] + noErrors: default +--- + +```{r} +#| label: setup +#| echo: false +library(ggplot2) +``` + +## Narrow Margin Layout Test + +This document tests a narrow margin configuration with 1.5-inch margin notes and a tight 0.2-inch gutter. +[Narrow margins require more compact notes.]{.aside} + +The text column is wider, giving more room for the main content. +[Short annotations work best here.]{.aside} + +```{r} +#| label: fig-narrow-margin +#| echo: false +#| fig-cap: "Damped oscillation (seed 777)" + +set.seed(777) +x <- seq(0, 4 * pi, length.out = 200) +damping <- exp(-x / 6) +df <- data.frame( + x = rep(x, 3), + y = c(sin(x) * damping + rnorm(200, 0, 0.02), + sin(2 * x) * damping * 0.7 + rnorm(200, 0, 0.02), + sin(3 * x) * damping * 0.5 + rnorm(200, 0, 0.02)), + wave = rep(c("Fundamental", "2nd Harmonic", "3rd Harmonic"), each = 200) +) +ggplot(df, aes(x, y, color = wave)) + + geom_line(linewidth = 1) + + theme_minimal() + + labs(x = NULL, y = NULL) + + theme(legend.position = "bottom") +``` + +[The narrow margin still works for brief notes.]{.aside} + +This layout maximizes reading space while still allowing margin annotations. diff --git a/tests/docs/smoke-all/typst/margin-layout/custom-geometry-wide.qmd b/tests/docs/smoke-all/typst/margin-layout/custom-geometry-wide.qmd new file mode 100644 index 00000000000..241df07a1b9 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/custom-geometry-wide.qmd @@ -0,0 +1,95 @@ +--- +title: "Custom Geometry: Wide Margins" +papersize: us-letter +grid: + margin-width: 3in + gutter-width: 0.5in +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # outer block contains width: 3.000in (margin column) and sep: 0.500in (gutter) + - ['outer:', 'width: 3.000in', 'sep: 0.500in'] + - [] + ensurePdfRegexMatches: + - - 'Figure 1' + - 'Figure 2' + - 'Wide margin' + - 'This is a note' + - [] + ensurePdfTextPositions: + - # Margin notes are in margin (rightOf body text) with wide geometry + - subject: "This is a note" + relation: rightOf + object: "Wide Margin Layout" + - subject: "This is a note" + relation: above + object: "Additional context" + - [] + noErrors: default +--- + +```{r} +#| label: setup +#| echo: false +library(ggplot2) +``` + +## Wide Margin Layout Test + +This document tests a wide margin configuration with 3-inch margin notes and 0.5-inch gutter. +[This is a note in the wide 3-inch margin column. It has plenty of room for detailed annotations.]{.aside} + +The text column is narrower to accommodate the larger margin area. +[Additional context can be placed here without feeling cramped.]{.aside} + +```{r} +#| label: fig-wide-margin-1 +#| echo: false +#| fig-cap: "Sine waves with wide margin (seed 42)" + +set.seed(42) +x <- seq(0, 4 * pi, length.out = 200) +df <- data.frame( + x = rep(x, 3), + y = c(sin(x), sin(2 * x + runif(1)) * 0.7 + rnorm(200, 0, 0.05), + sin(0.5 * x + runif(1)) * 0.8 + rnorm(200, 0, 0.05)), + wave = rep(c("Wave 1", "Wave 2", "Wave 3"), each = 200) +) +ggplot(df, aes(x, y, color = wave)) + + geom_line(linewidth = 1) + + theme_minimal() + + labs(x = NULL, y = NULL) + + theme(legend.position = "bottom") +``` + +[Wide margin layouts are ideal for documents with extensive annotations, like academic papers or technical documentation.]{.aside} + +Another figure with different data to verify cross-references work correctly. + +```{r} +#| label: fig-wide-margin-2 +#| echo: false +#| fig-cap: "Cosine waves with noise (seed 123)" + +set.seed(123) +x <- seq(0, 4 * pi, length.out = 200) +df <- data.frame( + x = rep(x, 3), + y = c(cos(x) + rnorm(200, 0, 0.03), + cos(2 * x) * 0.6 + rnorm(200, 0, 0.04), + cos(0.3 * x) * 1.2 + rnorm(200, 0, 0.02)), + wave = rep(c("Primary", "Harmonic", "Subharmonic"), each = 200) +) +ggplot(df, aes(x, y, color = wave)) + + geom_line(linewidth = 1) + + theme_minimal() + + labs(x = NULL, y = NULL) + + theme(legend.position = "bottom") +``` + +References: See @fig-wide-margin-1 and @fig-wide-margin-2 for the wave plots. diff --git a/tests/docs/smoke-all/typst/margin-layout/fullwidth-div.qmd b/tests/docs/smoke-all/typst/margin-layout/fullwidth-div.qmd new file mode 100644 index 00000000000..e20750aea91 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/fullwidth-div.qmd @@ -0,0 +1,43 @@ +--- +title: "Full Width Div Test" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + - ['#wideblock\(side: "outer"\)', '#wideblock\(side: "both"\)', '#wideblock\(side: "inner"\)'] + - [] + ensurePdfTextPositions: + - # Margin note is in margin (rightOf body text) + - subject: "MARGIN-NOTE-DIV" + relation: rightOf + object: "Full Width Div" + - # Negative: fullwidth content NOT rightOf margin note + - subject: "FULLWIDTH-RIGHT-CONTENT" + relation: rightOf + object: "MARGIN-NOTE-DIV" + noErrors: default +--- + +## Column Page Right +[MARGIN-NOTE-DIV: This note stays in the margin while the div extends across.]{.aside} + +::: {.column-page-right} +FULLWIDTH-RIGHT-CONTENT: {{< lipsum 1 >}} +::: + +## Column Page (Full Width) + +::: {.column-page} +{{< lipsum 2 >}} +::: + +## Column Page Left + +::: {.column-page-left} +{{< lipsum 1 >}} +::: diff --git a/tests/docs/smoke-all/typst/margin-layout/fullwidth-figure.qmd b/tests/docs/smoke-all/typst/margin-layout/fullwidth-figure.qmd new file mode 100644 index 00000000000..214a144e61f --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/fullwidth-figure.qmd @@ -0,0 +1,97 @@ +--- +title: "Full Width Figure Test" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + - ['#wideblock\(side: "outer"\)', '#wideblock\(side: "both"\)'] + - [] + ensurePdfRegexMatches: + # Verify figure captions appear at the figures + - - 'Figure 1: CAPWIDE1' + - 'Figure 2: CAPFULL2' + # Verify cross-references resolve correctly (allow whitespace/newlines) + - 'XREF1\s+Figure 1' + - 'XREF2\s+Figure 2' + - [] + ensurePdfTextPositions: + - # Aside text is in margin (rightOf body text) + - subject: "column-page-right" + relation: rightOf + object: "Page Right" + # Aside is rightOf fullwidth caption (aside in far margin, caption spans body) + - subject: "column-page-right" + relation: rightOf + object: "CAPWIDE1" + - # Negative: fullwidth caption NOT rightOf aside (caption not in far margin) + - subject: "CAPWIDE1" + relation: rightOf + object: "column-page-right" + noErrors: default +--- + +```{r} +#| label: setup +#| echo: false +library(ggplot2) +``` + +## Full Width Figure (Page Right) +[The `.column-page-right` class extends the figure into the right margin while keeping the left edge aligned with the text column.]{.aside} + +This figure extends into the right margin. Compare with XREF2 @fig-full-page below. +[Wave 1 uses the base frequency, Wave 2 doubles it, and Wave 3 halves it with a phase offset.]{.aside} + +```{r} +#| label: fig-wide-right +#| echo: false +#| fig-cap: "CAPWIDE1" +#| column: page-right +#| out-width: 100% + +x <- seq(0, 4 * pi, length.out = 200) +df <- data.frame( + x = rep(x, 3), + y = c(sin(x), sin(2 * x) * 0.7 + 0.5, sin(0.5 * x + 1) * 0.8 - 0.3), + wave = rep(c("Wave 1", "Wave 2", "Wave 3"), each = 200) +) +ggplot(df, aes(x, y, color = wave)) + + geom_line(linewidth = 1) + + theme_minimal() + + labs(x = NULL, y = NULL) + + theme(legend.position = "bottom") +``` + +## Full Width Figure (Full Page) +[The `.column-page` class spans the entire page width, extending into both margins.]{.aside} + +This figure spans the full page. Unlike XREF1 @fig-wide-right above, it extends into both margins. +[Full-width figures are ideal for time series, wide tables, or any content where horizontal space improves readability.]{.aside} + +```{r} +#| label: fig-full-page +#| echo: false +#| fig-cap: "CAPFULL2" +#| column: page +#| out-width: 100% + +ggplot(df, aes(x, y, color = wave)) + + geom_line(linewidth = 1.2) + + theme_minimal() + + labs(x = NULL, y = NULL) + + theme(legend.position = "bottom") +``` + +## Summary +[Margin layouts in Typst use the marginalia package under the hood.]{.aside} + +These examples demonstrate how Quarto's column classes translate to Typst's margin layout system. The margin notes you see alongside this text provide additional context without interrupting the main narrative flow. +[This approach follows Edward Tufte's principles of information design, keeping supplementary details accessible but unobtrusive.]{.aside} + +When combining full-width figures with margin notes, the layout engine automatically handles the spacing and positioning to prevent overlaps. +[The `papersize` option must be set for margin layouts to calculate geometry correctly.]{.aside} diff --git a/tests/docs/smoke-all/typst/margin-layout/fullwidth-listing.qmd b/tests/docs/smoke-all/typst/margin-layout/fullwidth-listing.qmd new file mode 100644 index 00000000000..63e6fe78798 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/fullwidth-listing.qmd @@ -0,0 +1,67 @@ +--- +title: "Full Width Listing Test" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Full-width listings should use wideblock + - ['#wideblock\(side: "outer"\)', '#wideblock\(side: "both"\)'] + - [] + ensurePdfRegexMatches: + - ['Listing 1', 'FULLWIDTH-CSS-STYLES', 'Listing 2', 'FULLWIDTH-SHELL-PIPELINE'] + - [] + ensurePdfTextPositions: + - # Margin note is in margin (rightOf body text) + - subject: "MARGIN-NOTE-LISTING" + relation: rightOf + object: "Full Width Listing" + - # Negative: fullwidth listing caption NOT rightOf margin note + - subject: "FULLWIDTH-CSS-STYLES" + relation: rightOf + object: "MARGIN-NOTE-LISTING" + noErrors: default +--- + +This tests code listings that extend into the margins for displaying wide code. +[MARGIN-NOTE-LISTING: This note stays in the margin while listings extend across.]{.aside} + +## CSS with Long Selectors (Page Right) + +```{#lst-fullwidth-css .css .column-page-right lst-cap="FULLWIDTH-CSS-STYLES"} +/* Complex CSS selectors and media queries that benefit from wide display */ +.dashboard-container .sidebar-navigation .menu-item.active .submenu-list .submenu-item:hover .submenu-link { color: #3498db; background-color: rgba(52, 152, 219, 0.1); transition: all 0.3s ease-in-out; } +.dashboard-container .main-content .card-grid .card-item .card-header .card-title { font-size: 1.25rem; font-weight: 600; color: #2c3e50; margin-bottom: 0.5rem; } +@media screen and (min-width: 1200px) and (max-width: 1600px) { .dashboard-container .sidebar-navigation { width: 280px; } .dashboard-container .main-content { margin-left: 300px; padding: 2rem; } } +@media screen and (min-width: 1600px) { .dashboard-container .sidebar-navigation { width: 320px; } .dashboard-container .main-content { margin-left: 340px; padding: 2.5rem; } } +``` + +See @lst-fullwidth-css for CSS styles using wide layout. + +## Shell Pipeline (Full Page) + +```{#lst-fullwidth-shell .bash .column-page lst-cap="FULLWIDTH-SHELL-PIPELINE"} +# Complex data processing pipeline that benefits from full-width display to avoid line wrapping +cat /var/log/application/access.log | grep -E "^[0-9]{4}-[0-9]{2}-[0-9]{2}" | awk -F'\t' '{print $1, $4, $7, $9}' | sort -t' ' -k1,1 -k2,2 | uniq -c | sort -rn | head -100 | tee /tmp/top_requests.txt + +# Docker command with many configuration options +docker run --detach --name production-api-server --hostname api.example.com --network bridge --publish 8080:8080 --publish 8443:8443 --volume /etc/ssl/certs:/etc/ssl/certs:ro --volume /var/log/api:/var/log/api:rw --env NODE_ENV=production --env DATABASE_URL=postgresql://user:pass@db.example.com:5432/production --env REDIS_URL=redis://cache.example.com:6379 --env JWT_SECRET_KEY=supersecretkey123 --memory 2g --cpus 2 --restart unless-stopped myregistry.example.com/api-server:v2.3.1 + +# Kubernetes kubectl command with complex selectors - uses spaces between arguments to allow wrapping +kubectl get pods --all-namespaces --selector 'app.kubernetes.io/component=backend,environment in (staging, production)' -o wide --sort-by '.metadata.creationTimestamp' --show-labels --field-selector 'status.phase!=Succeeded' --chunk-size 500 +``` + +See @lst-fullwidth-shell for shell pipelines using full-page width. + +## Summary + +Full-width code listings are useful for: + +- CSS with deeply nested selectors +- Shell commands with many arguments +- Long SQL queries +- Configuration files with long values diff --git a/tests/docs/smoke-all/typst/margin-layout/fullwidth-nested.qmd b/tests/docs/smoke-all/typst/margin-layout/fullwidth-nested.qmd new file mode 100644 index 00000000000..dc39a1a8656 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/fullwidth-nested.qmd @@ -0,0 +1,53 @@ +--- +title: "Nested Full Width Content Test" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + - ['#wideblock\('] + - [] + ensurePdfRegexMatches: + - ['OUTER-CONTENT', 'INNER-CONTENT', 'Figure 1'] + - [] + noErrors: default +--- + +## Nested Full Width Elements + +This tests nesting scenarios with full-width content. + +### Figure Inside Full-Width Div + +::: {.column-page} +OUTER-CONTENT: This is the outer full-width div. + +![INNER-CONTENT: A figure nested inside the full-width div](test-image.png){#fig-nested width=80%} + +Text after the nested figure, still inside the full-width div. +::: + +Reference to @fig-nested. + +### List Inside Full-Width Div + +::: {.column-page-right} +A full-width div containing a list: + +- First item in wide div +- Second item in wide div +- Third item in wide div + +And a code block: + +```python +def nested_code(): + return "inside fullwidth" +``` +::: + +Regular text after. diff --git a/tests/docs/smoke-all/typst/margin-layout/fullwidth-page-left.qmd b/tests/docs/smoke-all/typst/margin-layout/fullwidth-page-left.qmd new file mode 100644 index 00000000000..6ba9396a015 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/fullwidth-page-left.qmd @@ -0,0 +1,33 @@ +--- +title: "Column Page Left Test" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # column-page-left should map to wideblock with inner side + - ['#wideblock\(side: "inner"\)'] + - [] + ensurePdfRegexMatches: + - ['PAGE-LEFT-CONTENT', 'extends into'] + - [] + noErrors: default +--- + +## Column Page Left + +This tests the `.column-page-left` class which extends content into the left (inner) margin. + +::: {.column-page-left} +PAGE-LEFT-CONTENT: This content extends into the left margin while keeping the right edge aligned with the text column. This is useful for content that benefits from extra space on the left side. +::: + +Regular text continues here in the normal column width. + +[This aside stays in the right margin]{.aside} + +More regular text to show the contrast between page-left and normal content. diff --git a/tests/docs/smoke-all/typst/margin-layout/fullwidth-screen-inset-sides.qmd b/tests/docs/smoke-all/typst/margin-layout/fullwidth-screen-inset-sides.qmd new file mode 100644 index 00000000000..723330d105f --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/fullwidth-screen-inset-sides.qmd @@ -0,0 +1,39 @@ +--- +title: "Column Screen Inset Left/Right Test" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # column-screen-inset-left/right should use column-screen-inset with inner/outer + - ['#column-screen-inset\(side: "inner"\)', '#column-screen-inset\(side: "outer"\)'] + - [] + ensurePdfRegexMatches: + - ['INSET-LEFT-CONTENT', 'INSET-RIGHT-CONTENT'] + - [] + noErrors: default +--- + +## Column Screen Inset Left + +The `.column-screen-inset-left` class extends content toward the left with a small inset from the edge. + +::: {.column-screen-inset-left} +INSET-LEFT-CONTENT: This content extends toward the left edge but maintains a small inset. The right edge stays aligned with the text column. +::: + +Regular text here. + +## Column Screen Inset Right + +The `.column-screen-inset-right` class extends content toward the right with a small inset from the edge. + +::: {.column-screen-inset-right} +INSET-RIGHT-CONTENT: This content extends toward the right edge but maintains a small inset. The left edge stays aligned with the text column. +::: + +Regular text continues. diff --git a/tests/docs/smoke-all/typst/margin-layout/fullwidth-screen-sides.qmd b/tests/docs/smoke-all/typst/margin-layout/fullwidth-screen-sides.qmd new file mode 100644 index 00000000000..1e961455216 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/fullwidth-screen-sides.qmd @@ -0,0 +1,39 @@ +--- +title: "Column Screen Left/Right Test" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # column-screen-left maps to inner, column-screen-right maps to outer + - ['#wideblock\(side: "inner"\)', '#wideblock\(side: "outer"\)'] + - [] + ensurePdfRegexMatches: + - ['SCREEN-LEFT-CONTENT', 'SCREEN-RIGHT-CONTENT'] + - [] + noErrors: default +--- + +## Column Screen Left + +The `.column-screen-left` class extends content to the left edge of the screen/page. + +::: {.column-screen-left} +SCREEN-LEFT-CONTENT: This content extends all the way to the left edge of the page, leaving the right side aligned with the text column. +::: + +Regular text here. + +## Column Screen Right + +The `.column-screen-right` class extends content to the right edge of the screen/page. + +::: {.column-screen-right} +SCREEN-RIGHT-CONTENT: This content extends all the way to the right edge of the page, leaving the left side aligned with the text column. +::: + +Regular text continues. diff --git a/tests/docs/smoke-all/typst/margin-layout/fullwidth-screen.qmd b/tests/docs/smoke-all/typst/margin-layout/fullwidth-screen.qmd new file mode 100644 index 00000000000..1bca9c23bce --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/fullwidth-screen.qmd @@ -0,0 +1,38 @@ +--- +title: "Column Screen Mapping Test" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # column-screen* classes should map to wideblock with appropriate sides + - ['#wideblock\(side: "both"\)'] + - [] + ensurePdfTextPositions: + - # Aside is above wideblock content (wideblock spans full page) + - subject: "haunts" + relation: above + object: + text: "catastrophic" + role: Decoration + - [] + noErrors: default +--- + +## Column Screen (Maps to Full Page) +[Zalgo text exploits Unicode combining diacritical marks to stack characters vertically, creating the "corrupted" appearance that haunts Stack Overflow regex questions.]{.aside} + +::: {.column-screen} +Look, I know you want to parse HTML with regex, but you really, truly, cannot do this correctly in the general case because HTML is not a regular language and the regex engine will consume your sanity before it consumes the closing tags, and honestly at this point you should just use a proper HTML parser like BeautifulSoup or lxml or even the browser's built-in DOMParser because life is too short to debug catastrophic backtracking at 3am when your boss asks why the production server is at 100% CPU because someone put a nested div inside another nested div inside yet another nested div and your regex is now contemplating the heat death of the universe and t̃hẽ c̃õm̃b̃ĩñĩñg̃ m̃ãr̃k̃s̃ ãr̃ẽ s̃t̃ãr̃t̃ĩñg̃ t̃õ ãp̃p̃ẽãr̃ and ṱ̈ḧ̤ë̤ṳ̈ ä̤r̤̈ë̤ g̤̈ë̤ṱ̈ṱ̈ï̤n̤̈g̤̈ d̤̈ë̤ë̤p̤̈ë̤r̤̈ and T̸̢̧̛̮̣͓̦̱̲̪̯͎͇̙̼̬̪͇̿̈́̆̏̎̾̇̈́͒͗̑̒̎̎͂̕͜͝͝H̵̢̨̛̙̣̜̫̪̼̫͖̙̤̫̫̪͍̒̈́̅̆̌̈́̊̉́̽̐͆̏̎̕͝͠E̸̢̧̛̬̫̼̙͓̦̫̣̯͎̪̭͎̫͓̿̈́̏̆̎̾̊̈́͒̑͗̒̎̕͜͝͝ ̵̧̨̛̮̪̣͓̦̱̲̫̯͎̭̙̼͇̿̈́̆̎̾̇̈́͒͗̑̒̎̎̕͜͝͝V̸̢̧̛̬̫̼̙͓̦̫̣̯͎̪̭͎̫͓̒̈́̏̆̅̎̾̊̈́͒̑͗̒̎̕͜͝͝Ơ̵̧̨̮̪̣͓̦̱̲̫̯͎̭̙̼͇̈́̿̈́̆̎̾̇̈́͒͗̑̒̎̎̕͜͝͝I̸̢̧̛̬̫̼̙͓̦̫̣̯͎̪̭͎̫͓̿̈́̏̆̅̎̾̊̈́͒̑͗̒̎̕͜͝͝Ḑ̵̨̛̮̪̣͓̦̱̲̫̯͎̭̙̼͇̿̈́̆̎̾̇̈́͒͗̑̒̎̎̕͜͝͝ ̸̢̧̛̬̫̼̙͓̦̫̣̯͎̪̭͎̫͓̿̈́̏̆̅̎̾̊̈́͒̑͗̒̎̕͜͝͝Ç̵̨̛̮̪̣͓̦̱̲̫̯͎̭̙̼͇̿̈́̆̎̾̇̈́͒͗̑̒̎̎̕͜͝͝Ơ̸̢̧̬̫̼̙͓̦̫̣̯͎̪̭͎̫͓̂̿̈́̏̆̅̎̾̊̈́͒̑͗̒̎̕͜͝͝Ņ̵̨̛̮̪̣͓̦̱̲̫̯͎̭̙̼͇̿̈́̆̎̾̇̈́͒͗̑̒̎̎̕͜͝͝S̸̢̧̛̬̫̼̙͓̦̫̣̯͎̪̭͎̫͓̿̈́̏̆̅̎̾̊̈́͒̑͗̒̎̕͜͝͝Ų̵̧̨̛̮̪̣͓̦̱̲̫̯͎̭̙̼͇̿̈́̆̎̾̇̈́͒͗̑̒̎̎̕͜͝͝M̸̢̧̛̬̫̼̙͓̦̫̣̯͎̪̭͎̫͓̿̈́̏̆̅̎̾̊̈́͒̑͗̒̎̕͜͝͝Ȩ̵̧̨̛̮̪̣͓̦̱̲̫̯͎̭̙̼͇̿̈́̆̎̾̇̈́͒͗̑̒̎̎̕͜͝͝S̸̢̧̛̬̫̼̙͓̦̫̣̯͎̪̭͎̫͓̿̈́̏̆̅̎̾̊̈́͒̑͗̒̎̕͜͝͝ +::: + + +## Column Screen Inset + +::: {.column-screen-inset} +The thing about Zalgo text is that it technically works by stacking Unicode combining characters above and below the base character, and while most text rendering systems will dutifully attempt to display U+0300 through U+036F stacked seventeen layers high, this does not mean your database schema was prepared for a username field containing what appears to be an eldritch summoning ritual, and no amount of VARCHAR(255) is going to save you when someone pastes in the collected works of H.P. Lovecraft rendered entirely in combining marks, so please just sanitize your inputs and also maybe consider that the void gazes also into you. H̶̷̸̴̵̨̧̡̢̛̪̫̬̭̮̯̰̱̲̳̹̺̻̼̽̾̿̀́͂̓̈́͆͊͋͌͐͑͒͗͘̕͜͝͞͠͡ͅE̶̷̸̴̵̡̢̨̧̛̖̗̘̙̽̾̿̀́͂̓̈́͆͊͋͌͐͑͒͗̚͘̕͜͝͞͠͡ͅ ̶̷̸̴̵̧̨̡̢̛̜̝̞̟̠̣̤̥̦̩̪̫̬̭̮̯̰̱̲̳̹̺̻̼̽̾̿̀́͂̓̈́͆͊͋͌͐͑͒͗͘̕͜͝͞͠͡ͅC̶̷̸̴̵̨̧̡̢̛̬̭̮̯̰̱̲̳̹̺̻̼̽̾̿̀́͂̓̈́͆͊͋͌͐͑͒͗͘̕͜͝͞͠͡ͅO̶̷̸̴̵̡̢̨̧̽̾̿̀́͂̓̈́͆͊͋͌͐͑͒͗͘̕͜͝͞͠͡M̶̷̸̴̵̧̨̡̢̛̽̾̿̀́͂̓̈́͆͊͋͌͐͑͒͗͘̕͜͝͞͠͡E̶̷̸̴̵̡̢̨̧̛̽̾̿̀́͂̓̈́͆͊͋͌͐͑͒͗͘̕͜͝͞͠͡S̶̷̸̴̵̨̧̡̢̛̽̾̿̀́͂̓̈́͆͊͋͌͐͑͒͗͘̕͜͝͞͠͡ +::: diff --git a/tests/docs/smoke-all/typst/margin-layout/fullwidth-table-great-tables.qmd b/tests/docs/smoke-all/typst/margin-layout/fullwidth-table-great-tables.qmd new file mode 100644 index 00000000000..cf96c8d17f5 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/fullwidth-table-great-tables.qmd @@ -0,0 +1,136 @@ +--- +title: "Full Width Table Test" +papersize: us-letter +format: + html: default + typst: + keep-typ: true + include-in-header: + text: | + #show figure: set block(breakable: true) +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + - ['#wideblock\(side: "outer"\)', '#wideblock\(side: "both"\)'] + - [] + ensurePdfRegexMatches: + - - 'Table 1' + - 'Table 2' + - 'Oceania' + - [] + ensurePdfTextPositions: + - # Aside in margin (rightOf body text) + - subject: "Palau to Tuvalu" + relation: rightOf + object: "extends into the right margin" + - # Negative: table content NOT rightOf aside (Tonga only in first table) + - subject: "Tonga" + relation: rightOf + object: "Palau to Tuvalu" + noErrors: default +--- + +## Full Width Table (Page Right) +[From Palau to Tuvalu, these island nations span thousands of miles of Pacific Ocean.]{.aside} + +This table extends into the right margin using great_tables with Oceania population data. + +```{python} +#| classes: plain +#| echo: false +#| label: tbl-wide-right +#| tbl-cap: "Oceania Population Growth (Page Right)" +#| column: page-right + +from great_tables import GT +from great_tables.data import countrypops +import polars as pl +import polars.selectors as cs + +oceania = { + "Australasia": ["AU", "NZ"], + "Melanesia": ["NC", "PG", "SB", "VU"], + "Micronesia": ["FM", "GU", "KI", "MH", "MP", "NR", "PW"], + "Polynesia": ["PF", "WS", "TO", "TV"], +} + +country_to_region = { + country: region for region, countries in oceania.items() for country in countries +} + +wide_pops = ( + pl.from_pandas(countrypops) + .filter( + pl.col("country_code_2").is_in(list(country_to_region)) + & pl.col("year").is_in([1960, 1980, 2000, 2020]) + ) + .with_columns(pl.col("country_code_2").replace(country_to_region).alias("region")) + .pivot(index=["country_name", "region"], on="year", values="population") + .sort("2020", descending=True) +) + +( + GT(wide_pops, rowname_col="country_name", groupname_col="region") + .tab_header( + title="Populations of Oceania's Countries", + subtitle="Extended into right margin" + ) + .tab_spanner(label="Population by Decade", columns=cs.all()) + .fmt_integer() + .tab_stubhead(label="Country") +) +``` + +## Full Width Table (Full Page) + +This table spans the full page with detailed population data and growth calculations. + +```{python} +#| classes: plain +#| echo: false +#| label: tbl-full-page +#| tbl-cap: "Oceania Population with Growth Rates (Full Page)" +#| column: page + +from great_tables import GT +from great_tables.data import countrypops +import polars as pl +import polars.selectors as cs + +oceania = { + "Australasia": ["AU", "NZ"], + "Melanesia": ["NC", "PG", "SB", "VU"], +} + +country_to_region = { + country: region for region, countries in oceania.items() for country in countries +} + +wide_pops = ( + pl.from_pandas(countrypops) + .filter( + pl.col("country_code_2").is_in(list(country_to_region)) + & pl.col("year").is_in([1960, 1970, 1980, 1990, 2000, 2010, 2020]) + ) + .with_columns(pl.col("country_code_2").replace(country_to_region).alias("region")) + .pivot(index=["country_name", "region"], on="year", values="population") + .sort("2020", descending=True) +) + +( + GT(wide_pops, rowname_col="country_name", groupname_col="region") + .tab_header( + title="Populations of Oceania's Countries", + subtitle="Australasia and Melanesia only (seven decades)" + ) + .tab_spanner(label="Population by Decade", columns=cs.all()) + .fmt_integer() + .tab_stubhead(label="Country") + .tab_source_note(source_note="Source: World Bank Open Data") +) +``` + +## Summary + +These examples demonstrate how Quarto's column classes translate to Typst's wide layout system for great_tables tables. diff --git a/tests/docs/smoke-all/typst/margin-layout/geometry-a4.qmd b/tests/docs/smoke-all/typst/margin-layout/geometry-a4.qmd new file mode 100644 index 00000000000..0f73472871d --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/geometry-a4.qmd @@ -0,0 +1,38 @@ +--- +title: "A4 Paper Size Test" +papersize: a4 +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Should have marginalia setup with A4 geometry + - ['marginalia.setup', 'paper: "a4"'] + - [] + ensurePdfRegexMatches: + - ['A4-PAPER-TEST', 'MARGIN-A4'] + - [] + ensurePdfTextPositions: + - - subject: "MARGIN-A4" + relation: rightOf + object: "A4-PAPER-TEST" + - [] + noErrors: default +--- + +## Testing A4 Paper Size + +A4-PAPER-TEST: This tests margin layout on A4 paper (210mm × 297mm), which is narrower but taller than US Letter. + +[MARGIN-A4: This note should appear in the margin with geometry computed for A4 dimensions.]{.column-margin} + +A4 is the international standard paper size used in most countries outside North America. The margin calculations should adapt to the different page width. + +More text to demonstrate the layout on A4 paper. The text column and margin widths should be proportionally adjusted for the narrower page. + +[Another margin note to test stacking on A4.]{.column-margin} + +Additional content in the main column. diff --git a/tests/docs/smoke-all/typst/margin-layout/geometry-body-width.qmd b/tests/docs/smoke-all/typst/margin-layout/geometry-body-width.qmd new file mode 100644 index 00000000000..92e41104c35 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/geometry-body-width.qmd @@ -0,0 +1,44 @@ +--- +title: "Grid Body Width Test" +papersize: us-letter +grid: + body-width: 5in + margin-width: 2in + gutter-width: 0.25in +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Should have marginalia setup with outer margin configuration + - ['marginalia.setup', 'outer:'] + - [] + ensurePdfRegexMatches: + - ['BODYTEST1', 'MARGINNOTE1'] + - [] + ensurePdfTextPositions: + - - subject: "MARGINNOTE1" + relation: rightOf + object: "BODYTEST1" + - [] + noErrors: default +--- + +## Testing Grid Body Width + +BODYTEST1: This tests the `grid.body-width` option which should control the width of the main text column. + +[MARGINNOTE1: This note should appear in a 2-inch margin column.]{.column-margin} + +With `body-width: 5in`, the text column should be narrower than default, leaving more room for margins. + +The layout should respect: + +- `body-width: 5in` - narrower text column +- `margin-width: 2in` - wider margin for notes +- `gutter-width: 0.25in` - gap between columns + +More text to fill out the column and show the narrower width. diff --git a/tests/docs/smoke-all/typst/margin-layout/geometry-legal.qmd b/tests/docs/smoke-all/typst/margin-layout/geometry-legal.qmd new file mode 100644 index 00000000000..626b3c5b2d8 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/geometry-legal.qmd @@ -0,0 +1,38 @@ +--- +title: "Legal Paper Size Test" +papersize: us-legal +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Should have marginalia setup with legal geometry + - ['marginalia.setup', 'paper: "us-legal"'] + - [] + ensurePdfRegexMatches: + - ['LEGAL-PAPER-TEST', 'MARGIN-LEGAL'] + - [] + ensurePdfTextPositions: + - - subject: "MARGIN-LEGAL" + relation: rightOf + object: "LEGAL-PAPER-TEST" + - [] + noErrors: default +--- + +## Testing Legal Paper Size + +LEGAL-PAPER-TEST: This tests margin layout on US Legal paper (8.5" × 14"), which is the same width as Letter but taller. + +[MARGIN-LEGAL: This note should appear in the margin with geometry computed for Legal dimensions.]{.column-margin} + +Legal paper has the same width as Letter (8.5"), so the margin column widths should be identical. However, the taller page (14" vs 11") provides more vertical space. + +More text to demonstrate the layout on Legal paper. Since the width matches Letter, the horizontal layout should be identical. + +[Another margin note on Legal paper.]{.column-margin} + +Additional content in the main column to show the layout. diff --git a/tests/docs/smoke-all/typst/margin-layout/index.qmd b/tests/docs/smoke-all/typst/margin-layout/index.qmd new file mode 100644 index 00000000000..2f97a9b0df7 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/index.qmd @@ -0,0 +1,37 @@ +--- +title: "Typst Margin Layout Tests" +--- + +This is a collection of test documents for Typst margin layout features. + +## Test Categories + +### Margin Notes & Asides +- Basic margin notes and aside elements +- Shift, alignment, and offset attributes + +### Sidenotes (Footnotes in Margin) +- `reference-location: margin` converts footnotes to sidenotes +- Multi-paragraph and complex content in sidenotes + +### Margin Citations +- `citation-location: margin` shows full citations in margin +- Various citation syntax (locators, prefix/suffix, etc.) + +### Margin Figures, Tables, and Listings +- `.column-margin` on floats +- Cross-references and caption positioning + +### Margin Captions +- `cap-location: margin` for figures/tables/listings + +### Full-Width Layouts +- `column-page`, `column-screen`, and variants + +### Geometry/Grid Customization +- Paper sizes (A4, Legal, Letter) +- Grid width options + +## Test Status + +Tests marked with ❌ are expected to fail, documenting unimplemented features. diff --git a/tests/docs/smoke-all/typst/margin-layout/margin-caption-docwide.qmd b/tests/docs/smoke-all/typst/margin-layout/margin-caption-docwide.qmd new file mode 100644 index 00000000000..356787d89f0 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/margin-caption-docwide.qmd @@ -0,0 +1,41 @@ +--- +title: "Document-wide Margin Captions" +papersize: us-letter +fig-cap-location: margin +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Uses show rule approach for margin captions + - ['#show figure.caption:', 'note\('] + - [] + ensurePdfRegexMatches: + - - 'Figure 1' + - 'Figure 2' + - 'CAP-FIRST' + - 'CAP-SECOND' + - [] + ensurePdfTextPositions: + - - subject: "CAP-FIRST" + relation: rightOf + object: "This document" + - subject: "CAP-FIRST" + relation: above + object: "CAP-SECOND" + - [] + noErrors: default +--- + +This document tests document-wide margin captions with `fig-cap-location: margin`. + +![CAP-FIRST](test-image.png){#fig-first} + +Some text between figures. + +![CAP-SECOND](test-image.png){#fig-second} + +References: @fig-first and @fig-second. diff --git a/tests/docs/smoke-all/typst/margin-layout/margin-caption-interleaved.qmd b/tests/docs/smoke-all/typst/margin-layout/margin-caption-interleaved.qmd new file mode 100644 index 00000000000..24c1fa6c5dd --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/margin-caption-interleaved.qmd @@ -0,0 +1,76 @@ +--- +title: "Interleaved Margin Caption Test" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensurePdfRegexMatches: + - - 'REF-ALPHA pointing to Figure 1' + - 'REF-BETA pointing to Figure 2' + - 'REF-GAMMA pointing to Figure 3' + - 'REF-DELTA pointing to Figure 4' + - 'REF-EPSILON pointing to Figure 5' + - 'Figure 1' + - 'Figure 2' + - 'Figure 3' + - 'Figure 4' + - 'Figure 5' + - [] + ensurePdfTextPositions: + - # Margin captions right of body (same page) + - subject: "CAP-ALPHA" + relation: rightOf + object: "First: Margin" + # Cross-refs left of margin captions (same page) + - subject: "REF-ALPHA" + relation: leftOf + object: "CAP-ALPHA" + - [] + noErrors: default +--- + +This document tests interleaved margin and regular captions with sequential numbering. + +## First: Margin Caption + +![CAP-ALPHA with margin caption](test-plot.svg){#fig-alpha cap-location="margin"} + +Text with REF-ALPHA pointing to @fig-alpha. + +## Second: Regular Caption + +![CAP-BETA with regular caption](test-plot.svg){#fig-beta} + +Text with REF-BETA pointing to @fig-beta. + +## Third: Back to Margin Caption + +![CAP-GAMMA with margin caption](test-plot.svg){#fig-gamma cap-location="margin"} + +Text with REF-GAMMA pointing to @fig-gamma. + +## Fourth: Regular Caption Again + +![CAP-DELTA with regular caption](test-plot.svg){#fig-delta} + +Text with REF-DELTA pointing to @fig-delta. + +## Fifth: Margin Caption Once More + +![CAP-EPSILON with margin caption](test-plot.svg){#fig-epsilon cap-location="margin"} + +Text with REF-EPSILON pointing to @fig-epsilon. + +## Summary + +All figures should be numbered sequentially 1-5: + +- @fig-alpha should be Figure 1 (margin caption) +- @fig-beta should be Figure 2 (regular caption) +- @fig-gamma should be Figure 3 (margin caption) +- @fig-delta should be Figure 4 (regular caption) +- @fig-epsilon should be Figure 5 (margin caption) diff --git a/tests/docs/smoke-all/typst/margin-layout/margin-caption-listing.qmd b/tests/docs/smoke-all/typst/margin-layout/margin-caption-listing.qmd new file mode 100644 index 00000000000..617da18d137 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/margin-caption-listing.qmd @@ -0,0 +1,59 @@ +--- +title: "Margin Caption Listing Test" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Listing with margin caption uses show rule approach + - ['#show figure.caption:', 'note\(', 'kind: "quarto-float-lst"'] + - [] + ensurePdfRegexMatches: + - ['Listing 1', 'MARGINCAPSQL', 'Listing 2', 'MARGINCAPPYTHON'] + - [] + ensurePdfTextPositions: + - - subject: "MARGINCAPSQL" + relation: rightOf + object: "SELECT" + - subject: "MARGINCAPPYTHON" + relation: rightOf + object: "calculate_statistics" + - subject: "MARGINCAPSQL" + relation: above + object: "MARGINCAPPYTHON" + - [] + noErrors: default +--- + +This tests code listings with captions placed in the margin. + +## SQL Query with Margin Caption + +```{#lst-margincap-sql .sql lst-cap="MARGINCAPSQL" .margin-caption} +SELECT customers.id, customers.name, orders.total +FROM customers +INNER JOIN orders ON customers.id = orders.customer_id +WHERE orders.status = 'completed' +ORDER BY orders.total DESC +LIMIT 10; +``` + +See @lst-margincap-sql for the SQL query with its caption in the margin. + +## Python Function with Margin Caption + +```{#lst-margincap-python .python lst-cap="MARGINCAPPYTHON" .margin-caption} +def calculate_statistics(data): + """Calculate basic statistics.""" + mean = sum(data) / len(data) + variance = sum((x - mean) ** 2 for x in data) / len(data) + return {"mean": mean, "std": variance ** 0.5} +``` + +See @lst-margincap-python for the Python function with margin caption. + +The code blocks stay in the main column while their captions appear in the margin. diff --git a/tests/docs/smoke-all/typst/margin-layout/margin-caption-tables.qmd b/tests/docs/smoke-all/typst/margin-layout/margin-caption-tables.qmd new file mode 100644 index 00000000000..d9a708d8efc --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/margin-caption-tables.qmd @@ -0,0 +1,96 @@ +--- +title: "Margin Caption Tables and Figures Test" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # All margin captions use show rule with top alignment, scoped with #[...] + - ['#show figure.caption:', 'note\(alignment: "top"', '#\['] + - [] + ensurePdfRegexMatches: + # Check caption labels (anchor text) + - - 'Figure 1: CAP-FIG-ONE' + - 'Table 1: CAP-TBL-ONE' + - 'Figure 2: CAP-FIG-TWO' + - 'Table 2: CAP-TBL-TWO' + - 'Figure 3: CAP-FIG-THREE' + # Check cross-references + - 'REF-FIG-ONE pointing to Figure 1' + - 'REF-TBL-ONE pointing to Table 1' + - 'REF-FIG-TWO pointing to Figure 2' + - 'REF-TBL-TWO pointing to Table 2' + - 'REF-FIG-THREE pointing to Figure 3' + # Ensure wrong values don't appear + - - 'Table 0' + - 'Figure 0' + ensurePdfTextPositions: + - # First page: margin captions right of body, refs left of captions + - subject: "CAP-FIG-ONE" + relation: rightOf + object: "First Figure" + - subject: "REF-FIG-ONE" + relation: leftOf + object: "CAP-FIG-ONE" + - subject: "CAP-FIG-ONE" + relation: above + object: "CAP-TBL-ONE" + - [] + noErrors: default +--- + +This document tests interleaved tables and figures with margin captions, verifying separate counters. + +## First Figure + +![CAP-FIG-ONE](test-plot.svg){#fig-one cap-location="margin"} + +Text with REF-FIG-ONE pointing to @fig-one. + +## First Table + +| A | B | C | +|---|---|---| +| 1 | 2 | 3 | +| 4 | 5 | 6 | + +: CAP-TBL-ONE {#tbl-one cap-location="margin"} + +Text with REF-TBL-ONE pointing to @tbl-one. + +## Second Figure + +![CAP-FIG-TWO](test-plot.svg){#fig-two cap-location="margin"} + +Text with REF-FIG-TWO pointing to @fig-two. + +## Second Table + +| X | Y | Z | +|---|---|---| +| a | b | c | +| d | e | f | + +: CAP-TBL-TWO {#tbl-two cap-location="margin"} + +Text with REF-TBL-TWO pointing to @tbl-two. + +## Third Figure + +![CAP-FIG-THREE](test-plot.svg){#fig-three cap-location="margin"} + +Text with REF-FIG-THREE pointing to @fig-three. + +## Summary + +Figures and tables should have separate sequential numbering: + +- @fig-one should be Figure 1 +- @fig-two should be Figure 2 +- @fig-three should be Figure 3 +- @tbl-one should be Table 1 +- @tbl-two should be Table 2 diff --git a/tests/docs/smoke-all/typst/margin-layout/margin-caption.qmd b/tests/docs/smoke-all/typst/margin-layout/margin-caption.qmd new file mode 100644 index 00000000000..44f1905b37f --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/margin-caption.qmd @@ -0,0 +1,40 @@ +--- +title: "Margin Caption Test" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Uses show rule approach: figure.caption transformed to note() + - ['#show figure.caption:', 'note\(', 'counter: none', 'Figure'] + - [] + ensurePdfRegexMatches: + - ['Figure 1', 'CAP-MARGINCAP'] + - [] + ensurePdfTextPositions: + - - subject: "CAP-MARGINCAP" + relation: rightOf + object: "This document" + # Figure in body, caption in margin + - subject: "★" + relation: leftOf + object: "CAP-MARGINCAP" + # Test top alignment with show rule approach + # Tolerance of 12pt accounts for SVG bbox vs text position + - subject: "CAP-MARGINCAP" + relation: topAligned + object: "★" + tolerance: 12 + - [] + noErrors: default +--- + +This document tests per-figure margin captions. + +![CAP-MARGINCAP test caption](test-plot.svg){#fig-margin-cap cap-location="margin"} + +Text with REF-MARGINCAP pointing to @fig-margin-cap. diff --git a/tests/docs/smoke-all/typst/margin-layout/margin-div.qmd b/tests/docs/smoke-all/typst/margin-layout/margin-div.qmd new file mode 100644 index 00000000000..3f5d5a11290 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/margin-div.qmd @@ -0,0 +1,26 @@ +--- +title: "Margin Div Test" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + - ['#note\(alignment: "baseline"'] + - [] + ensurePdfTextPositions: + - - subject: "This content appears" + relation: rightOf + object: "Main content" + - [] + noErrors: default +--- + +::: {.column-margin} +This content appears in the margin. +::: + +Main content here. diff --git a/tests/docs/smoke-all/typst/margin-layout/margin-figure-caption-above-docwide.qmd b/tests/docs/smoke-all/typst/margin-layout/margin-figure-caption-above-docwide.qmd new file mode 100644 index 00000000000..0fe877970dd --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/margin-figure-caption-above-docwide.qmd @@ -0,0 +1,39 @@ +--- +title: "Margin Figure Caption Above (Document-wide)" +papersize: us-letter +fig-cap-location: top +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + - ['#notefigure\(', 'position: top'] + - [] + ensurePdfTextPositions: + - # Both captions right of body + - subject: "CAP-FIRST" + relation: rightOf + object: "This tests" + - subject: "CAP-SECOND" + relation: rightOf + object: "More text" + # First caption above second (vertical ordering) + - subject: "CAP-FIRST" + relation: above + object: "CAP-SECOND" + - [] + noErrors: default +--- + +This tests document-wide `fig-cap-location: top` applied to margin figures. + +![CAP-FIRST](test-plot.svg){#fig-first .column-margin width=100%} + +More text in the main column. + +![CAP-SECOND](test-plot.svg){#fig-second .column-margin width=100%} + +References: @fig-first and @fig-second. diff --git a/tests/docs/smoke-all/typst/margin-layout/margin-figure-caption-above.qmd b/tests/docs/smoke-all/typst/margin-layout/margin-figure-caption-above.qmd new file mode 100644 index 00000000000..fd37feb6a99 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/margin-figure-caption-above.qmd @@ -0,0 +1,37 @@ +--- +title: "Margin Figure Caption Above Test" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + - ['#notefigure\(', 'position: top'] + - [] + ensurePdfTextPositions: + - # Caption in margin, right of body + - subject: "CAP-ABOVE" + relation: rightOf + object: "This tests" + # Plot content (★ marker) in margin, right of body + - subject: "★" + relation: rightOf + object: "This tests" + # Caption ABOVE plot (cap-location: top) + - subject: "CAP-ABOVE" + relation: above + object: "★" + - [] + noErrors: default +--- + +This tests a margin figure with caption positioned above the figure content using `cap-location="top"`. + +![CAP-ABOVE](test-plot.svg){#fig-cap-above .column-margin cap-location="top" width=100%} + +See @fig-cap-above for the figure with caption above. + +More text in the main column to show the layout. diff --git a/tests/docs/smoke-all/typst/margin-layout/margin-figure-cell-option.qmd b/tests/docs/smoke-all/typst/margin-layout/margin-figure-cell-option.qmd new file mode 100644 index 00000000000..99e79f165bd --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/margin-figure-cell-option.qmd @@ -0,0 +1,46 @@ +--- +title: "Margin Figure Cell Option Test" +papersize: us-letter +grid: + margin-width: 3.5in + gutter-width: 0.25in +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Cell option should produce same output as fenced div: #notefigure + - ['#notefigure\(', 'kind: "quarto-float-fig"'] + - [] + ensurePdfRegexMatches: + - ['Figure 1', 'Scatter Plot'] + - [] + ensurePdfTextPositions: + - # Figure in margin, right of body text + - subject: "Scatter Plot" + relation: rightOf + object: "This tests" + - [] + noErrors: default +--- + +This tests an R ggplot figure placed in the margin using the `column: margin` cell option. + +```{r} +#| column: margin +#| label: fig-scatter +#| fig-cap: "Scatter Plot in Margin" +#| echo: false + +library(ggplot2) +ggplot(mtcars, aes(x = wt, y = mpg)) + + geom_point() + + theme_minimal() +``` + +As shown in @fig-scatter, the figure should appear entirely in the margin (both plot and caption). + +More text in the main column to demonstrate the layout. diff --git a/tests/docs/smoke-all/typst/margin-layout/margin-figure-crossref-interleaved.qmd b/tests/docs/smoke-all/typst/margin-layout/margin-figure-crossref-interleaved.qmd new file mode 100644 index 00000000000..876230e014f --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/margin-figure-crossref-interleaved.qmd @@ -0,0 +1,82 @@ +--- +title: "Interleaved Margin Figure Cross-ref Test" +papersize: us-letter +format: + typst: + keep-typ: true + html: default + pdf: default +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + - ['#notefigure\(', '', '', '', ''] + - [] + ensurePdfRegexMatches: + - - 'REF-ALPHA pointing to Figure 1' + - 'REF-BETA pointing to Figure 2' + - 'REF-GAMMA pointing to Figure 3' + - 'REF-DELTA pointing to Figure 4' + - 'Figure 1: CAP-ALPHA' + - 'Figure 2: CAP-BETA' + - 'Figure 3: CAP-GAMMA' + - 'Figure 4: CAP-DELTA' + - [] + ensurePdfTextPositions: + - # Margin figure captions right of body + - subject: "CAP-ALPHA" + relation: rightOf + object: "Here is text" + - subject: "CAP-GAMMA" + relation: rightOf + object: "Another margin" + # Vertical ordering of margin figures + - subject: "CAP-ALPHA" + relation: above + object: "CAP-GAMMA" + - [] + noErrors: default +--- + +This document tests cross-references between margin figures and main-column figures. + +## First Section + +Here is text before the first figure. + +![CAP-ALPHA in margin](test-plot.svg){#fig-alpha .column-margin width=100%} + +Text with REF-ALPHA pointing to @fig-alpha. + +## Second Section + +Now a regular main-column figure. + +![CAP-BETA in main](test-plot.svg){#fig-beta width=50%} + +Text with REF-BETA pointing to @fig-beta. + +## Third Section + +Another margin figure to test sequencing. + +![CAP-GAMMA in margin](test-plot.svg){#fig-gamma .column-margin width=100%} + +Text with REF-GAMMA pointing to @fig-gamma. + +## Fourth Section + +Final main-column figure. + +![CAP-DELTA in main](test-plot.svg){#fig-delta width=50%} + +Text with REF-DELTA pointing to @fig-delta. + +## Summary + +All figures numbered sequentially: + +- @fig-alpha should be Figure 1 (margin) +- @fig-beta should be Figure 2 (main) +- @fig-gamma should be Figure 3 (margin) +- @fig-delta should be Figure 4 (main) diff --git a/tests/docs/smoke-all/typst/margin-layout/margin-figure-crossref.qmd b/tests/docs/smoke-all/typst/margin-layout/margin-figure-crossref.qmd new file mode 100644 index 00000000000..1e5163d1297 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/margin-figure-crossref.qmd @@ -0,0 +1,37 @@ +--- +title: "Margin Figure Cross-ref Test" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + - ['#notefigure\(', ''] + - [] + ensurePdfTextPositions: + - # Caption in margin, right of body + - subject: "CROSSREF-FIG-CAP" + relation: rightOf + object: "This tests" + # Plot content (★ marker) in margin + - subject: "★" + relation: rightOf + object: "This tests" + # Caption below plot + - subject: "★" + relation: above + object: "CROSSREF-FIG-CAP" + - [] + noErrors: default +--- + +This tests cross-references to margin figures. + +![CROSSREF-FIG-CAP](test-plot.svg){#fig-test .column-margin width=100%} + +As shown in @fig-test, the figure appears in the margin with a working cross-reference. + +The reference should show "Figure 1" or similar. diff --git a/tests/docs/smoke-all/typst/margin-layout/margin-figure-shift.qmd b/tests/docs/smoke-all/typst/margin-layout/margin-figure-shift.qmd new file mode 100644 index 00000000000..463f16f4a91 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/margin-figure-shift.qmd @@ -0,0 +1,40 @@ +--- +title: "Margin Figure Shift Test" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + - ['shift: false', 'shift: "avoid"'] + - [] + ensurePdfTextPositions: + - # Both figures in margin + - subject: "FIXED-FIG-CAP" + relation: rightOf + object: "Line 1" + - subject: "AVOID-FIG-CAP" + relation: rightOf + object: "Line 2" + # First figure above second + - subject: "FIXED-FIG-CAP" + relation: above + object: "AVOID-FIG-CAP" + - [] + noErrors: default +--- + +This tests shift control on margin figures. + +Line 1 with a fixed figure: + +![FIXED-FIG-CAP](test-plot.svg){#fig-fixed .column-margin shift="false" width=100%} + +Line 2 with an avoid figure: + +![AVOID-FIG-CAP](test-plot.svg){#fig-avoid .column-margin shift="avoid" width=100%} + +The first figure stays fixed, the second only shifts if necessary. diff --git a/tests/docs/smoke-all/typst/margin-layout/margin-figure.qmd b/tests/docs/smoke-all/typst/margin-layout/margin-figure.qmd new file mode 100644 index 00000000000..7a0502a2eab --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/margin-figure.qmd @@ -0,0 +1,37 @@ +--- +title: "Margin Figure Test" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + - ['#notefigure\('] + - [] + ensurePdfTextPositions: + - # Caption in margin, right of body + - subject: "MARGIN-FIG-CAP" + relation: rightOf + object: "This tests" + # Plot content (★ marker) in margin, right of body + - subject: "★" + relation: rightOf + object: "This tests" + # Caption below plot (★ is in plot title area) + - subject: "★" + relation: above + object: "MARGIN-FIG-CAP" + - [] + noErrors: default +--- + +This tests a basic figure placed in the margin. + +![MARGIN-FIG-CAP](test-plot.svg){#fig-margin .column-margin width=100%} + +See @fig-margin for the figure in the margin. + +More text in the main column to show the layout. diff --git a/tests/docs/smoke-all/typst/margin-layout/margin-geometry-override.qmd b/tests/docs/smoke-all/typst/margin-layout/margin-geometry-override.qmd new file mode 100644 index 00000000000..e218edb766d --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/margin-geometry-override.qmd @@ -0,0 +1,32 @@ +--- +title: "Margin Geometry Override Test" +papersize: us-letter +format: + typst: + keep-typ: true + margin-geometry: + outer: + width: "3in" + clearance: "16pt" +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Verify user overrides are applied + - ['width: 3in', 'clearance: 16pt'] + # Verify computed defaults are preserved for non-overridden values + - ['width: 1\\.62'] # This should NOT match since we override to 3in + noErrors: default +--- + +## Margin Geometry Override Test + +This test verifies that users can override specific margin-geometry values while computed defaults are preserved for non-overridden values. + +::: {.column-margin} +This margin note triggers margin layout. +::: + +The outer.width is overridden to 3in (computed default would be ~1.62in). +The clearance is overridden to 16pt (default is 12pt). +Other values like outer.far, outer.separation, inner.* should use computed defaults. diff --git a/tests/docs/smoke-all/typst/margin-layout/margin-geometry.qmd b/tests/docs/smoke-all/typst/margin-layout/margin-geometry.qmd new file mode 100644 index 00000000000..d83599b91d5 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/margin-geometry.qmd @@ -0,0 +1,28 @@ +--- +title: "Typst Margin Geometry Test" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + - ['inner:', 'outer:', 'sep:.*in', 'width:.*in'] + - [] + ensurePdfTextPositions: + - # Margin content is in margin (rightOf body text) + - subject: "Margin content" + relation: rightOf + object: "Text in main column" + - [] + noErrors: default +--- + +::: {.column-margin} +Margin content with letter paper size. +::: + +Text in main column. The page geometry should be automatically calculated +based on the paper size (letter = 8.5in width). diff --git a/tests/docs/smoke-all/typst/margin-layout/margin-listing-cell-option-caption-below.qmd b/tests/docs/smoke-all/typst/margin-layout/margin-listing-cell-option-caption-below.qmd new file mode 100644 index 00000000000..fd8985f8762 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/margin-listing-cell-option-caption-below.qmd @@ -0,0 +1,56 @@ +--- +title: "Margin Listing with Caption Below" +papersize: us-letter +grid: + margin-width: 3.5in + gutter-width: 0.25in +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Cell option produces #notefigure with position: bottom + - ['#notefigure\(', 'kind: "quarto-float-lst"', 'position: bottom'] + - [] + ensurePdfRegexMatches: + - ['Listing 1', 'MARGINLISTBELOW'] + - [] + ensurePdfTextPositions: + - # Listing in margin, right of body text - "World" unique string in code + - subject: "MARGINLISTBELOW" + relation: rightOf + object: "This tests" + - subject: "World" + relation: rightOf + object: "This tests" + # Caption BELOW code (lst-cap-location: bottom) + - subject: "World" + relation: above + object: "MARGINLISTBELOW" + - [] + noErrors: default +--- + +This tests a code listing in the margin with caption below using `cap-location: bottom`. + +```{python} +#| column: margin +#| label: lst-margin-below +#| lst-cap: "MARGINLISTBELOW" +#| lst-cap-location: bottom +#| echo: true +#| eval: false + +def greet(name): + """Simple greeting function""" + return f"Hello, {name}!" + +print(greet("World")) +``` + +As shown in @lst-margin-below, the listing should appear in the margin with caption below the code. + +More text in the main column to demonstrate the layout. diff --git a/tests/docs/smoke-all/typst/margin-layout/margin-listing-cell-option.qmd b/tests/docs/smoke-all/typst/margin-layout/margin-listing-cell-option.qmd new file mode 100644 index 00000000000..7f3582bc137 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/margin-listing-cell-option.qmd @@ -0,0 +1,55 @@ +--- +title: "Margin Listing Cell Option Test" +papersize: us-letter +grid: + margin-width: 3.5in + gutter-width: 0.25in +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Cell option should produce same output as fenced div: #notefigure + - ['#notefigure\(', 'kind: "quarto-float-lst"'] + - [] + ensurePdfRegexMatches: + - ['Listing 1', 'MARGIN-CELL-OPTION-CODE'] + - [] + ensurePdfTextPositions: + - # Listing in margin, right of body text - "World" unique string in code + - subject: "MARGIN-CELL-OPTION-CODE" + relation: rightOf + object: "This tests" + - subject: "World" + relation: rightOf + object: "This tests" + # Caption above code (default for listings) + - subject: "MARGIN-CELL-OPTION-CODE" + relation: above + object: "World" + - [] + noErrors: default +--- + +This tests a code listing placed in the margin using the `column: margin` cell option. + +```{python} +#| column: margin +#| label: lst-margin-cell +#| lst-cap: "MARGIN-CELL-OPTION-CODE" +#| echo: true +#| eval: false + +def greet(name): + """Simple greeting function""" + return f"Hello, {name}!" + +print(greet("World")) +``` + +As shown in @lst-margin-cell, the listing should appear entirely in the margin (both code and caption). + +More text in the main column to demonstrate the layout. diff --git a/tests/docs/smoke-all/typst/margin-layout/margin-listing.qmd b/tests/docs/smoke-all/typst/margin-layout/margin-listing.qmd new file mode 100644 index 00000000000..0a50ee0fe3c --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/margin-listing.qmd @@ -0,0 +1,52 @@ +--- +title: "Margin Listing Test" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Listings in margin divs should use notefigure + - ['#notefigure\(', 'kind: "quarto-float-lst"'] + - [] + ensurePdfRegexMatches: + - ['Listing 1', 'SQLCAP1'] + - [] + ensurePdfTextPositions: + - # Margin content should be right of body text + - subject: "SQLCAP1" + relation: rightOf + object: "This tests" + - subject: "SELECT" + relation: rightOf + object: "This tests" + # Caption above code (caption position: top) + - subject: "SQLCAP1" + relation: above + object: "SELECT" + # Body text vertical ordering + - subject: "This tests" + relation: above + object: "More text" + - [] + noErrors: default +--- + +This tests code listings placed in the margin. + +::: {.column-margin} + +```{#lst-margin-sql .sql lst-cap="SQLCAP1"} +SELECT id, name +FROM users +WHERE active = true +``` + +::: + +See @lst-margin-sql for the SQL query in the margin. + +More text in the main column to show the layout. diff --git a/tests/docs/smoke-all/typst/margin-layout/margin-offset.qmd b/tests/docs/smoke-all/typst/margin-layout/margin-offset.qmd new file mode 100644 index 00000000000..a32667662b6 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/margin-offset.qmd @@ -0,0 +1,30 @@ +--- +title: "Margin Offset Test" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + - ['#note\(alignment: "baseline", dy: -2em'] + - [] + ensurePdfTextPositions: + - - subject: "Offset margin" + relation: rightOf + object: "Main content" + # With negative dy, margin content should be above body text + - subject: "Offset margin" + relation: above + object: "Main content" + - [] + noErrors: default +--- + +::: {.column-margin dy="-2em"} +Offset margin content. +::: + +Main content here. diff --git a/tests/docs/smoke-all/typst/margin-layout/margin-span.qmd b/tests/docs/smoke-all/typst/margin-layout/margin-span.qmd new file mode 100644 index 00000000000..2261fd95f74 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/margin-span.qmd @@ -0,0 +1,22 @@ +--- +title: "Margin Span Test" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + - ['#note\(alignment: "baseline"'] + - [] + ensurePdfTextPositions: + - - subject: "margin note" + relation: rightOf + object: "Main text" + - [] + noErrors: default +--- + +Main text with [margin note]{.column-margin} inline. diff --git a/tests/docs/smoke-all/typst/margin-layout/margin-subfigure-ggplot2.qmd b/tests/docs/smoke-all/typst/margin-layout/margin-subfigure-ggplot2.qmd new file mode 100644 index 00000000000..d3bfe066cc7 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/margin-subfigure-ggplot2.qmd @@ -0,0 +1,69 @@ +--- +title: "Subfigures in Margin (ggplot2)" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Should have note() wrapping quarto_super for margin subfigure placement + - ['#note\(', 'quarto_super'] + - [] + ensurePdfRegexMatches: + # Subfigure labels, main figure label, and subfigure numbering + - ['Figure 1', 'SUBFIG-WAVES', '\(a\) Sine', '\(b\) Cosine'] + - [] + ensurePdfTextPositions: + - # Subfigure panel in margin + - subject: "Sine Wave" + relation: rightOf + object: "This tests" + - subject: "Cosine Wave" + relation: rightOf + object: "This tests" + # Sine is above Cosine (vertical ordering of subfigures) + - subject: "Sine Wave" + relation: above + object: "Cosine Wave" + # Main figure caption is below Cosine (caption at bottom for figures) + - subject: "Cosine Wave" + relation: above + object: "SUBFIG-WAVES" + - [] + noErrors: default +--- + +This tests subfigures (panel figures) placed in the margin from a single R code block. + +```{r} +#| column: margin +#| label: fig-margin-waves +#| fig-cap: "SUBFIG-WAVES: Two wave subfigures in margin" +#| fig-subcap: +#| - "Sine Wave" +#| - "Cosine Wave" +#| echo: false +#| fig-width: 2 +#| fig-height: 1.5 + +library(ggplot2) + +x <- seq(0, 4 * pi, length.out = 100) + +ggplot(data.frame(x = x, y = sin(x)), aes(x, y)) + + geom_line() + + theme_minimal() + + labs(x = NULL, y = NULL) + +ggplot(data.frame(x = x, y = cos(x)), aes(x, y)) + + geom_line() + + theme_minimal() + + labs(x = NULL, y = NULL) +``` + +Reference to @fig-margin-waves shows the panel. + +More text in the main column to show the layout alongside the margin subfigures. diff --git a/tests/docs/smoke-all/typst/margin-layout/margin-subfigure-svg.qmd b/tests/docs/smoke-all/typst/margin-layout/margin-subfigure-svg.qmd new file mode 100644 index 00000000000..751ceabfb86 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/margin-subfigure-svg.qmd @@ -0,0 +1,57 @@ +--- +title: "Subfigures in Margin (SVG)" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Should have note() wrapping quarto_super for margin subfigure placement + - ['#note\(', 'quarto_super'] + - [] + ensurePdfRegexMatches: + # Subfigure labels, main figure label, subfigure numbering, and SVG text + - ['Figure 1', 'SVG-PANEL', '\(a\) Splat', '\(b\) Neon'] + - [] + ensurePdfTextPositions: + - # SVG content and captions are in margin (right of body text) + - subject: "♥" + relation: rightOf + object: "This tests" + - subject: "♠" + relation: rightOf + object: "This tests" + # Vertical ordering: heart above Splat above spade above Neon above panel caption + - subject: "♥" + relation: above + object: "Splat" + - subject: "Splat" + relation: above + object: "♠" + - subject: "♠" + relation: above + object: "Neon" + - subject: "Neon" + relation: above + object: "SVG-PANEL" + - [] + noErrors: default +--- + +This tests subfigures (panel figures) placed in the margin using inline SVG graphics. + +::: {#fig-margin-svg .column-margin layout-ncol=1} + +![Splat Style](splat-heart.svg){#fig-splat-heart} + +![Neon Style](neon-spade.svg){#fig-neon-spade} + +SVG-PANEL: Two SVG subfigures in margin +::: + +Reference to @fig-margin-svg shows the panel. + +More text in the main column to show the layout alongside the margin subfigures. diff --git a/tests/docs/smoke-all/typst/margin-layout/margin-subfigure.qmd b/tests/docs/smoke-all/typst/margin-layout/margin-subfigure.qmd new file mode 100644 index 00000000000..483a81d22c1 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/margin-subfigure.qmd @@ -0,0 +1,54 @@ +--- +title: "Subfigures in Margin" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Should have note() wrapping quarto_super for margin subfigure placement + - ['#note\(', 'quarto_super'] + - [] + ensurePdfRegexMatches: + # Subfigure labels, main figure label, and subfigure numbering together + - ['Figure 1', 'SUBFIG-PANEL', '\(a\) Sub A', '\(b\) Sub B'] + - [] + ensurePdfTextPositions: + - # Subfigure panel in margin + - subject: "Sub A" + relation: rightOf + object: "This tests" + - subject: "Sub B" + relation: rightOf + object: "This tests" + # Sub A is above Sub B (vertical ordering of subfigures) + - subject: "Sub A" + relation: above + object: "Sub B" + # Main figure caption is below Sub B (caption at bottom) + - subject: "Sub B" + relation: above + object: "SUBFIG-PANEL" + - [] + noErrors: default +--- + +This tests subfigures (panel figures) placed in the margin. + +::: {.column-margin} +::: {#fig-margin-panel layout-ncol=1} + +![Sub A](test-image.png){#fig-sub-a width=100%} + +![Sub B](test-image.png){#fig-sub-b width=100%} + +SUBFIG-PANEL: Two subfigures in margin +::: +::: + +Reference to @fig-margin-panel shows the panel, @fig-sub-a shows subfigure A, @fig-sub-b shows subfigure B. + +More text in the main column to show the layout alongside the margin subfigures. diff --git a/tests/docs/smoke-all/typst/margin-layout/margin-subtable.qmd b/tests/docs/smoke-all/typst/margin-layout/margin-subtable.qmd new file mode 100644 index 00000000000..1f2bab57991 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/margin-subtable.qmd @@ -0,0 +1,70 @@ +--- +title: "Subtables in Margin" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Should have note() wrapping quarto_super for margin subtable placement + - ['#note\(', 'quarto_super'] + - [] + ensurePdfRegexMatches: + # Subtable labels, main table label, and subtable numbering together + - ['Table 1', 'SUBTBL-PANEL', '\(a\) Asia', '\(b\) Americas'] + - [] + ensurePdfTextPositions: + - # Subtable panel in margin + - subject: "Asia" + relation: rightOf + object: "This tests" + - subject: "Americas" + relation: rightOf + object: "This tests" + # Asia table is above Americas table (vertical ordering) + - subject: "Asia" + relation: above + object: "Americas" + # Main table caption is above Asia (caption at top for tables) + - subject: "SUBTBL-PANEL" + relation: above + object: "Asia" + - [] + noErrors: default +--- + +This tests subtables (panel tables) placed in the margin from a single code block. + +```{python} +#| column: margin +#| label: tbl-margin-panel +#| tbl-cap: "SUBTBL-PANEL: Two subtables in margin" +#| tbl-subcap: +#| - "Asia" +#| - "Americas" +#| echo: false +#| classes: plain + +from great_tables import GT +import pandas as pd +from IPython.display import display + +asia_data = pd.DataFrame({ + "Country": ["China", "India", "Japan"], + "Pop (M)": [1400, 1380, 125] +}) +display(GT(asia_data)) + +americas_data = pd.DataFrame({ + "Country": ["USA", "Brazil", "Mexico"], + "Pop (M)": [330, 215, 130] +}) +display(GT(americas_data)) +``` + +Reference to @tbl-margin-panel shows the panel. + +More text in the main column to show the layout alongside the margin subtables. diff --git a/tests/docs/smoke-all/typst/margin-layout/margin-table-direct.qmd b/tests/docs/smoke-all/typst/margin-layout/margin-table-direct.qmd new file mode 100644 index 00000000000..09be2b81f2f --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/margin-table-direct.qmd @@ -0,0 +1,40 @@ +--- +title: "Margin Table Direct Class Test" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Should use notefigure for margin tables + - ['#notefigure\('] + - [] + ensurePdfTextPositions: + - # Table in margin, right of body text + - subject: "DIRECT-TBL-CAP" + relation: rightOf + object: "This tests" + - subject: "Kappa" + relation: rightOf + object: "This tests" + # Caption above table content (default for tables) + - subject: "DIRECT-TBL-CAP" + relation: above + object: "Kappa" + - [] + noErrors: default +--- + +This tests a table with margin class directly on it. + +| Col1 | Col2 | Col3 | +|-------|--------|-------| +| Kappa | Lambda | Sigma | +| Theta | Phi | Psi | + +: DIRECT-TBL-CAP {#tbl-margin .column-margin} + +See @tbl-margin for the table in the margin. diff --git a/tests/docs/smoke-all/typst/margin-layout/margin-table-flextable-crossref.qmd b/tests/docs/smoke-all/typst/margin-layout/margin-table-flextable-crossref.qmd new file mode 100644 index 00000000000..59264c38406 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/margin-table-flextable-crossref.qmd @@ -0,0 +1,55 @@ +--- +title: "Margin Table flextable Cross-ref Test" +papersize: us-letter +grid: + margin-width: 3.5in + gutter-width: 0.25in +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Cell option should produce #notefigure (entire figure in margin) + - ['#notefigure\(', ''] + - [] + ensurePdfRegexMatches: + - ['Table 1', 'Iris'] + - [] + ensurePdfTextPositions: + - # Table caption in margin, right of body text + - subject: "Iris Dataset" + relation: rightOf + object: "This tests" + - [] + noErrors: default +--- + +This tests cross-references to margin tables using flextable. + +```{r} +#| column: margin +#| classes: plain +#| echo: false +#| label: tbl-iris-flex +#| tbl-cap: "Iris Dataset" + +library(flextable) + +iris_mini <- head(iris[, 1:4], 6) + +flextable(iris_mini) |> + set_header_labels( + Sepal.Length = "Sep.L", + Sepal.Width = "Sep.W", + Petal.Length = "Pet.L", + Petal.Width = "Pet.W" + ) |> + autofit() +``` + +As shown in @tbl-iris-flex, the table appears in the margin with a working cross-reference. + +The reference should show "Table 1" or similar. diff --git a/tests/docs/smoke-all/typst/margin-layout/margin-table-flextable.qmd b/tests/docs/smoke-all/typst/margin-layout/margin-table-flextable.qmd new file mode 100644 index 00000000000..cede068f048 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/margin-table-flextable.qmd @@ -0,0 +1,52 @@ +--- +title: "Margin Table with flextable" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Cell option produces #notefigure (entire figure in margin) + # Note: flextable renders as PNG image, not native Typst table + - ['#notefigure\(', 'kind: "quarto-float-tbl"'] + - [] + ensurePdfRegexMatches: + # Caption text should appear (flextable content is image) + - ['Table 1', 'Motor Trend Cars'] + - [] + ensurePdfTextPositions: + - # Table caption in margin, right of body text + # Note: flextable content is image, so only caption text is testable + - subject: "Motor Trend Cars" + relation: rightOf + object: "This tests" + - [] + noErrors: default +--- + +This tests a flextable placed in the margin using `#| column: margin`. + +```{r} +#| column: margin +#| classes: plain +#| echo: false +#| label: tbl-cars-flex +#| tbl-cap: "Motor Trend Cars" + +library(flextable) + +mtcars_mini <- head(mtcars[, 1:4], 8) +mtcars_mini$car <- rownames(mtcars_mini) +mtcars_mini <- mtcars_mini[, c("car", "mpg", "cyl", "disp")] + +flextable(mtcars_mini) |> + set_header_labels(car = "Car", mpg = "MPG", cyl = "Cyl", disp = "Disp") |> + autofit() +``` + +See @tbl-cars-flex for the table in the margin. + +More text in the main column to show the layout. diff --git a/tests/docs/smoke-all/typst/margin-layout/margin-table-great-tables-caption-below.qmd b/tests/docs/smoke-all/typst/margin-layout/margin-table-great-tables-caption-below.qmd new file mode 100644 index 00000000000..03b3bb81668 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/margin-table-great-tables-caption-below.qmd @@ -0,0 +1,55 @@ +--- +title: "Margin Table with Caption Below" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Cell option produces #notefigure (entire figure in margin) + - ['#notefigure\(', 'kind: "quarto-float-tbl"', 'position: bottom'] + - [] + ensurePdfRegexMatches: + - ['Table 1', 'Large Landmasses'] + - [] + ensurePdfTextPositions: + - # Table in margin, right of body text + - subject: "Large Landmasses" + relation: rightOf + object: "This tests" + - subject: "Borneo" + relation: rightOf + object: "This tests" + # Caption BELOW table content (cap-location: bottom) + - subject: "Borneo" + relation: above + object: "Large Landmasses" + - [] + noErrors: default +--- + +This tests a great_tables table in the margin with caption below using `cap-location="bottom"`. + +```{python} +#| column: margin +#| classes: plain +#| echo: false +#| label: tbl-islands +#| tbl-cap: "Large Landmasses" +#| cap-location: bottom + +from great_tables import GT +from great_tables.data import islands + +( + GT(islands.head(20), rowname_col="name") + .fmt_integer(columns="size") +) +``` + +See @tbl-islands for the table in the margin. + +More text in the main column to show the layout. diff --git a/tests/docs/smoke-all/typst/margin-layout/margin-table-great-tables-crossref.qmd b/tests/docs/smoke-all/typst/margin-layout/margin-table-great-tables-crossref.qmd new file mode 100644 index 00000000000..b446acca89d --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/margin-table-great-tables-crossref.qmd @@ -0,0 +1,59 @@ +--- +title: "Margin Table Cross-ref Test" +papersize: us-letter +grid: + margin-width: 3.5in + gutter-width: 0.25in +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Cell option should produce same output as fenced div: #notefigure + # (entire figure including caption should be in margin, like HTML/LaTeX) + - ['#notefigure\(', ''] + - [] + ensurePdfRegexMatches: + - ['Table 1', 'Air Quality'] + - [] + ensurePdfTextPositions: + - # Table column header in margin, right of body text - "O3" unique to table + - subject: "O3" + relation: rightOf + object: "This tests" + - [] + noErrors: default +--- + +This tests cross-references to margin tables using great_tables. + +```{python} +#| column: margin +#| classes: plain +#| echo: false +#| label: tbl-air +#| tbl-cap: "NYC Air Quality" + +from great_tables import GT +from great_tables.data import airquality + +airquality_mini = airquality.head(5) + +( + GT(airquality_mini) + .tab_header(title="Air Quality") + .cols_label( + Ozone="O3", + Solar_R="Solar", + Wind="Wind", + Temp="Temp" + ) +) +``` + +As shown in @tbl-air, the table appears in the margin with a working cross-reference. + +The reference should show "Table 1" or similar. diff --git a/tests/docs/smoke-all/typst/margin-layout/margin-table-great-tables-fenced-div.qmd b/tests/docs/smoke-all/typst/margin-layout/margin-table-great-tables-fenced-div.qmd new file mode 100644 index 00000000000..d4d87e26be5 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/margin-table-great-tables-fenced-div.qmd @@ -0,0 +1,55 @@ +--- +title: "Margin Table with great_tables (Fenced Div)" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # GT tables in margin divs use #note( wrapping #figure( + - ['#note\(', 'kind: "quarto-float-tbl"'] + - [] + ensurePdfTextPositions: + - # Table in margin, right of body text + - subject: "Large Landmasses" + relation: rightOf + object: "This tests" + - subject: "Borneo" + relation: rightOf + object: "This tests" + # Caption above table content (default for tables) + - subject: "Large Landmasses" + relation: above + object: "Borneo" + - [] + noErrors: default +--- + +This tests a great_tables table placed in the margin using a fenced div (`.column-margin`). +This approach wraps `#figure` inside `#note` which differs from the cell option approach. + +::: {.column-margin} + +```{python} +#| classes: plain +#| echo: false +#| label: tbl-islands +#| tbl-cap: "Large Landmasses" + +from great_tables import GT +from great_tables.data import islands + +( + GT(islands.head(20), rowname_col="name") + .fmt_integer(columns="size") +) +``` + +::: + +See @tbl-islands for the table in the margin. + +More text in the main column to show the layout. diff --git a/tests/docs/smoke-all/typst/margin-layout/margin-table-great-tables-shift.qmd b/tests/docs/smoke-all/typst/margin-layout/margin-table-great-tables-shift.qmd new file mode 100644 index 00000000000..5287a5cb27d --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/margin-table-great-tables-shift.qmd @@ -0,0 +1,74 @@ +--- +title: "Margin Table Shift Test" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + - ['shift: false', 'shift: "avoid"'] + - [] + ensurePdfTextPositions: + - # Both tables in margin, right of body text + - subject: "Fixed Position" + relation: rightOf + object: "Line 1" + - subject: "Avoid Overlap" + relation: rightOf + object: "Line 2" + # First table above second + - subject: "Fixed Position" + relation: above + object: "Avoid Overlap" + - [] + noErrors: default +--- + +This tests shift control on margin tables. + +Line 1 with a fixed table: + +::: {.column-margin shift="false"} + +```{python} +#| classes: plain +#| echo: false +#| label: tbl-fixed +#| tbl-cap: "Fixed Position" + +from great_tables import GT +from great_tables.data import islands + +( + GT(islands.head(10), rowname_col="name") + .fmt_integer(columns="size") +) +``` + +::: + +Line 2 with an avoid table: + +::: {.column-margin shift="avoid"} + +```{python} +#| classes: plain +#| echo: false +#| label: tbl-avoid +#| tbl-cap: "Avoid Overlap" + +from great_tables import GT +from great_tables.data import islands + +( + GT(islands.tail(10), rowname_col="name") + .fmt_integer(columns="size") +) +``` + +::: + +The first table stays fixed, the second only shifts if necessary. diff --git a/tests/docs/smoke-all/typst/margin-layout/margin-table-great-tables.qmd b/tests/docs/smoke-all/typst/margin-layout/margin-table-great-tables.qmd new file mode 100644 index 00000000000..d04b4e4bdcf --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/margin-table-great-tables.qmd @@ -0,0 +1,58 @@ +--- +title: "Margin Table with great_tables" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Cell option produces #notefigure (entire figure in margin) + - ['#notefigure\(', 'kind: "quarto-float-tbl"'] + - [] + ensurePdfRegexMatches: + - ['Table 1', 'Large Landmasses'] + - [] + ensurePdfTextPositions: + - # Table in margin, right of body text + - subject: "Large Landmasses" + relation: rightOf + object: "This tests" + - subject: "Borneo" + relation: rightOf + object: "This tests" + # Caption above table content (default for tables) + - subject: "Large Landmasses" + relation: above + object: "Borneo" + - [] + noErrors: default +--- + +This tests a great_tables table placed in the margin using + +``` +#| column: margin +``` + +```{python} +#| column: margin +#| classes: plain +#| echo: false +#| label: tbl-islands +#| tbl-cap: "Large Landmasses" + +from great_tables import GT +from great_tables.data import islands + +( + GT(islands.head(20), rowname_col="name") + .fmt_integer(columns="size") +) +``` + +See @tbl-islands for the table in the margin. + +More text in the main column to show the layout. diff --git a/tests/docs/smoke-all/typst/margin-layout/margin-table-gt-r-crossref.qmd b/tests/docs/smoke-all/typst/margin-layout/margin-table-gt-r-crossref.qmd new file mode 100644 index 00000000000..80b1832ae0b --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/margin-table-gt-r-crossref.qmd @@ -0,0 +1,55 @@ +--- +title: "Margin Table R gt Cross-ref Test" +papersize: us-letter +grid: + margin-width: 3.5in + gutter-width: 0.25in +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Cell option should produce #notefigure (entire figure in margin) + - ['#notefigure\(', ''] + - [] + ensurePdfRegexMatches: + - ['Table 1', 'Air Quality'] + - [] + ensurePdfTextPositions: + - # Table column header in margin, right of body text + - subject: "Solar" + relation: rightOf + object: "This tests" + - [] + noErrors: default +--- + +This tests cross-references to margin tables using R gt package. + +```{r} +#| column: margin +#| classes: plain +#| echo: false +#| label: tbl-air-r +#| tbl-cap: "NYC Air Quality" + +library(gt) + +airquality_mini <- head(airquality, 5) + +gt(airquality_mini) |> + tab_header(title = "Air Quality") |> + cols_label( + Ozone = "O3", + Solar.R = "Solar", + Wind = "Wind", + Temp = "Temp" + ) +``` + +As shown in @tbl-air-r, the table appears in the margin with a working cross-reference. + +The reference should show "Table 1" or similar. diff --git a/tests/docs/smoke-all/typst/margin-layout/margin-table-gt-r.qmd b/tests/docs/smoke-all/typst/margin-layout/margin-table-gt-r.qmd new file mode 100644 index 00000000000..e5748f3a60b --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/margin-table-gt-r.qmd @@ -0,0 +1,59 @@ +--- +title: "Margin Table with R gt" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Cell option produces #notefigure (entire figure in margin) + - ['#notefigure\(', 'kind: "quarto-float-tbl"'] + - [] + ensurePdfRegexMatches: + - ['Table 1', 'Large Landmasses', 'Asia', 'Africa'] + - [] + ensurePdfTextPositions: + - # Table in margin, right of body text + - subject: "Large Landmasses" + relation: rightOf + object: "This tests" + - subject: "Asia" + relation: rightOf + object: "This tests" + # Caption above table content (default for tables) + - subject: "Large Landmasses" + relation: above + object: "Asia" + - [] + noErrors: default +--- + +This tests an R gt table placed in the margin using `#| column: margin`. + +```{r} +#| column: margin +#| classes: plain +#| echo: false +#| label: tbl-islands-r +#| tbl-cap: "Large Landmasses" + +library(gt) +library(dplyr) + +islands_tbl <- tibble( + name = names(islands), + size = islands +) |> + arrange(desc(size)) |> + slice(1:10) + +gt(islands_tbl) |> + fmt_integer(columns = size) +``` + +See @tbl-islands-r for the table in the margin. + +More text in the main column to show the layout. diff --git a/tests/docs/smoke-all/typst/margin-layout/margin-table-simple.qmd b/tests/docs/smoke-all/typst/margin-layout/margin-table-simple.qmd new file mode 100644 index 00000000000..8d1f8b6459e --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/margin-table-simple.qmd @@ -0,0 +1,49 @@ +--- +title: "Margin Table Simple Test" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Table in margin div uses #notefigure( for proper margin placement + - ['#notefigure\(', 'kind: "quarto-float-tbl"'] + - [] + ensurePdfRegexMatches: + - ['Table 1', 'SIMPLE-TBL-CAP', 'Alpha'] + - [] + ensurePdfTextPositions: + - # Table in margin, right of body text + - subject: "SIMPLE-TBL-CAP" + relation: rightOf + object: "This tests" + - subject: "Alpha" + relation: rightOf + object: "This tests" + # Caption above table content (default for tables) + - subject: "SIMPLE-TBL-CAP" + relation: above + object: "Alpha" + - [] + noErrors: default +--- + +This tests a simple markdown table placed in the margin. + +::: {.column-margin} + +| Col1 | Col2 | Col3 | +|-------|-------|-------| +| Alpha | Beta | Gamma | +| Delta | Omega | Zeta | + +: SIMPLE-TBL-CAP {#tbl-margin} + +::: + +See @tbl-margin for the table in the margin. + +More text in the main column to show the layout. diff --git a/tests/docs/smoke-all/typst/margin-layout/neon-spade.svg b/tests/docs/smoke-all/typst/margin-layout/neon-spade.svg new file mode 100644 index 00000000000..13e409c1bee --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/neon-spade.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/docs/smoke-all/typst/margin-layout/shift-avoid.qmd b/tests/docs/smoke-all/typst/margin-layout/shift-avoid.qmd new file mode 100644 index 00000000000..d61231acf54 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/shift-avoid.qmd @@ -0,0 +1,37 @@ +--- +title: "Shift Avoid Test" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + - ['shift: "avoid"'] + - [] + ensurePdfTextPositions: + - # All notes in margin, right of body text + - subject: "FIXED" + relation: rightOf + object: "Line with fixed" + - subject: "AVOID1" + relation: rightOf + object: "Line with avoid" + # Vertical ordering: FIXED above AVOID1 above AVOID2 + - subject: "FIXED" + relation: above + object: "AVOID1" + - subject: "AVOID1" + relation: above + object: "AVOID2" + - [] + noErrors: default +--- + +This tests `shift: "avoid"` - notes only shift when hitting fixed elements. + +Line with fixed note [FIXED: anchor point]{.column-margin shift="false"}. +Line with avoid note [AVOID1: I only shift if I hit something fixed]{.column-margin shift="avoid"}. +Line with another avoid [AVOID2: same behavior]{.column-margin shift="avoid"}. diff --git a/tests/docs/smoke-all/typst/margin-layout/shift-fixed.qmd b/tests/docs/smoke-all/typst/margin-layout/shift-fixed.qmd new file mode 100644 index 00000000000..5aa9db33891 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/shift-fixed.qmd @@ -0,0 +1,37 @@ +--- +title: "Shift Fixed Test" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + - ['shift: false'] + - [] + ensurePdfTextPositions: + - # All notes in margin, right of body text + - subject: "FIXED" + relation: rightOf + object: "Line with fixed" + - subject: "AUTO1" + relation: rightOf + object: "Line with auto" + # Vertical ordering: FIXED above AUTO1 above AUTO2 + - subject: "FIXED" + relation: above + object: "AUTO1" + - subject: "AUTO1" + relation: above + object: "AUTO2" + - [] + noErrors: default +--- + +This tests `shift: false` where the note stays fixed and other notes move around it. + +Line with fixed note [FIXED: I stay exactly where I am placed, others move around me]{.column-margin shift="false"}. +Line with auto note [AUTO1: I should shift down to avoid the fixed note above]{.column-margin}. +Line with another auto [AUTO2: I shift down further]{.column-margin}. diff --git a/tests/docs/smoke-all/typst/margin-layout/shift-ignore.qmd b/tests/docs/smoke-all/typst/margin-layout/shift-ignore.qmd new file mode 100644 index 00000000000..f5805ae203f --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/shift-ignore.qmd @@ -0,0 +1,30 @@ +--- +title: "Shift Ignore Test" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + - ['shift: "ignore"'] + - [] + ensurePdfTextPositions: + - # All notes in margin, right of body text + - subject: "IGNORE1" + relation: rightOf + object: "Line with ignore" + - subject: "AUTO1" + relation: rightOf + object: "Line with auto" + - [] + noErrors: default +--- + +This tests `shift: "ignore"` - notes stay fixed and CAN overlap (others don't avoid them). + +Line with ignore note [IGNORE1: I stay put and others don't try to avoid me]{.column-margin shift="ignore"}. +Line with auto note [AUTO1: I don't see the ignore note, may overlap]{.column-margin}. +Line with another ignore [IGNORE2: We might overlap each other]{.column-margin shift="ignore"}. diff --git a/tests/docs/smoke-all/typst/margin-layout/shift-mixed.qmd b/tests/docs/smoke-all/typst/margin-layout/shift-mixed.qmd new file mode 100644 index 00000000000..7ed502774f4 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/shift-mixed.qmd @@ -0,0 +1,41 @@ +--- +title: "Mixed Shift Modes Test" +papersize: us-letter +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + - ['shift: false', 'shift: auto', 'shift: "avoid"', 'shift: "ignore"'] + - [] + ensurePdfTextPositions: + - # Positive assertions + - subject: "FIXED" + relation: above + object: "AUTO1" + - subject: "AUTO1" + relation: above + object: "AVOID" + - subject: "AVOID" + relation: above + object: "AUTO2" + - subject: "FIXED" + relation: rightOf + object: "Line 1" + - # Negative assertions - IGNORE overlaps AVOID, so NOT below + - subject: "IGNORE" + relation: below + object: "FIXED" + noErrors: default +--- + +This tests all shift modes interacting in a single document. + +Line 1 [FIXED]{.column-margin shift="false"}. +Line 2 [AUTO1]{.column-margin}. +Line 3 [AVOID]{.column-margin shift="avoid"}. +Line 4 [IGNORE]{.column-margin shift="ignore"}. +Line 5 [AUTO2]{.column-margin}. diff --git a/tests/docs/smoke-all/typst/margin-layout/sidenote-basic.qmd b/tests/docs/smoke-all/typst/margin-layout/sidenote-basic.qmd new file mode 100644 index 00000000000..24f884abdad --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/sidenote-basic.qmd @@ -0,0 +1,29 @@ +--- +title: "Basic Sidenote Test" +papersize: us-letter +reference-location: margin +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Show rule transforms footnotes to sidenotes; Pandoc outputs #footnote natively + - ['#show footnote:', 'column-sidenote', '#footnote'] + - [] + ensurePdfRegexMatches: + - ['SIDENOTE-CONTENT', 'Main text'] + - [] + ensurePdfTextPositions: + - - subject: "SIDENOTE-CONTENT" + relation: rightOf + object: "Main text" + - [] + noErrors: default +--- + +Main text with a sidenote^[SIDENOTE-CONTENT should appear in margin.]. + +More main text continues here after the sidenote. diff --git a/tests/docs/smoke-all/typst/margin-layout/sidenote-code-block.qmd b/tests/docs/smoke-all/typst/margin-layout/sidenote-code-block.qmd new file mode 100644 index 00000000000..661f230d5ef --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/sidenote-code-block.qmd @@ -0,0 +1,38 @@ +--- +title: "Sidenote with Code Block" +papersize: us-letter +reference-location: margin +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Show rule transforms footnotes to sidenotes; Pandoc outputs #footnote natively + - ['#show footnote:', 'column-sidenote', '#footnote'] + - [] + ensurePdfRegexMatches: + - ['CODE-NOTE', 'def hello'] + - [] + ensurePdfTextPositions: + - - subject: "CODE-NOTE" + relation: rightOf + object: "Main text" + - [] + noErrors: default +--- + +Main text with a footnote containing code[^code]. + +[^code]: CODE-NOTE: Here is some Python code: + + ```python + def hello(): + return "world" + ``` + + The code block should appear in the margin sidenote. + +More main text continues here after the sidenote. diff --git a/tests/docs/smoke-all/typst/margin-layout/sidenote-complex-content.qmd b/tests/docs/smoke-all/typst/margin-layout/sidenote-complex-content.qmd new file mode 100644 index 00000000000..9825890a068 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/sidenote-complex-content.qmd @@ -0,0 +1,46 @@ +--- +title: "Sidenote with Complex Content" +papersize: us-letter +reference-location: margin +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Show rule transforms footnotes to sidenotes; Pandoc outputs #footnote natively + - ['#show footnote:', 'column-sidenote', '#footnote'] + - [] + ensurePdfRegexMatches: + - ['LIST-NOTE', 'Item one', 'Item two', 'BLOCKQUOTE-NOTE', 'quoted text'] + - [] + ensurePdfTextPositions: + - - subject: "LIST-NOTE" + relation: rightOf + object: "Main text" + - [] + noErrors: default +--- + +Main text with a footnote containing a list[^list]. + +[^list]: LIST-NOTE: This footnote has a list: + + - Item one + - Item two + - Item three + + And text after the list. + +Another paragraph with a blockquote footnote[^quote]. + +[^quote]: BLOCKQUOTE-NOTE: This has a blockquote: + + > This is quoted text + > spanning multiple lines. + + Text after the quote. + +More main text here. diff --git a/tests/docs/smoke-all/typst/margin-layout/sidenote-multipara.qmd b/tests/docs/smoke-all/typst/margin-layout/sidenote-multipara.qmd new file mode 100644 index 00000000000..934b1354734 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/sidenote-multipara.qmd @@ -0,0 +1,32 @@ +--- +title: "Multi-paragraph Sidenote" +papersize: us-letter +reference-location: margin +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensurePdfRegexMatches: + - ['PARA-ONE', 'PARA-TWO'] + - [] + ensurePdfTextPositions: + - - subject: "PARA-ONE" + relation: rightOf + object: "Text with a long" + - subject: "PARA-ONE" + relation: above + object: "PARA-TWO" + - [] + noErrors: default +--- + +Text with a long sidenote[^1]. + +[^1]: PARA-ONE first paragraph of the sidenote. + + PARA-TWO second paragraph (indented to continue the footnote). + +The multi-paragraph footnote should be converted to a sidenote with both paragraphs. diff --git a/tests/docs/smoke-all/typst/margin-layout/sidenote-multiple.qmd b/tests/docs/smoke-all/typst/margin-layout/sidenote-multiple.qmd new file mode 100644 index 00000000000..06a4e2d2a58 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/sidenote-multiple.qmd @@ -0,0 +1,35 @@ +--- +title: "Multiple Sidenotes" +papersize: us-letter +reference-location: margin +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensurePdfRegexMatches: + - ['FIRST-NOTE', 'SECOND-NOTE', 'THIRD-NOTE'] + - [] + ensurePdfTextPositions: + - - subject: "FIRST-NOTE" + relation: rightOf + object: "First point" + - subject: "FIRST-NOTE" + relation: above + object: "SECOND-NOTE" + - subject: "SECOND-NOTE" + relation: above + object: "THIRD-NOTE" + - [] + noErrors: default +--- + +First point^[FIRST-NOTE content.]. Second point^[SECOND-NOTE content.]. + +More text in between. + +Third point^[THIRD-NOTE content.]. + +All three sidenotes should appear in the margin with proper numbering (1, 2, 3). diff --git a/tests/docs/smoke-all/typst/margin-layout/splat-heart.svg b/tests/docs/smoke-all/typst/margin-layout/splat-heart.svg new file mode 100644 index 00000000000..1e4ccb566a6 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/splat-heart.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/docs/smoke-all/typst/margin-layout/test-image.png b/tests/docs/smoke-all/typst/margin-layout/test-image.png new file mode 100644 index 00000000000..a9ec42c984e Binary files /dev/null and b/tests/docs/smoke-all/typst/margin-layout/test-image.png differ diff --git a/tests/docs/smoke-all/typst/margin-layout/test-plot.svg b/tests/docs/smoke-all/typst/margin-layout/test-plot.svg new file mode 100644 index 00000000000..583148da880 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/test-plot.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +0 +25 +50 +75 +100 +0 +2 +4 +6 +▲XAXIS▲ +●YAXIS● +★PLOTTITLE + + diff --git a/tests/docs/smoke-all/typst/margin-layout/two-column.qmd b/tests/docs/smoke-all/typst/margin-layout/two-column.qmd new file mode 100644 index 00000000000..7f914cd6ad5 --- /dev/null +++ b/tests/docs/smoke-all/typst/margin-layout/two-column.qmd @@ -0,0 +1,44 @@ +--- +title: "Two-Column Layout with Margins" +papersize: us-letter +columns: 2 +format: + html: default + typst: + keep-typ: true +_quarto: + tests: + typst: + ensureTypstFileRegexMatches: + # Should have columns: 2 and marginalia if margin content present + - ['columns: 2'] + - [] + ensurePdfRegexMatches: + - ['TWO-COL-TEST', 'MARGIN-IN-TWOCOL', 'marginalia', 'show rules'] + - [] + noErrors: default +--- + +## Two-Column Layout Test + +TWO-COL-TEST: This tests margin notes in a two-column document layout.[MARGIN-IN-TWOCOL: How does this margin note interact with two-column layout?]{.column-margin} In a two-column layout, the text flows from the bottom of column one to the top of column two. This document explores how margin notes interact with multi-column layouts, which is an interesting edge case for the marginalia package. + +## Typst Margin Layout Architecture + +The Quarto Typst margin layout system uses the marginalia package[Another margin note demonstrating the layout.]{.column-margin} for placing content in page margins. The geometry is calculated based on marginalia's recommended proportions, which allocate approximately 21% of page width to the inner margin, 30.5% to the outer margin, and 48.5% to the body text. For US Letter paper (8.5 inches wide), this produces an outer margin width of about 1.62 inches, which provides ample space for sidenotes, margin figures, and margin citations. The inner margin is narrower at about 0.81 inches. + +## Footnotes and Sidenotes + +When `reference-location: margin` is set, footnotes are transformed into sidenotes[This margin note explains the show rule approach.]{.column-margin} that appear in the margin rather than at the bottom of the page. This transformation uses Typst show rules rather than Lua filter interception. The key insight is that Pandoc's Note element is a special inline type that can contain block-level content like lists, blockquotes, and code blocks. When we intercept notes in Lua and try to convert them, we must return inlines, which loses the block structure. The solution is to let Pandoc output native `#footnote` elements and use Typst show rules to transform them: `#show footnote: it => column-sidenote(it.body)` combined with `#show footnote.entry: none` to suppress the bottom-of-page entries. This way, Pandoc's native Typst writer handles all block-to-Typst conversion correctly. + +## Subfigures in Margins + +Panel layouts (subfigures and subtables) require special handling for margin placement. The parent figure wraps `quarto_super` in a `#note()` call for margin placement, while individual subfloats must NOT be wrapped individually. The fix checks for `float.parent_id` to skip margin handling for child subfloats, since the parent handles placement for the entire panel. This ensures proper numbering like Figure 1a, 1b while keeping all subfigures together in the margin. + +## Column Width Classes + +Quarto supports various column width classes[A final margin note to test stacking.]{.column-margin} for Typst output. The `.column-margin` class places content in the margin using marginalia's `note()` function. The `.column-page` class extends content to full page width using `wideblock()`. Intermediate classes like `.column-body-outset` extend slightly into the margins. The `-left` and `-right` variants (like `.column-page-left` or `.column-screen-inset-right`) map to marginalia's inner/outer side parameters, allowing asymmetric expansion into specific margins. + +## Second Section + +This section continues the two-column flow with additional content about the implementation details we discovered during development. The `noteHasColumns()` function name is somewhat misleading as it sounds like a getter but is actually a setter that marks `layoutState.hasColumns = true`. This flag triggers the margin layout configuration during document setup. Different paper sizes (A4, US Legal, etc.) automatically receive proportionally adjusted margin geometry. The calculations maintain the same ratios while scaling to the paper width, ensuring consistent visual proportions across formats. diff --git a/tests/docs/smoke-all/typst/pandoc-template-features.qmd b/tests/docs/smoke-all/typst/pandoc-template-features.qmd index 479bf4a3e4b..7f28a5d0a59 100644 --- a/tests/docs/smoke-all/typst/pandoc-template-features.qmd +++ b/tests/docs/smoke-all/typst/pandoc-template-features.qmd @@ -34,6 +34,14 @@ format: _quarto: tests: typst: + ensurePdfMetadata: + title: "Test Document" + author: "Alice Smith" + keywords: + - quarto + - typst + - testing + creator: "Typst" ensureTypstFileRegexMatches: - # Patterns that MUST be found # content-to-string function defined (from Pandoc) diff --git a/tests/docs/smoke-all/typst/pdf-text-position-test.qmd b/tests/docs/smoke-all/typst/pdf-text-position-test.qmd new file mode 100644 index 00000000000..849f6736040 --- /dev/null +++ b/tests/docs/smoke-all/typst/pdf-text-position-test.qmd @@ -0,0 +1,45 @@ +--- +title: TITLE_UNIQUE_TEXT +format: typst +header-includes: | + #set page( + header: [PAGEHEADER_UNIQUE_TEXT], + footer: [PAGEFOOTER_UNIQUE_TEXT] + ) +_quarto: + tests: + typst: + ensurePdfTextPositions: + - # Vertical ordering: header < title < h1 < body < footer (y increases downward) + - subject: + text: "PAGEHEADER_UNIQUE_TEXT" + role: "Decoration" + relation: above + object: "TITLE_UNIQUE_TEXT" + - subject: "TITLE_UNIQUE_TEXT" + relation: above + object: "H1_UNIQUE_TEXT" + - subject: "H1_UNIQUE_TEXT" + relation: above + object: "BODY_UNIQUE_TEXT" + - subject: "BODY_UNIQUE_TEXT" + relation: above + object: + text: "PAGEFOOTER_UNIQUE_TEXT" + role: "Decoration" + # Margin content should be to the right of body and on the same row + - subject: "MARGIN_UNIQUE_TEXT" + relation: rightOf + object: "BODY_UNIQUE_TEXT" + - subject: "MARGIN_UNIQUE_TEXT" + relation: topAligned + object: "BODY_UNIQUE_TEXT" +--- + +# H1_UNIQUE_TEXT + +::: {.column-margin} +MARGIN_UNIQUE_TEXT +::: + +BODY_UNIQUE_TEXT is the main paragraph content positioned in the body column. diff --git a/tests/docs/smoke-all/typst/typst-citeproc.qmd b/tests/docs/smoke-all/typst/typst-citeproc.qmd index 534efc32ef6..eddf9a55620 100644 --- a/tests/docs/smoke-all/typst/typst-citeproc.qmd +++ b/tests/docs/smoke-all/typst/typst-citeproc.qmd @@ -6,13 +6,22 @@ format: bibliography: refs.bib citeproc: true _quarto: - tests: + tests: typst: ensureTypstFileRegexMatches: - ['', ''] - ['\#bibliography\([^)]*\)'] + ensurePdfRegexMatches: + # Locators appear inline after author-date (citeproc drops "p." prefix) + - ['\(Cronbach 1951a, 42\)', '\(1951b, 100'] + - [] + noErrors: default --- Hello [@Cronbach_1951, @Cronbach_1952] +With locator: [@Cronbach_1951, p. 42] + +Bare with locator: @Cronbach_1952[pp. 100-115] + # References \ No newline at end of file diff --git a/tests/docs/smoke-all/typst/typst-no-citeproc.qmd b/tests/docs/smoke-all/typst/typst-no-citeproc.qmd index 56472535ab4..ce188292ca2 100644 --- a/tests/docs/smoke-all/typst/typst-no-citeproc.qmd +++ b/tests/docs/smoke-all/typst/typst-no-citeproc.qmd @@ -6,13 +6,22 @@ format: bibliography: refs.bib bibliographystyle: "chicago-author-date" _quarto: - tests: + tests: typst: ensureTypstFileRegexMatches: - ['\#set bibliography\(style\: [^)]*\)', '\#bibliography\([^)]*\)', '\#cite\([^)]*\)'] - ['', ''] + ensurePdfRegexMatches: + # Locators appear inline after author-date: (Author Year, locator) + - ['\(Cronbach 1951a, p\. 42\)', '\(1951b, pp\. 100'] + - [] + noErrors: default --- Hello @Cronbach_1951 -Hello [@Cronbach_1951; @Cronbach_1952] \ No newline at end of file +Hello [@Cronbach_1951; @Cronbach_1952] + +With locator: [@Cronbach_1951, p. 42] + +Bare with locator: @Cronbach_1952[pp. 100-115] \ No newline at end of file diff --git a/tests/docs/verify/pdf-metadata/fixture.qmd b/tests/docs/verify/pdf-metadata/fixture.qmd new file mode 100644 index 00000000000..a9dcbf83ffa --- /dev/null +++ b/tests/docs/verify/pdf-metadata/fixture.qmd @@ -0,0 +1,17 @@ +--- +title: "PDF Metadata Test Fixture" +author: "Test Author Name" +subject: "Testing PDF Metadata Extraction" +keywords: + - quarto + - typst + - metadata + - testing +format: typst +--- + +# Test Content + +This document tests PDF metadata extraction. + +The title, author, subject, and keywords should all appear in the PDF metadata. diff --git a/tests/docs/verify/pdf-text-position/fixture.qmd b/tests/docs/verify/pdf-text-position/fixture.qmd new file mode 100644 index 00000000000..b6edc7b9116 --- /dev/null +++ b/tests/docs/verify/pdf-text-position/fixture.qmd @@ -0,0 +1,97 @@ +--- +title: FIXTURE_TITLE_TEXT +format: typst +header-includes: | + #set page( + header: [FIXTURE_HEADER_TEXT], + footer: [FIXTURE_FOOTER_TEXT] + ) +--- + +# FIXTURE_H1_TEXT {#sec-main} + +This is the first paragraph. FIXTURE_BODY_P1_TEXT is a unique marker in the first paragraph. + +## FIXTURE_H2_TEXT {#sec-second} + +::: {.column-margin} +FIXTURE_MARGIN_TEXT is in the margin column. +::: + +FIXTURE_BODY_P2_TEXT is a unique marker in the second paragraph, which appears alongside the margin content. + +### FIXTURE_H3_TEXT {#sec-third} + +More body content here. FIXTURE_BODY_P3_TEXT marks the third paragraph. + +## Labeled Elements {#sec-labeled} + +### Figure with Label {#sec-figure} + +![FIXTURE_FIG_CAPTION_TEXT](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjUwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxyZWN0IHdpZHRoPSIxMDAiIGhlaWdodD0iNTAiIGZpbGw9IiNjY2MiLz48dGV4dCB4PSI1MCIgeT0iMjUiIHRleHQtYW5jaG9yPSJtaWRkbGUiIGR5PSIuM2VtIj5JbWFnZTwvdGV4dD48L3N2Zz4=){#fig-sample} + +See @fig-sample for the sample figure. + +### Table with Label {#sec-table} + +| Column A | Column B | +|----------|----------| +| FIXTURE_TBL_CELL_A1 | Cell B1 | +| Cell A2 | Cell B2 | + +: FIXTURE_TBL_CAPTION_TEXT {#tbl-data} + +See @tbl-data for the data table. + +### Equation with Label {#sec-equation} + +$$ +E = mc^2 +$$ {#eq-energy} + +FIXTURE_EQ_REF_TEXT: See @eq-energy for the energy equation. + +### Code Listing with Label {#sec-listing} + +```{#lst-hello .python lst-cap="FIXTURE_LST_CAPTION_TEXT"} +print("FIXTURE_CODE_TEXT") +``` + +See @lst-hello for the code listing. + +### Theorem with Label {#sec-theorem} + +::: {#thm-main} +## FIXTURE_THM_TITLE_TEXT + +FIXTURE_THM_BODY_TEXT: This is the main theorem content. +::: + +See @thm-main for the main theorem. + +### Definition with Label {#sec-definition} + +::: {#def-concept} +## FIXTURE_DEF_TITLE_TEXT + +FIXTURE_DEF_BODY_TEXT: This defines an important concept. +::: + +See @def-concept for the definition. + +{{< pagebreak >}} + +# FIXTURE_PAGE2_H1_TEXT {#sec-page2} + +FIXTURE_PAGE2_BODY_TEXT is on the second page for testing cross-page assertions. + +## Raw Typst Labels {#sec-raw-typst} + +```{=typst} +#figure( + rect(width: 50pt, height: 30pt, fill: gray)[FIXTURE_TYPST_FIG_TEXT], + caption: [FIXTURE_TYPST_FIG_CAPTION] +) +``` + +FIXTURE_TYPST_REF_TEXT: See the raw Typst figure above. diff --git a/tests/run-tests.sh b/tests/run-tests.sh index 77e184d8e34..702b70b8414 100755 --- a/tests/run-tests.sh +++ b/tests/run-tests.sh @@ -15,6 +15,26 @@ if [[ "$RUNNER_DEBUG" == "1" ]] || [[ "$QUARTO_TEST_VERBOSE" == "true" ]]; then VERBOSE_MODE=true fi +# Check if keep-outputs mode is enabled +KEEP_OUTPUTS=false +FILTERED_ARGS=() +for arg in "$@"; do + case $arg in + --keep-outputs|-k) + KEEP_OUTPUTS=true + ;; + *) + FILTERED_ARGS+=("$arg") + ;; + esac +done +set -- "${FILTERED_ARGS[@]}" + +if [[ "$KEEP_OUTPUTS" == "true" ]]; then + export QUARTO_TEST_KEEP_OUTPUTS=true + echo "> Keep outputs mode enabled - test artifacts will not be deleted" +fi + source $SCRIPT_PATH/../package/scripts/common/utils.sh export QUARTO_ROOT="$(cd "$SCRIPT_PATH/.." > /dev/null 2>&1 && pwd)" diff --git a/tests/smoke/extensions/extension-render-typst-templates.test.ts b/tests/smoke/extensions/extension-render-typst-templates.test.ts new file mode 100644 index 00000000000..dbd4807d0ef --- /dev/null +++ b/tests/smoke/extensions/extension-render-typst-templates.test.ts @@ -0,0 +1,77 @@ +/* + * extension-render-typst-templates.test.ts + * + * Copyright (C) 2020-2024 Posit Software, PBC + */ + +import { join } from "../../../src/deno_ral/path.ts"; +import { quarto } from "../../../src/quarto.ts"; +import { ensureDirSync, existsSync } from "../../../src/deno_ral/fs.ts"; +import { testRender } from "../render/render.ts"; +import { removeIfEmptyDir } from "../../../src/core/path.ts"; + +// Set to a local path for development, or null to use GitHub +// Example: "/Users/gordon/src/tt-work/typst-templates" +const LOCAL_TEMPLATES_PATH: string | null = null; + +// GitHub repo where templates are published (templates are subdirectories) +const GITHUB_REPO = "quarto-ext/typst-templates"; +const GITHUB_BRANCH = "@import-and-gather" + +// Template definitions - single source of truth +// Templates with `skip: true` require local typst packages (@local/...) that need +// `quarto typst gather` to bundle. They're skipped until packages are bundled. +const typstTemplates = [ + { name: "ams" }, + { name: "dept-news", skip: false }, // needs @local/dashing-dept-news + { name: "fiction" }, + { name: "ieee" }, + { name: "letter" }, + { name: "poster" }, // needs @local/typst-poster +]; + +// Helper to get the template source for `quarto use template` +function getTemplateSource(name: string): string { + if (LOCAL_TEMPLATES_PATH) { + return join(LOCAL_TEMPLATES_PATH, name); + } + return `${GITHUB_REPO}/${name}${GITHUB_BRANCH}`; +} + +for (const template of typstTemplates.filter((t) => !t.skip)) { + const format = `${template.name}-typst`; + const baseDir = join("docs", "_temp-test-artifacts"); + const dirName = `typst-${template.name}`; + const workingDir = join(baseDir, dirName); + // quarto use template creates a qmd file named after the working directory + const input = join(workingDir, `${dirName}.qmd`); + + testRender(input, format, true, [], { + prereq: () => { + if (existsSync(workingDir)) { + Deno.removeSync(workingDir, { recursive: true }); + } + ensureDirSync(workingDir); + return Promise.resolve(true); + }, + + setup: async () => { + const source = getTemplateSource(template.name); + console.log(`using template: ${source}`); + const wd = Deno.cwd(); + Deno.chdir(workingDir); + await quarto([ + "use", + "template", + source, + "--no-prompt", + ]); + Deno.chdir(wd); + }, + + teardown: async () => { + await Deno.remove(workingDir, { recursive: true }); + removeIfEmptyDir(baseDir); + }, + }); +} diff --git a/tests/smoke/render/render-typst-package-staging.test.ts b/tests/smoke/render/render-typst-package-staging.test.ts new file mode 100644 index 00000000000..defc8301978 --- /dev/null +++ b/tests/smoke/render/render-typst-package-staging.test.ts @@ -0,0 +1,55 @@ +/* + * render-typst-package-staging.test.ts + * + * Tests that typst packages are staged to .quarto/typst/packages/ during render: + * - Built-in packages (marginalia) from quarto resources + * - Extension @preview packages from typst/packages/preview/ directories + * - Extension @local packages from typst/packages/local/ directories + * + * Copyright (C) 2020-2022 Posit Software, PBC + */ + +import { join } from "../../../src/deno_ral/path.ts"; +import { docs } from "../../utils.ts"; +import { testRender } from "./render.ts"; +import { fileExists } from "../../verify.ts"; +import { safeRemoveSync } from "../../../src/core/path.ts"; + +const input = docs("render/typst-package-staging/test.qmd"); +const projectDir = docs("render/typst-package-staging"); +const stagedPackages = join(projectDir, ".quarto/typst/packages"); + +// Verify extension @preview package was staged +const helloPackage = join(stagedPackages, "preview/hello/0.1.0"); +const helloManifest = join(helloPackage, "typst.toml"); + +// Verify extension @local package was staged +const confettiPackage = join(stagedPackages, "local/confetti/0.1.0"); +const confettiManifest = join(confettiPackage, "typst.toml"); + +// Verify built-in marginalia package was staged (triggered by margin note) +const marginaliaPackage = join(stagedPackages, "preview/marginalia/0.3.1"); +const marginaliaManifest = join(marginaliaPackage, "typst.toml"); + +testRender( + input, + "test-ext-typst", + true, // no supporting files + [ + // Extension @preview package + fileExists(helloPackage), + fileExists(helloManifest), + // Extension @local package + fileExists(confettiPackage), + fileExists(confettiManifest), + // Built-in marginalia package + fileExists(marginaliaPackage), + fileExists(marginaliaManifest), + ], + { + teardown: async () => { + // Clean up the .quarto directory + safeRemoveSync(join(projectDir, ".quarto"), { recursive: true }); + }, + }, +); diff --git a/tests/smoke/render/render.ts b/tests/smoke/render/render.ts index b15aa5e31d9..9e312872928 100644 --- a/tests/smoke/render/render.ts +++ b/tests/smoke/render/render.ts @@ -83,13 +83,16 @@ export function testRender( } export function cleanoutput( - input: string, - to: string, + input: string, + to: string, projectOutDir?: string, projectRoot?: string, // deno-lint-ignore no-explicit-any metadata?: Record, ) { + if (Deno.env.get("QUARTO_TEST_KEEP_OUTPUTS")) { + return; + } const out = outputForInput(input, to, projectOutDir, projectRoot, metadata); if (safeExistsSync(out.outputPath)) { safeRemoveSync(out.outputPath); diff --git a/tests/smoke/smoke-all.test.ts b/tests/smoke/smoke-all.test.ts index b5aaafa6897..b209c2a631d 100644 --- a/tests/smoke/smoke-all.test.ts +++ b/tests/smoke/smoke-all.test.ts @@ -24,6 +24,8 @@ import { ensureFileRegexMatches, ensureHtmlElements, ensurePdfRegexMatches, + ensurePdfTextPositions, + ensurePdfMetadata, ensureJatsXpath, ensureOdtXpath, ensurePptxRegexMatches, @@ -153,6 +155,9 @@ function registerPostRenderCleanupFile(file: string): void { postRenderCleanupFiles.push(file); } const postRenderCleanup = () => { + if (Deno.env.get("QUARTO_TEST_KEEP_OUTPUTS")) { + return; + } for (const file of postRenderCleanupFiles) { console.log(`Cleaning up ${file} in ${Deno.cwd()}`); if (safeExistsSync(file)) { @@ -183,6 +188,8 @@ function resolveTestSpecs( ensureOdtXpath, ensureJatsXpath, ensurePdfRegexMatches, + ensurePdfTextPositions, + ensurePdfMetadata, ensurePptxRegexMatches, ensurePptxXpath, ensurePptxLayout, @@ -272,12 +279,23 @@ function resolveTestSpecs( throw new Error(`Using ensureLatexFileRegexMatches requires setting 'keep-tex: true' in file ${input}`); } } - + + // keep-typ/keep-tex files are alongside source, so pass input path + // But output-ext: typ puts files in output directory, so don't pass input path + const usesKeepTyp = key === "ensureTypstFileRegexMatches" && + (metadata.format?.typst?.['keep-typ'] || metadata['keep-typ']) && + !(metadata.format?.typst?.['output-ext'] === 'typ' || metadata['output-ext'] === 'typ'); + const usesKeepTex = key === "ensureLatexFileRegexMatches" && + (metadata.format?.pdf?.['keep-tex'] || metadata['keep-tex']); + const needsInputPath = usesKeepTyp || usesKeepTex; if (typeof value === "object" && Array.isArray(value)) { - // Only use spread operator for arrays - verifyFns.push(verifyMap[key](outputFile.outputPath, ...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)); } else { - verifyFns.push(verifyMap[key](outputFile.outputPath, value)); + verifyFns.push(verifyMap[key](outputFile.outputPath, value, undefined, needsInputPath ? input : undefined)); } } else { throw new Error(`Unknown verify function used: ${key} in file ${input} for format ${format}`) ; diff --git a/tests/smoke/typst-gather/.gitignore b/tests/smoke/typst-gather/.gitignore new file mode 100644 index 00000000000..c020d281044 --- /dev/null +++ b/tests/smoke/typst-gather/.gitignore @@ -0,0 +1,8 @@ +# Cached packages created by tests +_extensions/test-format/typst/ +with-config/_extensions/config-format/typst/ +with-local/_extensions/local-format/typst/ + +# Generated config files +typst-gather.toml +with-local/typst-gather.toml.bak \ No newline at end of file diff --git a/tests/smoke/typst-gather/README.md b/tests/smoke/typst-gather/README.md new file mode 100644 index 00000000000..258ea138563 --- /dev/null +++ b/tests/smoke/typst-gather/README.md @@ -0,0 +1,67 @@ +# typst-gather smoke tests + +These tests verify that `quarto call typst-gather` correctly: + +1. Auto-detects Typst template files from `_extension.yml` +2. Scans those files for `@preview` package imports +3. Downloads the packages to `typst/packages/` directory +4. Uses `rootdir` from config file to resolve relative paths +5. Generates config with `--init-config` +6. Copies `@local` packages when configured in `[local]` section +7. Detects `@local` imports when generating config with `--init-config` + +## Test fixtures + +### `_extensions/test-format/` + +Minimal Typst format extension for auto-detection test: + +- `_extension.yml` - Defines template and template-partials +- `template.typ` - Imports `@preview/example:0.1.0` +- `typst-show.typ` - A template partial (no imports) + +### `with-config/` + +Test fixture with explicit `typst-gather.toml` config: + +- `typst-gather.toml` - Config with `rootdir = "_extensions/config-format"` +- `_extensions/config-format/` - Extension directory + +### `with-local/` + +Test fixture for `@local` package support: + +- `typst-gather.toml` - Config with `rootdir` and `[local]` section +- `_extensions/local-format/` - Extension that imports `@local/my-local-pkg` +- `local-packages/my-local-pkg/` - Local typst package source + +## Manual testing + +```bash +# Test auto-detection +cd tests/smoke/typst-gather +quarto call typst-gather + +# Test config with rootdir +cd tests/smoke/typst-gather/with-config +quarto call typst-gather + +# Test @local packages +cd tests/smoke/typst-gather/with-local +quarto call typst-gather + +# Test --init-config +cd tests/smoke/typst-gather +quarto call typst-gather --init-config +``` + +## Cleanup + +To reset the test fixtures: + +```bash +rm -rf _extensions/test-format/typst/packages +rm -rf with-config/_extensions/config-format/typst/packages +rm -rf with-local/_extensions/local-format/typst/packages +rm -f typst-gather.toml +``` diff --git a/tests/smoke/typst-gather/_extensions/test-format/_extension.yml b/tests/smoke/typst-gather/_extensions/test-format/_extension.yml new file mode 100644 index 00000000000..3fa38953716 --- /dev/null +++ b/tests/smoke/typst-gather/_extensions/test-format/_extension.yml @@ -0,0 +1,10 @@ +title: Test Typst Format +author: Quarto Dev Team +version: 1.0.0 +quarto-required: ">=1.6.0" +contributes: + formats: + typst: + template: template.typ + template-partials: + - typst-show.typ diff --git a/tests/smoke/typst-gather/_extensions/test-format/template.typ b/tests/smoke/typst-gather/_extensions/test-format/template.typ new file mode 100644 index 00000000000..aae30413de5 --- /dev/null +++ b/tests/smoke/typst-gather/_extensions/test-format/template.typ @@ -0,0 +1,7 @@ +// Test template that imports a preview package +#import "@preview/example:0.1.0": * + +#let project(title: "", body) = { + set document(title: title) + body +} diff --git a/tests/smoke/typst-gather/_extensions/test-format/typst-show.typ b/tests/smoke/typst-gather/_extensions/test-format/typst-show.typ new file mode 100644 index 00000000000..b74e925710b --- /dev/null +++ b/tests/smoke/typst-gather/_extensions/test-format/typst-show.typ @@ -0,0 +1,4 @@ +// Test partial - no imports needed for this test +#show: project.with( + title: "Test Document" +) diff --git a/tests/smoke/typst-gather/typst-gather.test.ts b/tests/smoke/typst-gather/typst-gather.test.ts new file mode 100644 index 00000000000..523a38c5a3b --- /dev/null +++ b/tests/smoke/typst-gather/typst-gather.test.ts @@ -0,0 +1,220 @@ +import { testQuartoCmd, Verify } from "../../test.ts"; +import { assert } from "testing/asserts"; +import { existsSync } from "../../../src/deno_ral/fs.ts"; + +// Test 1: Auto-detection from _extension.yml +const verifyPackagesCreated: Verify = { + name: "Verify typst/packages directory was created", + verify: async () => { + const packagesDir = "_extensions/test-format/typst/packages"; + assert( + existsSync(packagesDir), + `Expected typst/packages directory not found: ${packagesDir}`, + ); + }, +}; + +const verifyExamplePackageCached: Verify = { + name: "Verify @preview/example package was cached", + verify: async () => { + const packageDir = + "_extensions/test-format/typst/packages/preview/example/0.1.0"; + assert( + existsSync(packageDir), + `Expected cached package not found: ${packageDir}`, + ); + + // Verify typst.toml exists in the package + const manifestPath = `${packageDir}/typst.toml`; + assert( + existsSync(manifestPath), + `Expected package manifest not found: ${manifestPath}`, + ); + }, +}; + +testQuartoCmd( + "call", + ["typst-gather"], + [verifyPackagesCreated, verifyExamplePackageCached], + { + cwd: () => "smoke/typst-gather", + }, + "typst-gather caches preview packages from extension templates", +); + +// Test 2: Config file with rootdir +const verifyConfigPackagesCreated: Verify = { + name: "Verify typst/packages directory was created via config", + verify: async () => { + const packagesDir = "_extensions/config-format/typst/packages"; + assert( + existsSync(packagesDir), + `Expected typst/packages directory not found: ${packagesDir}`, + ); + }, +}; + +const verifyConfigExamplePackageCached: Verify = { + name: "Verify @preview/example package was cached via config", + verify: async () => { + const packageDir = + "_extensions/config-format/typst/packages/preview/example/0.1.0"; + assert( + existsSync(packageDir), + `Expected cached package not found: ${packageDir}`, + ); + + const manifestPath = `${packageDir}/typst.toml`; + assert( + existsSync(manifestPath), + `Expected package manifest not found: ${manifestPath}`, + ); + }, +}; + +testQuartoCmd( + "call", + ["typst-gather"], + [verifyConfigPackagesCreated, verifyConfigExamplePackageCached], + { + cwd: () => "smoke/typst-gather/with-config", + }, + "typst-gather uses rootdir from config file", +); + +// Test 3: --init-config generates config file +const verifyInitConfigCreated: Verify = { + name: "Verify typst-gather.toml was created", + verify: async () => { + assert( + existsSync("typst-gather.toml"), + "Expected typst-gather.toml to be created", + ); + + // Read and verify content has rootdir + const content = Deno.readTextFileSync("typst-gather.toml"); + assert( + content.includes("rootdir"), + "Expected typst-gather.toml to contain rootdir", + ); + assert( + content.includes("_extensions/test-format"), + "Expected rootdir to point to extension directory", + ); + }, +}; + +testQuartoCmd( + "call", + ["typst-gather", "--init-config"], + [verifyInitConfigCreated], + { + cwd: () => "smoke/typst-gather", + teardown: async () => { + // Clean up generated config file + try { + Deno.removeSync("typst-gather.toml"); + } catch { + // Ignore if already removed + } + }, + }, + "typst-gather --init-config generates config with rootdir", +); + +// Test 4: @local package is copied when [local] section is configured +const verifyLocalPackageCopied: Verify = { + name: "Verify @local/my-local-pkg was copied", + verify: async () => { + const packageDir = + "_extensions/local-format/typst/packages/local/my-local-pkg/0.1.0"; + assert( + existsSync(packageDir), + `Expected local package not found: ${packageDir}`, + ); + + const manifestPath = `${packageDir}/typst.toml`; + assert( + existsSync(manifestPath), + `Expected package manifest not found: ${manifestPath}`, + ); + + const libPath = `${packageDir}/lib.typ`; + assert(existsSync(libPath), `Expected lib.typ not found: ${libPath}`); + }, +}; + +testQuartoCmd( + "call", + ["typst-gather"], + [verifyLocalPackageCopied], + { + cwd: () => "smoke/typst-gather/with-local", + teardown: async () => { + // Clean up copied packages + try { + Deno.removeSync("_extensions/local-format/typst", { recursive: true }); + } catch { + // Ignore if already removed + } + }, + }, + "typst-gather copies @local packages when configured", +); + +// Test 5: --init-config detects @local imports and generates [local] section +const verifyInitConfigWithLocal: Verify = { + name: "Verify --init-config detects @local imports", + verify: async () => { + assert( + existsSync("typst-gather.toml"), + "Expected typst-gather.toml to be created", + ); + + const content = Deno.readTextFileSync("typst-gather.toml"); + assert( + content.includes("[local]"), + "Expected typst-gather.toml to contain [local] section", + ); + assert( + content.includes("my-local-pkg"), + "Expected typst-gather.toml to reference my-local-pkg", + ); + assert( + content.includes("@local/my-local-pkg"), + "Expected typst-gather.toml to show found @local import", + ); + }, +}; + +testQuartoCmd( + "call", + ["typst-gather", "--init-config"], + [verifyInitConfigWithLocal], + { + cwd: () => "smoke/typst-gather/with-local", + setup: async () => { + // Remove existing config so --init-config can run + try { + Deno.renameSync("typst-gather.toml", "typst-gather.toml.bak"); + } catch { + // Ignore if doesn't exist + } + }, + teardown: async () => { + // Restore original config and clean up generated one + try { + Deno.removeSync("typst-gather.toml"); + } catch { + // Ignore + } + try { + Deno.renameSync("typst-gather.toml.bak", "typst-gather.toml"); + } catch { + // Ignore + } + }, + }, + "typst-gather --init-config detects @local imports", +); diff --git a/tests/smoke/typst-gather/with-config/_extensions/config-format/_extension.yml b/tests/smoke/typst-gather/with-config/_extensions/config-format/_extension.yml new file mode 100644 index 00000000000..87da6fc61fd --- /dev/null +++ b/tests/smoke/typst-gather/with-config/_extensions/config-format/_extension.yml @@ -0,0 +1,9 @@ +title: Test Format with Config +author: Quarto Dev Team +version: 1.0.0 +quarto-required: ">=1.6.0" +contributes: + formats: + typst: + template-partials: + - typst-template.typ diff --git a/tests/smoke/typst-gather/with-config/_extensions/config-format/typst-template.typ b/tests/smoke/typst-gather/with-config/_extensions/config-format/typst-template.typ new file mode 100644 index 00000000000..aae30413de5 --- /dev/null +++ b/tests/smoke/typst-gather/with-config/_extensions/config-format/typst-template.typ @@ -0,0 +1,7 @@ +// Test template that imports a preview package +#import "@preview/example:0.1.0": * + +#let project(title: "", body) = { + set document(title: title) + body +} diff --git a/tests/smoke/typst-gather/with-config/typst-gather.toml b/tests/smoke/typst-gather/with-config/typst-gather.toml new file mode 100644 index 00000000000..7822f3da40c --- /dev/null +++ b/tests/smoke/typst-gather/with-config/typst-gather.toml @@ -0,0 +1,4 @@ +# Test config with rootdir +rootdir = "_extensions/config-format" +destination = "typst/packages" +discover = ["typst-template.typ"] diff --git a/tests/smoke/typst-gather/with-local/_extensions/local-format/_extension.yml b/tests/smoke/typst-gather/with-local/_extensions/local-format/_extension.yml new file mode 100644 index 00000000000..c24536fd266 --- /dev/null +++ b/tests/smoke/typst-gather/with-local/_extensions/local-format/_extension.yml @@ -0,0 +1,9 @@ +title: Test Format with Local Import +author: Quarto Dev Team +version: 1.0.0 +quarto-required: ">=1.6.0" +contributes: + formats: + typst: + template-partials: + - typst-template.typ diff --git a/tests/smoke/typst-gather/with-local/_extensions/local-format/typst-template.typ b/tests/smoke/typst-gather/with-local/_extensions/local-format/typst-template.typ new file mode 100644 index 00000000000..ba296f3a8cc --- /dev/null +++ b/tests/smoke/typst-gather/with-local/_extensions/local-format/typst-template.typ @@ -0,0 +1,8 @@ +// Test template that imports a local package +#import "@local/my-local-pkg:0.1.0": hello + +#let project(title: "", body) = { + set document(title: title) + hello() + body +} diff --git a/tests/smoke/typst-gather/with-local/local-packages/my-local-pkg/lib.typ b/tests/smoke/typst-gather/with-local/local-packages/my-local-pkg/lib.typ new file mode 100644 index 00000000000..85d49b57aff --- /dev/null +++ b/tests/smoke/typst-gather/with-local/local-packages/my-local-pkg/lib.typ @@ -0,0 +1,2 @@ +// Test local package +#let hello() = "Hello from local package!" diff --git a/tests/smoke/typst-gather/with-local/local-packages/my-local-pkg/typst.toml b/tests/smoke/typst-gather/with-local/local-packages/my-local-pkg/typst.toml new file mode 100644 index 00000000000..0cd752d06b8 --- /dev/null +++ b/tests/smoke/typst-gather/with-local/local-packages/my-local-pkg/typst.toml @@ -0,0 +1,7 @@ +[package] +name = "my-local-pkg" +version = "0.1.0" +entrypoint = "lib.typ" +authors = ["Test"] +license = "MIT" +description = "Test local package" diff --git a/tests/smoke/typst-gather/with-local/typst-gather.toml b/tests/smoke/typst-gather/with-local/typst-gather.toml new file mode 100644 index 00000000000..20fce22523d --- /dev/null +++ b/tests/smoke/typst-gather/with-local/typst-gather.toml @@ -0,0 +1,7 @@ +# Test config with local package +rootdir = "_extensions/local-format" +destination = "typst/packages" +discover = ["typst-template.typ"] + +[local] +my-local-pkg = "local-packages/my-local-pkg" diff --git a/tests/smoke/verify/pdf-metadata.test.ts b/tests/smoke/verify/pdf-metadata.test.ts new file mode 100644 index 00000000000..31ad2c775cb --- /dev/null +++ b/tests/smoke/verify/pdf-metadata.test.ts @@ -0,0 +1,152 @@ +/* + * pdf-metadata.test.ts + * + * Tests for the ensurePdfMetadata verify predicate. + * Renders a fixture document and runs various assertions including expected failures. + * + * Copyright (C) 2020-2025 Posit Software, PBC + */ + +import { testQuartoCmd } from "../../test.ts"; +import { ensurePdfMetadata } from "../../verify-pdf-metadata.ts"; +import { assert } from "testing/asserts"; +import { join } from "../../../src/deno_ral/path.ts"; +import { safeRemoveSync, safeExistsSync } from "../../../src/core/path.ts"; + +const fixtureDir = "docs/verify/pdf-metadata"; +const fixtureQmd = join(fixtureDir, "fixture.qmd"); +const fixturePdf = join(fixtureDir, "fixture.pdf"); + +/** + * Helper to assert that a function throws with error message matching a pattern + */ +async function assertThrowsWithPattern( + fn: () => Promise, + pattern: RegExp, + description: string, +) { + let threw = false; + let errorMessage = ""; + try { + await fn(); + } catch (e) { + threw = true; + errorMessage = e instanceof Error ? e.message : String(e); + } + + assert(threw, `Expected to throw for: ${description}`); + assert( + pattern.test(errorMessage), + `Error message "${errorMessage}" did not match pattern ${pattern} for: ${description}`, + ); +} + +// Test: Render fixture and run assertions +testQuartoCmd("render", [fixtureQmd, "--to", "typst"], [], { + teardown: async () => { + // Run the test assertions after render completes + await runPositiveTests(); + await runExpectedFailureTests(); + + // Cleanup + if (safeExistsSync(fixturePdf)) { + safeRemoveSync(fixturePdf); + } + }, +}); + +/** + * Test positive assertions that should pass + */ +async function runPositiveTests() { + // Test 1: Title contains expected text + const titleTest = ensurePdfMetadata(fixturePdf, { + title: "PDF Metadata Test Fixture", + }); + await titleTest.verify([]); + + // Test 2: Author contains expected text + const authorTest = ensurePdfMetadata(fixturePdf, { + author: "Test Author Name", + }); + await authorTest.verify([]); + + // Test 3: Keywords contain expected values (as array) + const keywordsTest = ensurePdfMetadata(fixturePdf, { + keywords: ["quarto", "typst"], + }); + await keywordsTest.verify([]); + + // Test 4: Title matches regex + const regexTest = ensurePdfMetadata(fixturePdf, { + title: /PDF.*Fixture/, + }); + await regexTest.verify([]); + + // Test 5: Multiple fields at once + const multiTest = ensurePdfMetadata(fixturePdf, { + title: "Metadata", + author: "Author", + keywords: ["testing"], + }); + await multiTest.verify([]); + + // Test 6: Creator field (should contain "Typst" since we render with Typst) + const creatorTest = ensurePdfMetadata(fixturePdf, { + creator: /typst/i, + }); + await creatorTest.verify([]); +} + +/** + * Test expected failures - each should throw with specific error messages + */ +async function runExpectedFailureTests() { + // Error 1: Title mismatch + await assertThrowsWithPattern( + async () => { + const predicate = ensurePdfMetadata(fixturePdf, { + title: "NONEXISTENT_TITLE_12345", + }); + await predicate.verify([]); + }, + /title.*expected.*NONEXISTENT_TITLE_12345/i, + "Title mismatch error", + ); + + // Error 2: Author mismatch + await assertThrowsWithPattern( + async () => { + const predicate = ensurePdfMetadata(fixturePdf, { + author: "NONEXISTENT_AUTHOR_12345", + }); + await predicate.verify([]); + }, + /author.*expected.*NONEXISTENT_AUTHOR_12345/i, + "Author mismatch error", + ); + + // Error 3: Keywords mismatch + await assertThrowsWithPattern( + async () => { + const predicate = ensurePdfMetadata(fixturePdf, { + keywords: ["NONEXISTENT_KEYWORD_12345"], + }); + await predicate.verify([]); + }, + /keywords.*expected.*NONEXISTENT_KEYWORD_12345/i, + "Keywords mismatch error", + ); + + // Error 4: Regex mismatch + await assertThrowsWithPattern( + async () => { + const predicate = ensurePdfMetadata(fixturePdf, { + title: /^EXACT_NONEXISTENT$/, + }); + await predicate.verify([]); + }, + /title.*expected.*match/i, + "Regex mismatch error", + ); +} diff --git a/tests/smoke/verify/pdf-text-position.test.ts b/tests/smoke/verify/pdf-text-position.test.ts new file mode 100644 index 00000000000..3a967b56b2f --- /dev/null +++ b/tests/smoke/verify/pdf-text-position.test.ts @@ -0,0 +1,577 @@ +/* + * pdf-text-position.test.ts + * + * Tests for the ensurePdfTextPositions verify predicate. + * Renders a fixture document and runs various assertions including expected failures. + * + * Copyright (C) 2020-2025 Posit Software, PBC + */ + +import { testQuartoCmd } from "../../test.ts"; +import { ensurePdfTextPositions, PdfTextPositionAssertion } from "../../verify-pdf-text-position.ts"; +import { assert, AssertionError } from "testing/asserts"; +import { join } from "../../../src/deno_ral/path.ts"; +import { safeRemoveSync, safeExistsSync } from "../../../src/core/path.ts"; + +const fixtureDir = "docs/verify/pdf-text-position"; +const fixtureQmd = join(fixtureDir, "fixture.qmd"); +const fixturePdf = join(fixtureDir, "fixture.pdf"); + +/** + * Helper to assert that a function throws with error message matching a pattern + */ +async function assertThrowsWithPattern( + fn: () => Promise, + pattern: RegExp, + description: string, +) { + let threw = false; + let errorMessage = ""; + try { + await fn(); + } catch (e) { + threw = true; + errorMessage = e instanceof Error ? e.message : String(e); + } + + assert(threw, `Expected to throw for: ${description}`); + assert( + pattern.test(errorMessage), + `Error message "${errorMessage}" did not match pattern ${pattern} for: ${description}`, + ); +} + +// Test: Render fixture and run assertions +testQuartoCmd("render", [fixtureQmd, "--to", "typst"], [], { + teardown: async () => { + // Run the test assertions after render completes + await runPositiveTests(); + await runExpectedFailureTests(); + await runSemanticTagTests(); + await runPageRoleTests(); + await runEdgeOverrideTests(); + await runDistanceConstraintTests(); + await runDistanceConstraintErrorTests(); + await runPageRoleWithEdgeTests(); + + // Cleanup + if (safeExistsSync(fixturePdf)) { + safeRemoveSync(fixturePdf); + } + }, +}); + +/** + * Test positive assertions that should pass + */ +async function runPositiveTests() { + // Test 1: Basic vertical ordering (header < title < h1 < body < footer) + // Note: Headers and footers are page decorations without MCIDs, use role: "Decoration" + const verticalOrdering = ensurePdfTextPositions(fixturePdf, [ + { + subject: { text: "FIXTURE_HEADER_TEXT", role: "Decoration" }, + relation: "above", + object: "FIXTURE_TITLE_TEXT", + }, + { subject: "FIXTURE_TITLE_TEXT", relation: "above", object: "FIXTURE_H1_TEXT" }, + { subject: "FIXTURE_H1_TEXT", relation: "above", object: "FIXTURE_BODY_P1_TEXT" }, + { + subject: "FIXTURE_BODY_P1_TEXT", + relation: "above", + object: { text: "FIXTURE_FOOTER_TEXT", role: "Decoration" }, + }, + ]); + await verticalOrdering.verify([]); + + // Test 2: Margin positioning - use topAligned since semantic bbox may span full width + // Note: rightOf may not work with semantic bboxes because body paragraph's bbox + // may include the full content width + const marginPositioning = ensurePdfTextPositions(fixturePdf, [ + { subject: "FIXTURE_MARGIN_TEXT", relation: "topAligned", object: "FIXTURE_BODY_P2_TEXT" }, + ]); + await marginPositioning.verify([]); + + // Test 3: Heading hierarchy + const headingHierarchy = ensurePdfTextPositions(fixturePdf, [ + { subject: "FIXTURE_H1_TEXT", relation: "above", object: "FIXTURE_H2_TEXT" }, + { subject: "FIXTURE_H2_TEXT", relation: "above", object: "FIXTURE_H3_TEXT" }, + ]); + await headingHierarchy.verify([]); +} + +/** + * Test expected failures - each should throw with specific error messages + */ +async function runExpectedFailureTests() { + // Error 1: Text not found + await assertThrowsWithPattern( + async () => { + const predicate = ensurePdfTextPositions(fixturePdf, [ + { subject: "NONEXISTENT_TEXT_12345", relation: "above", object: "FIXTURE_BODY_P1_TEXT" }, + ]); + await predicate.verify([]); + }, + /Text not found.*NONEXISTENT_TEXT_12345/, + "Text not found error", + ); + + // Error 1b: Ambiguous text (appears multiple times) + await assertThrowsWithPattern( + async () => { + const predicate = ensurePdfTextPositions(fixturePdf, [ + // "paragraph" appears in multiple places in the fixture + { subject: "paragraph", relation: "above", object: "FIXTURE_BODY_P1_TEXT" }, + ]); + await predicate.verify([]); + }, + /paragraph.*ambiguous.*matches/i, + "Ambiguous text error", + ); + + // Error 2: Unknown relation (Zod validation error) + await assertThrowsWithPattern( + async () => { + const predicate = ensurePdfTextPositions(fixturePdf, [ + // Use type assertion for intentionally invalid relation to test error handling + { subject: "FIXTURE_H1_TEXT", relation: "invalidRelation", object: "FIXTURE_BODY_P1_TEXT" } as PdfTextPositionAssertion, + ]); + await predicate.verify([]); + }, + /Assertion.*is invalid/, + "Unknown relation error", + ); + + // Error 3: Different pages - comparing items on different pages should fail + await assertThrowsWithPattern( + async () => { + const predicate = ensurePdfTextPositions(fixturePdf, [ + { subject: "FIXTURE_H1_TEXT", relation: "above", object: "FIXTURE_PAGE2_BODY_TEXT" }, + ]); + await predicate.verify([]); + }, + /Cannot compare positions.*page \d+.*page \d+/, + "Different pages error", + ); + + // Error 4: Position assertion failed (wrong relation) + await assertThrowsWithPattern( + async () => { + const predicate = ensurePdfTextPositions(fixturePdf, [ + // Footer is BELOW header, not above (both are Decorations) + { + subject: { text: "FIXTURE_FOOTER_TEXT", role: "Decoration" }, + relation: "above", + object: { text: "FIXTURE_HEADER_TEXT", role: "Decoration" }, + }, + ]); + await predicate.verify([]); + }, + /Position assertion failed.*FIXTURE_FOOTER_TEXT.*NOT.*above/, + "Position assertion failed error", + ); + + // Error 5: Negative assertion unexpectedly true + await assertThrowsWithPattern( + async () => { + const predicate = ensurePdfTextPositions( + fixturePdf, + [], // No positive assertions + [ + // This IS true, so negative assertion should fail + { subject: "FIXTURE_H1_TEXT", relation: "above", object: "FIXTURE_H2_TEXT" }, + ], + ); + await predicate.verify([]); + }, + /Negative assertion failed.*FIXTURE_H1_TEXT.*IS.*above/, + "Negative assertion unexpectedly true error", + ); + + // Error 6: Role mismatch (wrong semantic role) + await assertThrowsWithPattern( + async () => { + const predicate = ensurePdfTextPositions(fixturePdf, [ + // H1 is not a Figure + { subject: { text: "FIXTURE_H1_TEXT", role: "Figure" }, relation: "above", object: "FIXTURE_BODY_P1_TEXT" }, + ]); + await predicate.verify([]); + }, + /Role mismatch.*FIXTURE_H1_TEXT.*expected Figure.*got H1/, + "Role mismatch error", + ); +} + +/** + * Test semantic role assertions + */ +async function runSemanticTagTests() { + // Test: Correct semantic roles should pass + const correctRoles = ensurePdfTextPositions(fixturePdf, [ + { + subject: { text: "FIXTURE_H1_TEXT", role: "H1" }, + relation: "above", + object: { text: "FIXTURE_BODY_P1_TEXT", role: "P" }, + }, + { + subject: { text: "FIXTURE_H2_TEXT", role: "H2" }, + relation: "above", + object: { text: "FIXTURE_H3_TEXT", role: "H3" }, + }, + ]); + await correctRoles.verify([]); +} + +/** + * Test Page role - represents entire page bounds + * Page intersects all content on that page, so directional relations should fail + */ +async function runPageRoleTests() { + // Test: Page role should NOT be above/below/leftOf/rightOf any content on same page + // because Page covers the entire page and thus intersects everything + const pageNotDirectional = ensurePdfTextPositions( + fixturePdf, + [], // No positive assertions + [ + // Page 1 is NOT above body text (it contains it) + { + subject: { role: "Page", page: 1 }, + relation: "above", + object: "FIXTURE_BODY_P1_TEXT", + }, + // Page 1 is NOT below anything on page 1 + { + subject: { role: "Page", page: 1 }, + relation: "below", + object: "FIXTURE_TITLE_TEXT", + }, + // Page 1 is NOT leftOf anything on page 1 + { + subject: { role: "Page", page: 1 }, + relation: "leftOf", + object: "FIXTURE_BODY_P1_TEXT", + }, + // Page 1 is NOT rightOf anything on page 1 + { + subject: { role: "Page", page: 1 }, + relation: "rightOf", + object: "FIXTURE_BODY_P1_TEXT", + }, + ], + ); + await pageNotDirectional.verify([]); + + // Test: Two Page selectors for same page should be aligned (both at origin 0,0) + const pageAlignment = ensurePdfTextPositions(fixturePdf, [ + { + subject: { role: "Page", page: 1 }, + relation: "topAligned", + object: { role: "Page", page: 1 }, + }, + { + subject: { role: "Page", page: 1 }, + relation: "leftAligned", + object: { role: "Page", page: 1 }, + }, + ]); + await pageAlignment.verify([]); +} + +/** + * Test edge override functionality for directional and alignment relations + */ +async function runEdgeOverrideTests() { + // Test: Edge override for directional relation - compare same edges + // H1's top edge should be above H2's top edge (both top edges) + const edgeOverrideDirectional = ensurePdfTextPositions(fixturePdf, [ + { + subject: { text: "FIXTURE_H1_TEXT", edge: "top" }, + relation: "above", + object: { text: "FIXTURE_H2_TEXT", edge: "top" }, + }, + ]); + await edgeOverrideDirectional.verify([]); + + // Test: Edge override for alignment relation - align different edges + // This tests that we can align one element's edge with another's different edge + // Header's bottom should NOT align with body's top (they're spaced apart) + // But we can verify header.bottom < body.top by checking header.bottom is above body.top + const edgeOverrideAlignment = ensurePdfTextPositions(fixturePdf, [ + { + subject: { text: "FIXTURE_H1_TEXT", edge: "bottom" }, + relation: "above", + object: { text: "FIXTURE_BODY_P1_TEXT", edge: "top" }, + }, + ]); + await edgeOverrideAlignment.verify([]); + + // Test: rightOf with edge overrides + // We know margin text is to the right of body text + // Margin's left edge should be rightOf body's right edge + const rightOfEdgeOverride = ensurePdfTextPositions(fixturePdf, [ + { + subject: { text: "FIXTURE_MARGIN_TEXT", edge: "left" }, + relation: "rightOf", + object: { text: "FIXTURE_BODY_P2_TEXT", edge: "right" }, + }, + ]); + await rightOfEdgeOverride.verify([]); + + // Test: below with edge overrides + // Body P1's top should be below H1's bottom + const belowEdgeOverride = ensurePdfTextPositions(fixturePdf, [ + { + subject: { text: "FIXTURE_BODY_P1_TEXT", edge: "top" }, + relation: "below", + object: { text: "FIXTURE_H1_TEXT", edge: "bottom" }, + }, + ]); + await belowEdgeOverride.verify([]); + + // Test: leftAligned with object edge override + // We can check if header's left aligns with page's left using edge override + const leftAlignedEdgeOverride = ensurePdfTextPositions(fixturePdf, [ + { + subject: { text: "FIXTURE_H1_TEXT" }, + relation: "leftAligned", + object: { text: "FIXTURE_H2_TEXT" }, + tolerance: 5, // Allow some tolerance for heading indentation + }, + ]); + await leftAlignedEdgeOverride.verify([]); +} + +/** + * Test byMin/byMax distance constraint functionality + */ +async function runDistanceConstraintTests() { + // Test: byMin constraint - H1 should be at least 1pt above H2 + const byMinTest = ensurePdfTextPositions(fixturePdf, [ + { + subject: "FIXTURE_H1_TEXT", + relation: "above", + object: "FIXTURE_H2_TEXT", + byMin: 1, + }, + ]); + await byMinTest.verify([]); + + // Test: byMax constraint - header decorations shouldn't be too far from title + // Using a generous max to ensure it passes + const byMaxTest = ensurePdfTextPositions(fixturePdf, [ + { + subject: { text: "FIXTURE_HEADER_TEXT", role: "Decoration" }, + relation: "above", + object: "FIXTURE_TITLE_TEXT", + byMax: 500, // Generous max distance + }, + ]); + await byMaxTest.verify([]); + + // Test: byMin and byMax together - range constraint + const byRangeTest = ensurePdfTextPositions(fixturePdf, [ + { + subject: "FIXTURE_H1_TEXT", + relation: "above", + object: "FIXTURE_H2_TEXT", + byMin: 1, + byMax: 500, // Generous range + }, + ]); + await byRangeTest.verify([]); + + // Test: Negative byMin (allows overlap) should work + // This tests that negative values are accepted + const negativeByMinTest = ensurePdfTextPositions(fixturePdf, [ + { + subject: "FIXTURE_H1_TEXT", + relation: "above", + object: "FIXTURE_H2_TEXT", + byMin: -100, // Negative allows overlap + }, + ]); + await negativeByMinTest.verify([]); + + // Test: rightOf with byMin - margin should be at least some distance right of body + const rightOfByMinTest = ensurePdfTextPositions(fixturePdf, [ + { + subject: { text: "FIXTURE_MARGIN_TEXT", edge: "left" }, + relation: "rightOf", + object: { text: "FIXTURE_BODY_P2_TEXT", edge: "right" }, + byMin: 1, // At least 1pt gap + }, + ]); + await rightOfByMinTest.verify([]); + + // Test: below with distance constraints + const belowByMinTest = ensurePdfTextPositions(fixturePdf, [ + { + subject: "FIXTURE_H2_TEXT", + relation: "below", + object: "FIXTURE_H1_TEXT", + byMin: 1, + }, + ]); + await belowByMinTest.verify([]); +} + +/** + * Test error cases for distance constraints + */ +async function runDistanceConstraintErrorTests() { + // Error: byMin/byMax with alignment relation should error (Zod .strict() catches extra keys) + // Use type assertion to test runtime error handling for invalid YAML input + await assertThrowsWithPattern( + async () => { + const predicate = ensurePdfTextPositions(fixturePdf, [ + { + subject: "FIXTURE_H1_TEXT", + relation: "topAligned", + object: "FIXTURE_H2_TEXT", + byMin: 10, + } as PdfTextPositionAssertion, + ]); + await predicate.verify([]); + }, + /Assertion.*is invalid/, + "byMin with alignment relation error", + ); + + // Error: byMax with alignment relation should error (Zod .strict() catches extra keys) + // Use type assertion to test runtime error handling for invalid YAML input + await assertThrowsWithPattern( + async () => { + const predicate = ensurePdfTextPositions(fixturePdf, [ + { + subject: "FIXTURE_H1_TEXT", + relation: "leftAligned", + object: "FIXTURE_H2_TEXT", + byMax: 10, + } as PdfTextPositionAssertion, + ]); + await predicate.verify([]); + }, + /Assertion.*is invalid/, + "byMax with alignment relation error", + ); + + // Error: byMin > byMax should error (caught by Zod .refine()) + await assertThrowsWithPattern( + async () => { + const predicate = ensurePdfTextPositions(fixturePdf, [ + { + subject: "FIXTURE_H1_TEXT", + relation: "above", + object: "FIXTURE_H2_TEXT", + byMin: 100, + byMax: 10, // Invalid: byMin > byMax + }, + ]); + await predicate.verify([]); + }, + /byMin must be <= byMax/i, + "byMin > byMax error", + ); + + // Error: byMin constraint not satisfied (too close) + await assertThrowsWithPattern( + async () => { + const predicate = ensurePdfTextPositions(fixturePdf, [ + { + subject: "FIXTURE_H1_TEXT", + relation: "above", + object: "FIXTURE_H2_TEXT", + byMin: 10000, // Unreasonably large min distance + }, + ]); + await predicate.verify([]); + }, + /Position assertion failed.*distance.*byMin/i, + "byMin constraint not satisfied error", + ); + + // Error: byMax constraint not satisfied (too far) + await assertThrowsWithPattern( + async () => { + const predicate = ensurePdfTextPositions(fixturePdf, [ + { + subject: { text: "FIXTURE_HEADER_TEXT", role: "Decoration" }, + relation: "above", + object: { text: "FIXTURE_FOOTER_TEXT", role: "Decoration" }, + byMax: 1, // Unreasonably small max distance + }, + ]); + await predicate.verify([]); + }, + /Position assertion failed.*distance.*byMax/i, + "byMax constraint not satisfied error", + ); +} + +/** + * Test Page role with edge override functionality + */ +async function runPageRoleWithEdgeTests() { + // Test: Page's left edge should be at x=0, content should be rightOf that + // This verifies edge overrides work with Page role + const pageLeftEdgeTest = ensurePdfTextPositions(fixturePdf, [ + { + subject: "FIXTURE_BODY_P1_TEXT", + relation: "rightOf", + object: { role: "Page", page: 1, edge: "left" }, + }, + ]); + await pageLeftEdgeTest.verify([]); + + // Test: Content should be below Page's top edge + const pageTopEdgeTest = ensurePdfTextPositions(fixturePdf, [ + { + subject: "FIXTURE_BODY_P1_TEXT", + relation: "below", + object: { role: "Page", page: 1, edge: "top" }, + }, + ]); + await pageTopEdgeTest.verify([]); + + // Test: Content should be above Page's bottom edge + const pageBottomEdgeTest = ensurePdfTextPositions(fixturePdf, [ + { + subject: "FIXTURE_BODY_P1_TEXT", + relation: "above", + object: { role: "Page", page: 1, edge: "bottom" }, + }, + ]); + await pageBottomEdgeTest.verify([]); + + // Test: Content should be leftOf Page's right edge + const pageRightEdgeTest = ensurePdfTextPositions(fixturePdf, [ + { + subject: "FIXTURE_BODY_P1_TEXT", + relation: "leftOf", + object: { role: "Page", page: 1, edge: "right" }, + }, + ]); + await pageRightEdgeTest.verify([]); + + // Test: Page edge with byMin - content should be at least some distance from page edges + const pageEdgeWithByMin = ensurePdfTextPositions(fixturePdf, [ + { + subject: "FIXTURE_BODY_P1_TEXT", + relation: "rightOf", + object: { role: "Page", page: 1, edge: "left" }, + byMin: 1, // At least 1pt from left edge + }, + ]); + await pageEdgeWithByMin.verify([]); + + // Test: topAligned with Page using edge override + // Header decoration's top should be close to page top + const headerNearPageTop = ensurePdfTextPositions(fixturePdf, [ + { + subject: { text: "FIXTURE_HEADER_TEXT", role: "Decoration" }, + relation: "below", + object: { role: "Page", page: 1, edge: "top" }, + byMax: 100, // Within 100pt of page top + }, + ]); + await headerNearPageTop.verify([]); +} diff --git a/tests/verify-pdf-metadata.ts b/tests/verify-pdf-metadata.ts new file mode 100644 index 00000000000..bd0e789bc85 --- /dev/null +++ b/tests/verify-pdf-metadata.ts @@ -0,0 +1,132 @@ +/* + * verify-pdf-metadata.ts + * + * PDF metadata verification using pdfjs-dist. + * Extracts and verifies PDF document metadata (title, author, keywords, etc.). + * + * Copyright (C) 2020-2025 Posit Software, PBC + */ + +import { assert } from "testing/asserts"; +import { ExecuteOutput, Verify } from "./test.ts"; + +// ============================================================================ +// Type Definitions +// ============================================================================ + +/** + * PDF metadata fields that can be verified. + * All fields are optional - only specified fields will be checked. + */ +export interface PdfMetadataAssertion { + title?: string | RegExp; + author?: string | RegExp; + subject?: string | RegExp; + keywords?: string | RegExp | string[]; + creator?: string | RegExp; + producer?: string | RegExp; + creationDate?: string | RegExp | Date; + modDate?: string | RegExp | Date; +} + +// ============================================================================ +// Helper Functions +// ============================================================================ + +/** + * Match a value against a string, RegExp, or array of strings. + */ +function matchValue( + actual: string | undefined | null, + expected: string | RegExp | string[] | Date | undefined, + fieldName: string, +): string | null { + if (expected === undefined) return null; + + const actualStr = actual ?? ""; + + if (expected instanceof RegExp) { + if (!expected.test(actualStr)) { + return `${fieldName}: expected to match ${expected}, got "${actualStr}"`; + } + } else if (expected instanceof Date) { + // For dates, just check if the actual contains the expected date components + const expectedStr = expected.toISOString().slice(0, 10); // YYYY-MM-DD + if (!actualStr.includes(expectedStr)) { + return `${fieldName}: expected to contain date ${expectedStr}, got "${actualStr}"`; + } + } else if (Array.isArray(expected)) { + // For arrays (keywords), check if all expected values are present + for (const keyword of expected) { + if (!actualStr.toLowerCase().includes(keyword.toLowerCase())) { + return `${fieldName}: expected to contain "${keyword}", got "${actualStr}"`; + } + } + } else { + // String comparison (case-insensitive contains) + if (!actualStr.toLowerCase().includes(expected.toLowerCase())) { + return `${fieldName}: expected to contain "${expected}", got "${actualStr}"`; + } + } + + return null; +} + +// ============================================================================ +// Main Predicate +// ============================================================================ + +/** + * Verify PDF metadata fields match expected values. + * Uses pdfjs-dist to extract metadata from PDF files. + * + * @param file - Path to the PDF file + * @param assertions - Metadata fields to verify + * @returns Verify object for test framework + */ +export const ensurePdfMetadata = ( + file: string, + assertions: PdfMetadataAssertion, +): Verify => { + return { + name: `Inspecting ${file} for PDF metadata`, + verify: async (_output: ExecuteOutput[]) => { + const errors: string[] = []; + + // Load PDF with pdfjs-dist + // deno-lint-ignore no-explicit-any + const pdfjsLib = await import("pdfjs-dist") as any; + const buffer = await Deno.readFile(file); + const doc = await pdfjsLib.getDocument({ data: buffer }).promise; + + // Get metadata + const { info } = await doc.getMetadata(); + + // Verify each specified field + const checks = [ + matchValue(info?.Title, assertions.title, "title"), + matchValue(info?.Author, assertions.author, "author"), + matchValue(info?.Subject, assertions.subject, "subject"), + matchValue(info?.Keywords, assertions.keywords, "keywords"), + matchValue(info?.Creator, assertions.creator, "creator"), + matchValue(info?.Producer, assertions.producer, "producer"), + matchValue(info?.CreationDate, assertions.creationDate, "creationDate"), + matchValue(info?.ModDate, assertions.modDate, "modDate"), + ]; + + for (const error of checks) { + if (error) { + errors.push(error); + } + } + + // Report errors + if (errors.length > 0) { + assert( + false, + `PDF metadata assertions failed in ${file}:\n${errors.map((e, i) => ` ${i + 1}. ${e}`).join("\n")}`, + ); + } + }, + }; +}; diff --git a/tests/verify-pdf-text-position.ts b/tests/verify-pdf-text-position.ts new file mode 100644 index 00000000000..65b24a3deb1 --- /dev/null +++ b/tests/verify-pdf-text-position.ts @@ -0,0 +1,948 @@ +/* + * verify-pdf-text-position.ts + * + * PDF text position verification using semantic structure tree. + * Uses pdfjs-dist directly to access MCIDs and structure tree. + * + * REQUIREMENTS: + * This module requires tagged PDFs with PDF 1.4+ structure tree support. + * Tagged PDFs contain Marked Content Identifiers (MCIDs) that link text + * content to semantic structure elements (P, H1, Figure, Table, etc.). + * + * Currently confirmed working: + * - Typst: Produces tagged PDFs by default + * + * Not yet working: + * - LaTeX: Requires \DocumentMetadata{} before \documentclass for tagging, + * which Quarto doesn't currently support. When LaTeX tagged PDF support + * is available, this module should work with minimal changes since we + * use only basic PDF 1.4 tagged structure features. + * - ConTeXt: Pandoc supports +tagging extension, but Quarto's context + * format doesn't compile to PDF. + * + * SPECIAL ROLES: + * - role: "Decoration" - Use for untagged page elements like headers, footers, + * page numbers, and other decorations. These use text item bounds directly + * instead of requiring MCID/structure tree support. + * - role: "Page" - Use for the entire page bounds. Requires `page` field to + * specify which page number (1-indexed). The `text` field is ignored. + * Useful for NOT assertions since Page intersects all content on that page. + * + * Copyright (C) 2020-2025 Posit Software, PBC + */ + +import { assert } from "testing/asserts"; +import { z } from "zod"; +import { ExecuteOutput, Verify } from "./test.ts"; + +// ============================================================================ +// Zod Schemas and Type Definitions +// ============================================================================ + +// Edge schema for precise bbox edge selection +export const EdgeSchema = z.enum(["left", "right", "top", "bottom"]); +export type Edge = z.infer; + +// Relation schemas +export const DirectionalRelationSchema = z.enum(["leftOf", "rightOf", "above", "below"]); +export const AlignmentRelationSchema = z.enum(["leftAligned", "rightAligned", "topAligned", "bottomAligned"]); +export const RelationSchema = z.union([DirectionalRelationSchema, AlignmentRelationSchema]); + +export type DirectionalRelation = z.infer; +export type AlignmentRelation = z.infer; +export type Relation = z.infer; + +// Text selector schema +// Note: Label/ID checking is not supported because: +// 1. Typst does not write labels to PDF StructElem /ID attributes (labels become +// named destinations for links, but not structure element identifiers) +// 2. Even if IDs were present, pdf.js doesn't expose /ID through getStructTree() +export const TextSelectorSchema = z.object({ + text: z.string().optional(), // Text to search for (ignored for role: "Page") + 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) +}); +export type TextSelector = z.infer; + +// Subject/object can be a string or a TextSelector +const SubjectObjectSchema = z.union([z.string(), TextSelectorSchema]); + +// Tag-only assertion: validates semantic role without position comparison +export const TagOnlyAssertionSchema = z.object({ + subject: SubjectObjectSchema, +}).strict(); +export type TagOnlyAssertion = z.infer; + +// Directional assertion: leftOf, rightOf, above, below with optional distance constraints +export const DirectionalAssertionSchema = z.object({ + subject: SubjectObjectSchema, + relation: DirectionalRelationSchema, + object: SubjectObjectSchema, + byMin: z.number().optional(), // Minimum distance between edges + byMax: z.number().optional(), // Maximum distance between edges +}).refine( + (data) => data.byMin === undefined || data.byMax === undefined || data.byMin <= data.byMax, + { message: "byMin must be <= byMax" } +); +export type DirectionalAssertion = z.infer; + +// Alignment assertion: leftAligned, rightAligned, topAligned, bottomAligned with tolerance +export const AlignmentAssertionSchema = z.object({ + subject: SubjectObjectSchema, + relation: AlignmentRelationSchema, + object: SubjectObjectSchema, + tolerance: z.number().optional(), // Default: 2pt +}).strict(); +export type AlignmentAssertion = z.infer; + +// Union of all assertion types +export const PdfTextPositionAssertionSchema = z.union([ + DirectionalAssertionSchema, + AlignmentAssertionSchema, + TagOnlyAssertionSchema, +]); +export type PdfTextPositionAssertion = z.infer; + +// Type guards for assertion discrimination (using Zod safeParse) +export function isDirectionalAssertion(a: unknown): a is DirectionalAssertion { + return DirectionalAssertionSchema.safeParse(a).success; +} + +export function isAlignmentAssertion(a: unknown): a is AlignmentAssertion { + return AlignmentAssertionSchema.safeParse(a).success; +} + +export function isTagOnlyAssertion(a: unknown): a is TagOnlyAssertion { + return TagOnlyAssertionSchema.safeParse(a).success; +} + +// Computed bounding box +interface BBox { + x: number; + y: number; + width: number; + height: number; + page: number; +} + +// Internal: text item with MCID tracking +interface MarkedTextItem { + str: string; + x: number; + y: number; + width: number; + height: number; + mcid: string | null; // e.g., "p2R_mc0" + page: number; +} + +// Structure tree node (from pdfjs-dist) +interface StructTreeNode { + role: string; + children?: (StructTreeNode | StructTreeContent)[]; + alt?: string; + lang?: string; +} + +interface StructTreeContent { + type: "content" | "object" | "annotation"; + id: string; +} + +// Text content item types from pdfjs-dist +interface TextItem { + str: string; + dir: string; + transform: number[]; + width: number; + height: number; + fontName: string; + hasEOL: boolean; +} + +interface TextMarkedContent { + type: "beginMarkedContent" | "beginMarkedContentProps" | "endMarkedContent"; + id?: string; + tag?: string; +} + +// Internal: resolved selector with computed bounds +interface ResolvedSelector { + selector: TextSelector; + textItem: MarkedTextItem; + structNode: StructTreeNode | null; + bbox: BBox; +} + +// ============================================================================ +// Constants +// ============================================================================ + +const DEFAULT_ALIGNMENT_TOLERANCE = 2; + +// ============================================================================ +// Relation Predicates and Edge Logic +// ============================================================================ + +// Coordinate system: origin at top-left, y increases downward + +// Derive relation sets from Zod schemas +const directionalRelations: Set = new Set(DirectionalRelationSchema.options); +const alignmentRelations: Set = new Set(AlignmentRelationSchema.options); + +// Default edges for each relation (from spec table) +const relationDefaults: Record = { + leftOf: { subject: "right", object: "left" }, + rightOf: { subject: "left", object: "right" }, + above: { subject: "bottom", object: "top" }, + below: { subject: "top", object: "bottom" }, + leftAligned: { subject: "left", object: "left" }, + rightAligned: { subject: "right", object: "right" }, + topAligned: { subject: "top", object: "top" }, + bottomAligned: { subject: "bottom", object: "bottom" }, +}; + +// Extract edge value from bbox +function getEdgeValue(bbox: BBox, edge: Edge): number { + switch (edge) { + case "left": + return bbox.x; + case "right": + return bbox.x + bbox.width; + case "top": + return bbox.y; + case "bottom": + return bbox.y + bbox.height; + } +} + +// Evaluate directional relation with edge overrides and distance constraints +interface DirectionalResult { + passed: boolean; + subjectEdge: Edge; + objectEdge: Edge; + subjectValue: number; + objectValue: number; + distance: number; + failureReason?: string; +} + +function evaluateDirectionalRelation( + relation: DirectionalRelation, + subjectBBox: BBox, + objectBBox: BBox, + subjectEdgeOverride?: Edge, + objectEdgeOverride?: Edge, + byMin?: number, + byMax?: number, +): DirectionalResult { + const defaults = relationDefaults[relation]; + const subjectEdge = subjectEdgeOverride ?? defaults.subject; + const objectEdge = objectEdgeOverride ?? defaults.object; + + const subjectValue = getEdgeValue(subjectBBox, subjectEdge); + const objectValue = getEdgeValue(objectBBox, objectEdge); + + // Distance calculation depends on relation direction + // For leftOf/above: distance = objectEdge - subjectEdge (positive when relation holds) + // For rightOf/below: distance = subjectEdge - objectEdge (positive when relation holds) + let distance: number; + let directionPassed: boolean; + + if (relation === "leftOf" || relation === "above") { + distance = objectValue - subjectValue; + directionPassed = subjectValue < objectValue; + } else { + // rightOf or below + distance = subjectValue - objectValue; + directionPassed = subjectValue > objectValue; + } + + const result: DirectionalResult = { + passed: true, + subjectEdge, + objectEdge, + subjectValue, + objectValue, + distance, + }; + + // Check directional constraint + if (!directionPassed) { + result.passed = false; + result.failureReason = "directional constraint not satisfied"; + return result; + } + + // Check byMin constraint + if (byMin !== undefined && distance < byMin) { + result.passed = false; + result.failureReason = `distance ${distance.toFixed(1)}pt < byMin ${byMin}pt`; + return result; + } + + // Check byMax constraint + if (byMax !== undefined && distance > byMax) { + result.passed = false; + result.failureReason = `distance ${distance.toFixed(1)}pt > byMax ${byMax}pt`; + return result; + } + + return result; +} + +// Evaluate alignment relation with edge overrides +interface AlignmentResult { + passed: boolean; + subjectEdge: Edge; + objectEdge: Edge; + subjectValue: number; + objectValue: number; + difference: number; +} + +function evaluateAlignmentRelation( + relation: AlignmentRelation, + subjectBBox: BBox, + objectBBox: BBox, + tolerance: number, + subjectEdgeOverride?: Edge, + objectEdgeOverride?: Edge, +): AlignmentResult { + const defaults = relationDefaults[relation]; + const subjectEdge = subjectEdgeOverride ?? defaults.subject; + const objectEdge = objectEdgeOverride ?? defaults.object; + + const subjectValue = getEdgeValue(subjectBBox, subjectEdge); + const objectValue = getEdgeValue(objectBBox, objectEdge); + const difference = Math.abs(subjectValue - objectValue); + + return { + passed: difference <= tolerance, + subjectEdge, + objectEdge, + subjectValue, + objectValue, + difference, + }; +} + +// ============================================================================ +// Helper Functions +// ============================================================================ + +function normalizeSelector(s: string | TextSelector): TextSelector { + if (typeof s === "string") { + return { text: s }; + } + return s; +} + +function isStructTreeContent(node: StructTreeNode | StructTreeContent): node is StructTreeContent { + return "type" in node && (node.type === "content" || node.type === "object" || node.type === "annotation"); +} + +function isTextItem(item: TextItem | TextMarkedContent): item is TextItem { + return "str" in item && typeof item.str === "string"; +} + +function isTextMarkedContent(item: TextItem | TextMarkedContent): item is TextMarkedContent { + return "type" in item && typeof item.type === "string"; +} + +/** + * Extract MarkedTextItem[] from pdfjs getTextContent result. + * Tracks current MCID as we iterate through interleaved items. + */ +function extractMarkedTextItems( + items: (TextItem | TextMarkedContent)[], + pageNum: number, + pageHeight: number, +): MarkedTextItem[] { + const result: MarkedTextItem[] = []; + let currentMcid: string | null = null; + + for (const item of items) { + if (isTextMarkedContent(item)) { + if (item.type === "beginMarkedContentProps" && item.id) { + currentMcid = item.id; + } else if (item.type === "endMarkedContent") { + currentMcid = null; + } + } else if (isTextItem(item)) { + // Transform: [scaleX, skewX, skewY, scaleY, translateX, translateY] + const tm = item.transform; + const x = tm[4]; + // Convert from PDF coordinates (bottom-left origin) to top-left origin + const y = pageHeight - tm[5]; + const height = Math.sqrt(tm[2] * tm[2] + tm[3] * tm[3]); + + result.push({ + str: item.str, + x, + y, + width: item.width, + height, + mcid: currentMcid, + page: pageNum, + }); + } + } + + return result; +} + +/** + * Recursively build MCID -> StructNode map from structure tree. + * Returns the struct node that directly contains the MCID content. + */ +function buildMcidStructMap( + tree: StructTreeNode | null, + map: Map = new Map(), + parentNode: StructTreeNode | null = null, +): Map { + if (!tree) return map; + + 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); + } + } else { + // Recurse into child struct nodes + buildMcidStructMap(child, map, child); + } + } + + return map; +} + +/** + * Collect only direct MCIDs under a structure node (non-recursive). + * Does not descend into child structure nodes. + */ +function collectDirectMcids(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); + } + } + // Do NOT recurse into child struct nodes + } + + return mcids; +} + +/** + * Check if a string is whitespace-only (including empty). + * Used to filter out horizontal skip spaces in PDF content. + */ +function isWhitespaceOnly(str: string): boolean { + return str.trim().length === 0; +} + +/** + * Compute union bounding box from multiple items. + * Filters out whitespace-only text items to avoid including horizontal skips. + */ +function unionBBox(items: MarkedTextItem[]): BBox | null { + // Filter out whitespace-only items (these are often horizontal skips) + const contentItems = items.filter((item) => !isWhitespaceOnly(item.str)); + if (contentItems.length === 0) return null; + + let minX = Infinity; + let minY = Infinity; + let maxX = -Infinity; + let maxY = -Infinity; + const page = contentItems[0].page; + + for (const item of contentItems) { + minX = Math.min(minX, item.x); + minY = Math.min(minY, item.y); + maxX = Math.max(maxX, item.x + item.width); + maxY = Math.max(maxY, item.y + item.height); + } + + return { + x: minX, + y: minY, + width: maxX - minX, + height: maxY - minY, + page, + }; +} + +/** + * Compute semantic bounding box for a structure node. + * Uses only direct MCIDs (non-recursive) to avoid including nested elements + * like margin content that may be children of body paragraphs. + */ +function computeStructBBox( + node: StructTreeNode, + mcidToTextItems: Map, +): BBox | null { + const mcids = collectDirectMcids(node); + const items = mcids.flatMap((id) => mcidToTextItems.get(id) ?? []); + return unionBBox(items); +} + +// ============================================================================ +// Main Predicate +// ============================================================================ + +/** + * Verify spatial positions of text in a rendered PDF using semantic structure. + * Uses pdfjs-dist to access MCIDs and structure tree. + */ +export const ensurePdfTextPositions = ( + file: string, + assertions: PdfTextPositionAssertion[], + noMatchAssertions?: PdfTextPositionAssertion[], +): Verify => { + return { + name: `Inspecting ${file} for text position assertions`, + verify: async (_output: ExecuteOutput[]) => { + const errors: string[] = []; + + // Internal normalized assertion type for processing + type NormalizedAssertion = { + subject: TextSelector; + relation?: Relation; + object?: TextSelector; + tolerance: number; + byMin?: number; + byMax?: number; + }; + + // Validate and normalize an assertion using Zod + const normalizeAssertion = (a: unknown, index: number): NormalizedAssertion | null => { + // Try parsing as each type in order of specificity + const directionalResult = DirectionalAssertionSchema.safeParse(a); + if (directionalResult.success) { + const d = directionalResult.data; + return { + subject: normalizeSelector(d.subject), + relation: d.relation, + object: normalizeSelector(d.object), + tolerance: DEFAULT_ALIGNMENT_TOLERANCE, + byMin: d.byMin, + byMax: d.byMax, + }; + } + + const alignmentResult = AlignmentAssertionSchema.safeParse(a); + if (alignmentResult.success) { + const al = alignmentResult.data; + return { + subject: normalizeSelector(al.subject), + relation: al.relation, + object: normalizeSelector(al.object), + tolerance: al.tolerance ?? DEFAULT_ALIGNMENT_TOLERANCE, + }; + } + + const tagOnlyResult = TagOnlyAssertionSchema.safeParse(a); + if (tagOnlyResult.success) { + return { + subject: normalizeSelector(tagOnlyResult.data.subject), + tolerance: DEFAULT_ALIGNMENT_TOLERANCE, + }; + } + + // None of the schemas matched - report validation error + const fullResult = PdfTextPositionAssertionSchema.safeParse(a); + if (!fullResult.success) { + const zodErrors = fullResult.error.errors.map(e => `${e.path.join(".")}: ${e.message}`).join("; "); + errors.push(`Assertion ${index + 1} is invalid: ${zodErrors}`); + } + return null; + }; + + // Stage 1: Parse and validate assertions + const normalizedAssertions = assertions + .map((a, i) => normalizeAssertion(a, i)) + .filter((a): a is NormalizedAssertion => a !== null); + + const normalizedNoMatch = noMatchAssertions + ?.map((a, i) => normalizeAssertion(a, i + assertions.length)) + .filter((a): a is NormalizedAssertion => a !== null); + + // Track search texts and their selectors (to know if Decoration role is requested) + // Page role selectors are tracked separately since they don't need text search + const searchTexts = new Set(); + const textToSelectors = new Map(); + const pageSelectors = new Map(); // page number -> selector + + // Helper: check if selector is a Page role (no text search needed) + const isPageRole = (sel: TextSelector): boolean => sel.role === "Page"; + + // Helper: get unique key for a selector (for resolvedSelectors map) + const selectorKey = (sel: TextSelector): string => { + if (isPageRole(sel)) { + return `Page:${sel.page}`; + } + return sel.text ?? ""; + }; + + const addSelector = (sel: TextSelector) => { + if (isPageRole(sel)) { + if (sel.page === undefined) { + errors.push(`Page role requires 'page' field to specify page number`); + return; + } + pageSelectors.set(sel.page, sel); + } else { + if (!sel.text) { + errors.push(`Selector requires 'text' field (unless role is "Page")`); + return; + } + searchTexts.add(sel.text); + const existing = textToSelectors.get(sel.text) ?? []; + existing.push(sel); + textToSelectors.set(sel.text, existing); + } + }; + + for (const a of normalizedAssertions) { + addSelector(a.subject); + if (a.object) addSelector(a.object); + } + for (const a of normalizedNoMatch ?? []) { + addSelector(a.subject); + if (a.object) addSelector(a.object); + } + + // Helper: check if any selector for this text is a Decoration (untagged content) + const isDecoration = (text: string): boolean => { + const selectors = textToSelectors.get(text) ?? []; + return selectors.some((s) => s.role === "Decoration"); + }; + + // Stage 2: Load PDF with pdfjs-dist + // deno-lint-ignore no-explicit-any + const pdfjsLib = await import("pdfjs-dist") as any; + const buffer = await Deno.readFile(file); + const doc = await pdfjsLib.getDocument({ data: buffer }).promise; + + // Stage 3 & 4: Extract content and structure tree per page + const allTextItems: MarkedTextItem[] = []; + const mcidToTextItems = new Map(); + const mcidToStructNode = new Map(); + const pageDimensions = new Map(); + + for (let pageNum = 1; pageNum <= doc.numPages; pageNum++) { + const page = await doc.getPage(pageNum); + const viewport = page.getViewport({ scale: 1.0 }); + + // Store page dimensions for Page role + pageDimensions.set(pageNum, { width: viewport.width, height: viewport.height }); + + // Get text content with marked content + const textContent = await page.getTextContent({ + includeMarkedContent: true, + }); + + const pageItems = extractMarkedTextItems( + textContent.items, + pageNum, + viewport.height, + ); + allTextItems.push(...pageItems); + + // Build MCID -> text items map + for (const item of pageItems) { + if (item.mcid) { + const existing = mcidToTextItems.get(item.mcid) ?? []; + existing.push(item); + mcidToTextItems.set(item.mcid, existing); + } + } + + // Get structure tree and build MCID -> struct node map + const structTree = await page.getStructTree(); + if (structTree) { + buildMcidStructMap(structTree, mcidToStructNode); + } + } + + // Stage 5: Find text items for each search text (must be unique, unless Decoration) + const foundTexts = new Map(); + for (const searchText of searchTexts) { + const matches = allTextItems.filter((t) => t.str.includes(searchText)); + if (matches.length === 1) { + foundTexts.set(searchText, matches[0]); + } else if (matches.length > 1) { + // Decoration role (headers, footers) naturally repeat on each page - allow first match + if (isDecoration(searchText)) { + foundTexts.set(searchText, matches[0]); + } else { + errors.push( + `Text "${searchText}" is ambiguous - found ${matches.length} matches. Use a more specific search string.`, + ); + } + } + // If matches.length === 0, we'll report "not found" later + } + + // Stage 6 & 7: Resolve selectors to structure nodes and compute bboxes + const resolvedSelectors = new Map(); + + // First, resolve Page role selectors (no text search needed) + for (const [pageNum, sel] of pageSelectors) { + const dims = pageDimensions.get(pageNum); + if (!dims) { + errors.push(`Page ${pageNum} does not exist in PDF (has ${pageDimensions.size} pages)`); + continue; + } + const key = selectorKey(sel); + resolvedSelectors.set(key, { + selector: sel, + textItem: { str: "", x: 0, y: 0, width: 0, height: 0, mcid: null, page: pageNum }, + structNode: null, + bbox: { + x: 0, + y: 0, + width: dims.width, + height: dims.height, + page: pageNum, + }, + }); + } + + // Then, resolve text-based selectors + for (const searchText of searchTexts) { + const textItem = foundTexts.get(searchText); + if (!textItem) { + errors.push(`Text not found in PDF: "${searchText}"`); + continue; + } + + let structNode: StructTreeNode | null = null; + let bbox: BBox; + + // Decoration role: use text item bounds directly (for headers, footers, page decorations) + if (isDecoration(searchText)) { + bbox = { + x: textItem.x, + y: textItem.y, + width: textItem.width, + height: textItem.height, + page: textItem.page, + }; + } else if (!textItem.mcid) { + errors.push( + `Text "${searchText}" has no MCID - PDF may not be tagged. Use role: "Decoration" for untagged page elements like headers/footers.`, + ); + continue; + } 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; + } 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 }, + textItem, + structNode, + bbox, + }); + } + + // Validate role assertions (skip Page role since it's a virtual selector) + for (const a of normalizedAssertions) { + if (isPageRole(a.subject)) continue; // Page role has no struct node to validate + + const resolved = resolvedSelectors.get(selectorKey(a.subject)); + if (!resolved) continue; + + if (a.subject.role && resolved.structNode) { + if (resolved.structNode.role !== a.subject.role) { + errors.push( + `Role mismatch for "${a.subject.text}": expected ${a.subject.role}, got ${resolved.structNode.role}`, + ); + } + } + + if (a.object && !isPageRole(a.object)) { + const resolvedObj = resolvedSelectors.get(selectorKey(a.object)); + if (!resolvedObj) continue; + + if (a.object.role && resolvedObj.structNode) { + if (resolvedObj.structNode.role !== a.object.role) { + errors.push( + `Role mismatch for "${a.object.text}": expected ${a.object.role}, got ${resolvedObj.structNode.role}`, + ); + } + } + } + } + + // Stage 8: Evaluate position assertions + // Note: Zod validation in Stage 1 already handles: + // - Unknown relations + // - byMin/byMax with alignment relations (via .strict()) + // - byMin > byMax (via .refine()) + for (const a of normalizedAssertions) { + // Tag-only assertions (no relation/object) + if (!a.relation || !a.object) { + continue; // Already validated in stage 6 + } + + const subjectKey = selectorKey(a.subject); + const objectKey = selectorKey(a.object); + const subjectResolved = resolvedSelectors.get(subjectKey); + const objectResolved = resolvedSelectors.get(objectKey); + + if (!subjectResolved || !objectResolved) { + continue; // Error already recorded + } + + // Check same page + if (subjectResolved.bbox.page !== objectResolved.bbox.page) { + errors.push( + `Cannot compare positions: "${subjectKey}" is on page ${subjectResolved.bbox.page}, ` + + `"${objectKey}" is on page ${objectResolved.bbox.page}`, + ); + continue; + } + + // Evaluate relation based on type (Zod guarantees valid relation type) + const isDirectional = directionalRelations.has(a.relation); + if (isDirectional) { + const result = evaluateDirectionalRelation( + a.relation as DirectionalRelation, + subjectResolved.bbox, + objectResolved.bbox, + a.subject.edge, + a.object.edge, + a.byMin, + a.byMax, + ); + + if (!result.passed) { + const distanceInfo = a.byMin !== undefined || a.byMax !== undefined + ? ` Distance: ${result.distance.toFixed(1)}pt` + + (a.byMin !== undefined ? ` (required >= ${a.byMin}pt)` : "") + + (a.byMax !== undefined ? ` (required <= ${a.byMax}pt)` : "") + : ""; + errors.push( + `Position assertion failed: "${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})` : ""), + ); + } + } else { + // Alignment relation + const result = evaluateAlignmentRelation( + a.relation as AlignmentRelation, + subjectResolved.bbox, + objectResolved.bbox, + a.tolerance, + a.subject.edge, + a.object.edge, + ); + + if (!result.passed) { + errors.push( + `Position assertion failed: "${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)`, + ); + } + } + } + + // Evaluate negative assertions + // Note: Zod validation already handled in Stage 1 + for (const a of normalizedNoMatch ?? []) { + if (!a.relation || !a.object) continue; + + const subjectKey = selectorKey(a.subject); + const objectKey = selectorKey(a.object); + const subjectResolved = resolvedSelectors.get(subjectKey); + const objectResolved = resolvedSelectors.get(objectKey); + + if (!subjectResolved || !objectResolved) { + continue; // Assertion trivially doesn't hold + } + + if (subjectResolved.bbox.page !== objectResolved.bbox.page) { + continue; // Assertion trivially doesn't hold + } + + // Evaluate relation based on type (Zod guarantees valid relation type) + const isDirectional = directionalRelations.has(a.relation); + let passed: boolean; + let resultInfo: string; + + if (isDirectional) { + const result = evaluateDirectionalRelation( + a.relation as DirectionalRelation, + subjectResolved.bbox, + objectResolved.bbox, + a.subject.edge, + a.object.edge, + a.byMin, + a.byMax, + ); + passed = result.passed; + resultInfo = `Subject.${result.subjectEdge}=${result.subjectValue.toFixed(1)}, ` + + `Object.${result.objectEdge}=${result.objectValue.toFixed(1)}, ` + + `distance=${result.distance.toFixed(1)}pt`; + } else { + const result = evaluateAlignmentRelation( + a.relation as AlignmentRelation, + subjectResolved.bbox, + objectResolved.bbox, + a.tolerance, + a.subject.edge, + a.object.edge, + ); + passed = result.passed; + resultInfo = `Subject.${result.subjectEdge}=${result.subjectValue.toFixed(1)}, ` + + `Object.${result.objectEdge}=${result.objectValue.toFixed(1)}, ` + + `difference=${result.difference.toFixed(1)}pt`; + } + + if (passed) { + errors.push( + `Negative assertion failed: "${subjectKey}" IS ${a.relation} "${objectKey}" (expected NOT to be). ` + + resultInfo, + ); + } + } + + // Stage 9: Aggregate errors + if (errors.length > 0) { + assert( + false, + `PDF position assertions failed in ${file}:\n${errors.map((e, i) => ` ${i + 1}. ${e}`).join("\n")}`, + ); + } + }, + }; +}; diff --git a/tests/verify.ts b/tests/verify.ts index a38dbbd01d5..67164e3ac82 100644 --- a/tests/verify.ts +++ b/tests/verify.ts @@ -586,17 +586,23 @@ export const ensureFileRegexMatches = ( // Use this function to Regex match text in the intermediate kept file // FIXME: do this properly without resorting on file having keep-* +// Note: keep-typ/keep-tex places files alongside source, not in output dir export const verifyKeepFileRegexMatches = ( toExt: string, keepExt: string, -): (file: string, matchesUntyped: (string | RegExp)[], noMatchesUntyped?: (string | RegExp)[]) => Verify => { - return (file: string, matchesUntyped: (string | RegExp)[], noMatchesUntyped?: (string | RegExp)[]) => { - const keptFile = file.replace(`.${toExt}`, `.${keepExt}`); +): (file: string, matchesUntyped: (string | RegExp)[], noMatchesUntyped?: (string | RegExp)[], inputFile?: string) => Verify => { + return (file: string, matchesUntyped: (string | RegExp)[], noMatchesUntyped?: (string | RegExp)[], inputFile?: string) => { + // Kept files are alongside source, so derive from inputFile if provided + const keptFile = inputFile + ? join(dirname(inputFile), basename(file).replace(`.${toExt}`, `.${keepExt}`)) + : file.replace(`.${toExt}`, `.${keepExt}`); const keptFileChecker = async (file: string, matches: RegExp[], noMatches: RegExp[] | undefined) => { try { await regexChecker(file, matches, noMatches); } finally { - await safeRemoveSync(file); + if (!Deno.env.get("QUARTO_TEST_KEEP_OUTPUTS")) { + await safeRemoveSync(file); + } } } return verifyFileRegexMatches(keptFileChecker, `Inspecting intermediate ${keptFile} for Regex matches`)(keptFile, matchesUntyped, noMatchesUntyped); @@ -608,8 +614,9 @@ export const ensureTypstFileRegexMatches = ( file: string, matchesUntyped: (string | RegExp)[], noMatchesUntyped?: (string | RegExp)[], + inputFile?: string, ): Verify => { - return(verifyKeepFileRegexMatches("pdf", "typ")(file, matchesUntyped, noMatchesUntyped)); + return(verifyKeepFileRegexMatches("pdf", "typ")(file, matchesUntyped, noMatchesUntyped, inputFile)); }; // FIXME: do this properly without resorting on file having keep-tex @@ -617,8 +624,9 @@ export const ensureLatexFileRegexMatches = ( file: string, matchesUntyped: (string | RegExp)[], noMatchesUntyped?: (string | RegExp)[], + inputFile?: string, ): Verify => { - return(verifyKeepFileRegexMatches("pdf", "tex")(file, matchesUntyped, noMatchesUntyped)); + return(verifyKeepFileRegexMatches("pdf", "tex")(file, matchesUntyped, noMatchesUntyped, inputFile)); }; // Use this function to Regex match text in a rendered PDF file @@ -1143,3 +1151,9 @@ const asRegexp = (m: string | RegExp) => { return m; } }; + +// Re-export ensurePdfTextPositions from dedicated module +export { ensurePdfTextPositions } from "./verify-pdf-text-position.ts"; + +// Re-export ensurePdfMetadata from dedicated module +export { ensurePdfMetadata } from "./verify-pdf-metadata.ts";