forked from posit-dev/ggsql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_quarto.yml
More file actions
157 lines (155 loc) · 4.81 KB
/
_quarto.yml
File metadata and controls
157 lines (155 loc) · 4.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
project:
type: website
resources:
- wasm/**
website:
title: "ggsql"
description: |
The home of ggsql. A declarative visualisation language build on top of SQL
and the grammar of graphics.
site-url: https://ggsql.org
repo-url: https://github.com/posit-dev/ggsql
issue-url: https://github.com/posit-dev/ggsql/issues
repo-branch: gh-pages
image: assets/logo.png
image-alt: |
The ggsql logo showing a pencil tracing a lineplot with points. The pencil
handle is made up of the classic database silo icon and is coloured in a
gradient teal.
announcement:
icon: info-circle
dismissable: true
content: "ggsql is still in early development and all functionality is subject to change"
type: primary
position: below-navbar
twitter-card:
card-style: summary
open-graph: true
search:
keyboard-shortcut: []
navbar:
left:
- text: Get started
href: get_started/installation.qmd
- text: Syntax
menu:
- text: Overview
href: syntax/index.qmd
- text: "---"
- text: "`VISUALISE`"
href: syntax/clause/visualise.qmd
- text: "`DRAW`"
href: syntax/clause/draw.qmd
- text: "`PLACE`"
href: syntax/clause/place.qmd
- text: "`SCALE`"
href: syntax/clause/scale.qmd
- text: "`FACET`"
href: syntax/clause/facet.qmd
- text: "`PROJECT`"
href: syntax/clause/project.qmd
- text: "`LABEL`"
href: syntax/clause/label.qmd
- text: Gallery
href: gallery/index.qmd
- href: faq.qmd
text: FAQ
right:
- text: Playground
href: wasm/index.html
tools:
- icon: github
menu:
- text: Source Code
href: https://github.com/ggsql-dev/ggsql
- text: Report a Bug
href: https://github.com/ggsql-dev/ggsql/issues
sidebar:
- id: syntax
title: Syntax
style: "floating"
search: true
logo: false
contents:
- text: Overview
href: syntax/index.qmd
- section: "Main clauses"
contents:
- text: "`VISUALISE`"
href: syntax/clause/visualise.qmd
- text: "`DRAW`"
href: syntax/clause/draw.qmd
- text: "`PLACE`"
href: syntax/clause/place.qmd
- text: "`SCALE`"
href: syntax/clause/scale.qmd
- text: "`FACET`"
href: syntax/clause/facet.qmd
- text: "`PROJECT`"
href: syntax/clause/project.qmd
- text: "`LABEL`"
href: syntax/clause/label.qmd
- section: Layers
contents:
- section: Types
contents:
- auto: syntax/layer/type/*
- section: Position adjustment
contents:
- auto: syntax/layer/position/*
- section: Scales
contents:
- section: Types
contents:
- auto: syntax/scale/type/*
- section: Aesthetics
contents:
- auto: syntax/scale/aesthetic/*
- section: Coordinate systems
contents:
- auto: syntax/coord/*
- id: get_started
title: Get started
style: "floating"
search: false
logo: false
contents:
- text: Installation
href: get_started/installation.qmd
- text: The first plot
href: get_started/first_plot.qmd
- text: Grammar of graphics
href: get_started/grammar.qmd
format:
html:
lightbox: auto
highlight-style: pygments
syntax-definitions:
- ggsql.xml
theme:
- cosmo
- brand
- styles.scss
toc: true
include-in-header:
- text: |
<script src="https://cdn.jsdelivr.net/gh/posit-dev/supported-by-posit/js/badge.min.js"
data-light-bg="#94D2BD"
data-dark-bg="#001219"></script>
<!-- Privacy-friendly analytics by Plausible -->
<script async src="https://plausible.io/js/pa-eH2pS73nQmBLURrhxXgML.js"></script>
<script>
window.plausible=window.plausible||function(){(plausible.q=plausible.q||[]).push(arguments)},plausible.init=plausible.init||function(i){plausible.o=i||{}};
plausible.init()
</script>
include-after-body:
- text: |
<script type="module">
const offset = document.querySelector('meta[name="quarto:offset"]')?.content || './';
const base = offset + 'wasm/';
const link = document.createElement('link');
link.rel = 'stylesheet';
link.href = base + 'quarto.css';
document.head.appendChild(link);
import(base + 'quarto.js');
</script>