tinymist-query 0.14.16-rc1

Language queries for tinymist.
1
2
3
4
5
6
7
8
9
10
11
12
13
/// Speaker notes are a way to add additional information to your slides that is not visible to the audience. This can be useful for providing additional context or reminders to yourself.
///
/// == Example
///
/// // speaker-note
/// #example(```typ
/// #box[This is a speaker note]
/// ```)
#let speaker-note(mode: "typ", setting: it => it, note) = {
  touying-fn-wrapper(utils.speaker-note, mode: mode, setting: setting, note)
}

#(/* ident after */ speaker-note);