Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/resources/editor/tools/yaml/automation.js
12923 views
1
/*
2
* automation.js
3
*
4
* Entry point for YAML automation in the IDE.
5
*
6
* In build-artifacts, this gets concatenated with the iife bundle of
7
* tree-sitter to make yaml.js.
8
*
9
* Copyright (C) 2021-2022 Posit Software, PBC
10
*
11
*/
12
13
import { QuartoYamlEditorTools } from "./yaml-intelligence.js";
14
15
window.QuartoYamlEditorTools = QuartoYamlEditorTools;
16
17