-
Notifications
You must be signed in to change notification settings - Fork 7
/
demo.qmd
302 lines (209 loc) · 6.42 KB
/
demo.qmd
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
.docname {Quarkdown demo}
.docauthor {iamgio}
.doctype {slides}
.doclang {English}
.theme {darko} layout:{minimal}
.autopagebreak maxdepth:{2}
.footer
.docauthor
**.docname**
[GitHub](https://github.com/iamgio/quarkdown)
.column
!(_x100)[Quarkdown logo](img/banner.svg)
Markdown with superpowers
# Versatile
**One source code, many use cases.**
Export your Quarkdown project as:
.function {poweredby}
credits:
.text {powered by .credits} size:{tiny} variant:{smallcaps}
- .fragment
beautiful slides for your next presentation, just like this one.
.poweredby {[reveal.js](https://revealjs.com/)}
- .fragment
a distinguished book.
.poweredby {[paged.js](https://pagedjs.org/)}
- .fragment
a plain document.
.fragment
.whitespace
*...in just one line, within your code.*
.row gap:{5mm}
```
.doctype {slides}
```
```
.doctype {paged}
```
```
.doctype {plain}
```
# Same foundations...
Quarkdown's base features follow [**CommonMark**](https://spec.commonmark.org/) and [**GitHub Flavored Markdown**](https://github.github.com/gfm/) specifications,
so that you'll feel at home typing code you're comfortable typing.
<!-- Shows the source code of a Quarkdown snippet AND its rendered result with an animation -->
.function {animatedsourceresult}
source:
.fragment
---
.code {markdown}
.source
.fragment
#### ↓
.source
.animatedsourceresult
### Diving into _Quarkdown_
Somebody once said:
> Write once, run **anywhere**.
# ...brand-new everything
Go ahead to discover Quarkdown's capabilities.
# Functions
Call any function from the extensive [standard library](https://github.com/iamgio/quarkdown/tree/main/stdlib/src/main/kotlin/eu/iamgio/quarkdown/stdlib)
from your Markdown code.
```markdown
.somefunction {argument1} {argument2}
Body argument
```
.fragment
Or define your own:
```markdown
.function {greet}
to from:
**Hello, .to** from .from!
.greet {world} from:{Giorgio}
```
.fragment
.text {**Hello, world** from Giorgio!} size:{small}
<!-- Like .animatedsourceresult, but with no animations. -->
.function {sourceresult}
source:
---
.code {markdown}
.source
#### ↓
.source
## Full layout control
.sourceresult
.row alignment:{center} gap:{1cm}
!(150x150)[Quarkdown](img/icon.png)
.column cross:{start}
.text {**Quarkdown is on GitHub!**} size:{large} variant:{smallcaps}
https://github.com/iamgio/quarkdown
## Multi-file project
.sourceresult
.include {sources/other.qmd}
.whitespace
.fragment
> Tip: functions declared in included files are imported as well.
> Use it to your advantage to make awesome libraries!
## File data: code
.sourceresult
The constructor of the class `Point` is as follows:
.code {java}
.read {code/Point.java} lines:{5..8}
## File data: CSV
.sourceresult
.csv {csv/people.csv}
## Math
.sourceresult
.var {radius} {8}
If we try to calculate the **surface** of a circle of **radius .radius**,
we'll find out it's **.multiply {.pow {.radius} to:{2}} by:{.pi}**
## Scripting {#scripting-basic}
.text {Basic algorithm} size:{small}
.sourceresult
.row alignment:{spacearound}
.repeat {10}
n:
.if {.iseven {.n}}
**.n** is even
## Scripting {#scripting-fibonacci}
.text {Fibonacci sequence} size:{small}
.sourceresult
.var {t1} {0}
.var {t2} {1}
.table
.foreach {0..8}
n:
| $ F_{.n} $ |
|:----------:|
| .t1 |
.var {tmp} {.sum {.t1} {.t2}}
.var {t1} {.t2}
.var {t2} {.tmp}
## Document customization
---
.grid columns:{2} gap:{1cm}
**Metadata**
```markdown
.docname {Quarkdown demo}
.docauthor {iamgio}
.doctype {slides}
.doclang {english}
```
**Layout and aesthetics**
```markdown
.theme {darko} layout:{minimal}
.pageformat {A4} orientation:{landscape}
.slides transition:{zoom} speed:{fast}
```
**Fixed content on each page**
```markdown
.footer
.docauthor
**.docname**
[GitHub](https://github.com/iamgio/quarkdown)
```
## Intuitive error handling
.sourceresult
.divide {x} by:{.pi}
.grid columns:{3} alignment:{right}
Hello, world!
# Enhanced base Markdown
**Not just functions.**
The Quarkdown flavor introduces new features to the standard Markdown syntax.
## TeX formulas
.sourceresult
Let $ F(u) $ be the ***Fourier Transform*** of the function $ f(x) $:
$ F(u) = \int^{+\infty}_{-\infty} f(x) e^{-i 2\pi x} dx $
.poweredby {[MathJax](https://www.mathjax.org/)}
## Quote type
.sourceresult
> Note: did you know Quarkdown is a flexible tool to generate modern documents?
> Tip: you might want to try it out. Feedback and suggestions are welcome!
> Warning: it's a young project and some things may change in the near future.
## Quotation source
.sourceresult
> To be, or not to be, that is the question.
> - William Shakespeare, Hamlet
## Image size
.var {sizedimages}
<!-- 200px width, auto height -->
!(200x_)[Quarkdown](img/banner.png)
<!-- 2cm height, auto width -->
!(_x2cm)[Quarkdown](img/banner.png)
<!-- 2 inches width, 100px height -->
!(2in*100)[Quarkdown](img/banner.png)
---
.code {markdown}
.sizedimages
#### ↓
.row alignment:{center} gap:{1cm}
.sizedimages
## Labeled figure
.sourceresult
!(150x_)[Quarkdown](https://iamgio.eu/quarkdown/img/icon-light.png "The Quarkdown icon")
## Color preview
.sourceresult
The color magenta's hexadecimal representation is `#FF00FF`.
The following are equivalent:
- `rgb(255, 0, 255)`
- `hsl(300, 100, 50)`
- `hsv(300, 100, 100)`
# It's a wrap
You've seen the **key features** of Quarkdown - the door to making stunning documents is now open.
The project is [open source](https://github.com/iamgio/quarkdown), still in development and **open to feedback and contributions**!
.box
The **source code** of this presentation is available [**here**](https://github.com/iamgio/quarkdown/tree/main/demo).
Future plans include tutorials, wikis and docs. But for now, happy coding!
.tableofcontents maxdepth:{2}