2019-08-31 12:33:31 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
2019-09-30 03:19:47 -04:00
|
|
|
|
2019-08-31 12:33:31 -04:00
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
2020-06-28 12:36:05 -04:00
|
|
|
<link rel="stylesheet" href="assets/tree-sitter-playground-0.16.7/style.css" media="screen" type="text/css">
|
2019-08-31 12:33:31 -04:00
|
|
|
<title>Tree-sitter TOML Playground</title>
|
|
|
|
</head>
|
|
|
|
|
2019-09-30 03:19:47 -04:00
|
|
|
<body>
|
|
|
|
<div id="container">
|
|
|
|
<main id="main-content">
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.45.0/codemirror.min.css">
|
2019-08-31 12:33:31 -04:00
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/clusterize.js/0.18.0/clusterize.min.css">
|
2019-09-30 03:19:47 -04:00
|
|
|
<style>
|
|
|
|
.version {
|
|
|
|
font-size: 0.5em;
|
|
|
|
}
|
|
|
|
.credit {
|
|
|
|
font-style: italic;
|
|
|
|
margin-top: 20px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
2020-06-28 12:36:05 -04:00
|
|
|
<h1><a href="https://github.com/ikatyang/tree-sitter-toml">Tree-sitter TOML</a> <span class="version">v0.3.0</span></h1>
|
2019-08-31 12:33:31 -04:00
|
|
|
|
|
|
|
<div id="playground-container" style="visibility: hidden;">
|
|
|
|
|
|
|
|
<h4>Code</h4>
|
|
|
|
<select id="language-select">
|
|
|
|
<option value="toml" selected="selected">TOML</option>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
<input id="logging-checkbox" type="checkbox"></input>
|
|
|
|
<label for="logging-checkbox">Log</label>
|
|
|
|
|
2019-09-30 03:19:47 -04:00
|
|
|
<input id="query-checkbox" type="checkbox"></input>
|
|
|
|
<label for="query-checkbox">Query</label>
|
|
|
|
|
2019-08-31 12:33:31 -04:00
|
|
|
<textarea id="code-input">
|
|
|
|
</textarea>
|
|
|
|
|
2019-09-30 03:19:47 -04:00
|
|
|
<div id="query-container" style="visibility: hidden; position: absolute;">
|
|
|
|
<h4>Query</h4>
|
|
|
|
<textarea id="query-input"></textarea>
|
|
|
|
</div>
|
|
|
|
|
2019-08-31 12:33:31 -04:00
|
|
|
<h4>Tree</h4>
|
|
|
|
<span id="update-time"></span>
|
|
|
|
<div id="output-container-scroll">
|
|
|
|
<pre id="output-container" class="highlight"></pre>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
2019-09-30 03:19:47 -04:00
|
|
|
<div class="credit">
|
|
|
|
This playground was modified from <a href="https://tree-sitter.github.io/tree-sitter/playground">the official Tree-sitter Playground</a>.
|
2019-08-31 12:33:31 -04:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.45.0/codemirror.min.js"></script>
|
|
|
|
|
2020-06-28 12:36:05 -04:00
|
|
|
<script>LANGUAGE_BASE_URL = "assets/tree-sitter-toml-0.3.0";</script>
|
|
|
|
<script src="assets/web-tree-sitter-0.16.7/tree-sitter.js"></script>
|
2019-08-31 12:33:31 -04:00
|
|
|
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/clusterize.js/0.18.0/clusterize.min.js"></script>
|
2020-06-28 12:36:05 -04:00
|
|
|
<script src="assets/tree-sitter-playground-0.16.7/playground.js"></script>
|
2019-09-30 03:19:47 -04:00
|
|
|
|
2019-08-31 12:33:31 -04:00
|
|
|
<script>
|
|
|
|
(codeExample => {
|
|
|
|
const handle = setInterval(() => {
|
|
|
|
const $codeEditor = document.querySelector('.CodeMirror');
|
|
|
|
if ($codeEditor) {
|
|
|
|
$codeEditor.CodeMirror.setValue(codeExample);
|
|
|
|
clearInterval(handle);
|
|
|
|
}
|
|
|
|
}, 500);
|
2019-09-30 03:19:47 -04:00
|
|
|
})(`# This is a TOML document.
|
2019-08-31 12:33:31 -04:00
|
|
|
|
|
|
|
title = "TOML Example"
|
|
|
|
|
|
|
|
[owner]
|
|
|
|
name = "Tom Preston-Werner"
|
|
|
|
dob = 1979-05-27T07:32:00-08:00 # First class dates
|
|
|
|
|
|
|
|
[database]
|
|
|
|
server = "192.168.1.1"
|
|
|
|
ports = [ 8001, 8001, 8002 ]
|
|
|
|
connection_max = 5000
|
2019-08-31 14:11:29 -04:00
|
|
|
enabled = true
|
|
|
|
|
|
|
|
[servers]
|
|
|
|
|
|
|
|
# Indentation (tabs and/or spaces) is allowed but not required
|
|
|
|
[servers.alpha]
|
|
|
|
ip = "10.0.0.1"
|
|
|
|
dc = "eqdc10"
|
|
|
|
|
|
|
|
[servers.beta]
|
|
|
|
ip = "10.0.0.2"
|
|
|
|
dc = "eqdc10"
|
|
|
|
|
|
|
|
[clients]
|
|
|
|
data = [ ["gamma", "delta"], [1, 2] ]
|
|
|
|
|
|
|
|
# Line breaks are OK when inside arrays
|
|
|
|
hosts = [
|
|
|
|
"alpha",
|
|
|
|
"omega"
|
|
|
|
]
|
2019-09-30 03:19:47 -04:00
|
|
|
`);
|
2019-08-31 12:33:31 -04:00
|
|
|
</script>
|
|
|
|
|
2019-09-30 03:19:47 -04:00
|
|
|
</main>
|
|
|
|
</div>
|
2019-08-31 12:33:31 -04:00
|
|
|
</body>
|
|
|
|
</html>
|
2019-09-30 03:19:47 -04:00
|
|
|
|
|
|
|
<script
|
|
|
|
src="https://code.jquery.com/jquery-3.3.1.min.js"
|
|
|
|
crossorigin="anonymous">
|
|
|
|
</script>
|