-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathalgo.typ
1261 lines (1088 loc) · 31.3 KB
/
algo.typ
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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// counter to track the number of algo elements
// used as an id when accessing:
// _algo-comment-lists
#let _algo-id-ckey = "_algo-id"
// state value for storing current comment-prefix passed to algo
#let _algo-comment-prefix = state("_algo-comment-prefix", [])
// state value for storing current comment-styles passed to algo
#let _algo-comment-styles = state("_algo-comment-styles", (:))
// counter to track the number of lines in an algo element
#let _algo-line-ckey = "_algo-line"
// state value to track the current indent level in an algo element
#let _algo-indent-level = state("_algo-indent-level", 0)
// state value to track whether the current context is an algo element
#let _algo-in-algo-context = state("_algo-in-algo-context", false)
// state value for storing algo comments
// dictionary that maps algo ids (as strings) to a dictionary that maps
// line indexes (as strings) to the comment appearing on that line
#let _algo-comment-dicts = state("_algo-comment-dicts", (:))
// list of default keywords that will be highlighted by strong-keywords
#let _algo-default-keywords = (
// branch delimiters
"if",
"else",
"then",
// loop delimiters
"while",
"for",
"repeat",
"do",
"until",
// general delimiters
":",
"end",
// conditional expressions
"and",
"or",
"not",
"in",
// loop conditions
"to",
"down",
// misc
"let",
"return",
"goto",
).map(kw => {
// add uppercase words to list
if kw.starts-with(regex("\w")) {
(kw, str.from-unicode(str.to-unicode(kw.first()) - 32) + kw.slice(1))
} else {
(kw,)
}
}).fold((), (acc, e) => acc + e)
// constants for measuring text height
#let _alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
#let _numerals = "0123456789"
#let _special-characters = "!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~"
#let _alphanumerics = _alphabet + _numerals
#let _ascii = _alphanumerics + _special-characters
// Makes assertion where message is automatically prepended with "algo: ".
//
// Parameters:
// condition: Condition to assert is true.
// message: Message to return if asssertion fails.
#let _algo-assert(condition, message: "") = {
assert(condition, message: "algo: " + message)
}
// Given data about a line in an algo or code, creates the
// indent guides that should appear on that line.
//
// Parameters:
// stroke: Stroke for drawing indent guides.
// offset: Horizontal offset of indent guides.
// indent-level: The indent level on the given line.
// indent-size: The absolute length of a single indent.
// row-height: The absolute height of the containing row of the given line.
// block-inset: The absolute inset of the block containing all the lines.
// Used when determining the length of an indent guide that appears
// on the top or bottom of the block.
// row-gutter: The absolute gap between lines.
// Used when determining the length of an indent guide that appears
// next to other lines.
// is-first-line: Whether the given line is the first line in the block.
// is-last-line: Whether the given line is the last line in the block.
// If so, the length of the indent guide will depend on block-inset.
#let _indent-guides(
stroke,
offset,
indent-level,
indent-size,
row-height,
block-inset,
row-gutter,
is-first-line,
is-last-line,
) = {
let stroke-width = stroke.thickness
// lines are drawn relative to the top left of the bounding box for text
// backset determines how far up the starting point should be moved
let backset = if is-first-line {
0pt
} else {
row-gutter / 2
}
// determine how far the line should extend
let stroke-length = backset + row-height + (
if is-last-line {
calc.min(block-inset / 2, row-height / 4)
} else {
row-gutter / 2
}
)
// draw the indent guide for each indent level on the given line
for j in range(indent-level) {
box(
height: row-height,
width: 0pt,
align(
start + top,
place(
dx: indent-size * j + stroke-width / 2 + 0.5pt + offset,
dy: -backset,
line(
length: stroke-length,
angle: 90deg,
stroke: stroke
)
)
)
)
}
}
// Returns header to be displayed above algorithm content.
//
// Parameters:
// header: Algorithm header. Overrides title and parameters.
// title: Algorithm title. Ignored if header is not none.
// Parameters: Array of parameters. Ignored if header is not none.
#let _build-algo-header(header, title, parameters) = {
if header != none {
header
} else {
set align(start)
if title != none {
set text(1.1em)
if type(title) == str {
underline(smallcaps(title))
} else {
title
}
if parameters.len() == 0 {
$()$
}
}
if parameters != () {
set text(1.1em)
$($
for (i, param) in parameters.enumerate() {
if type(param) == str {
$italic(param)$
} else {
param
}
if i < parameters.len() - 1 {
[, ]
}
}
$)$
}
if title != none or parameters != () {
[:]
}
}
}
// Create indent guides for a given line of an algo element.
// Given the content of the line, calculates size of the content
// and creates indent guides of sufficient length.
//
// Parameters:
// indent-guides: Stroke for drawing indent guides.
// indent-guides-offset: Horizontal offset of indent guides.
// content: The main text that appears on the given line.
// line-index: The 0-based index of the given line.
// num-lines: The total number of lines in the current element.
// indent-level: The indent level at the given line.
// indent-size: The indent size used in the current element.
// block-inset: The inset of the current element.
// row-gutter: The row-gutter of the current element.
// main-text-styles: Dictionary of styling options for the algorithm steps.
// comment-styles: Dictionary of styling options for comment text.
// line-number-styles: Dictionary of styling options for the line numbers.
#let _algo-indent-guides(
indent-guides,
indent-guides-offset,
content,
line-index,
num-lines,
indent-level,
indent-size,
block-inset,
row-gutter,
main-text-styles,
comment-styles,
line-number-styles,
) = context {
let id-str = str(counter(_algo-id-ckey).at(here()).at(0))
let line-index-str = str(line-index)
let comment-dicts = _algo-comment-dicts.final()
let comment-content = comment-dicts.at(id-str, default: (:))
.at(line-index-str, default: [])
// heuristically determine the height of the containing table row
let row-height = calc.max(
// height of main content
measure(
{
set text(..main-text-styles)
_alphanumerics
content
}
).height,
// height of comment
measure(
{
set text(..comment-styles)
comment-content
}
).height,
// height of line numbers
measure(
{
set text(..line-number-styles)
_numerals
}
).height
)
// converting input parameters to absolute lengths
let indent-size-abs = measure(
rect(width: indent-size)
).width
let block-inset-abs = measure(
rect(width: block-inset)
).width
let row-gutter-abs = measure(
rect(width: row-gutter)
).width
let is-first-line = line-index == 0
let is-last-line = line-index == num-lines - 1
// display indent guides at the current line
_indent-guides(
indent-guides,
indent-guides-offset,
indent-level,
indent-size-abs,
row-height,
block-inset-abs,
row-gutter-abs,
is-first-line,
is-last-line
)
}
// Returns list of content values, where each element is
// a line from the algo body
//
// Parameters:
// body: Algorithm content.
#let _get-algo-lines(body) = {
if not body.has("children") {
return ()
}
// concatenate consecutive non-whitespace elements
// i.e. just combine everything that definitely aren't on separate lines
let text-and-whitespaces = {
let joined-children = ()
let temp = []
for child in body.children {
if (
child == [ ]
or child == linebreak()
or child == parbreak()
){
if temp != [] {
joined-children.push(temp)
temp = []
}
joined-children.push(child)
} else {
temp += child
}
}
if temp != [] {
joined-children.push(temp)
}
joined-children
}
// filter out non-meaningful whitespace elements
let text-and-breaks = text-and-whitespaces.filter(
elem => elem != [ ] and elem != parbreak()
)
// handling meaningful whitespace
// make final list of empty and non-empty lines
let lines = {
let joined-lines = ()
let line-parts = []
let num-linebreaks = 0
for elem in text-and-breaks {
if elem == linebreak() {
if line-parts != [] {
joined-lines.push(line-parts)
line-parts = []
}
num-linebreaks += 1
if num-linebreaks > 1 {
joined-lines.push([])
}
} else {
line-parts += [#elem ]
num-linebreaks = 0
}
}
if line-parts != [] {
joined-lines.push(line-parts)
}
joined-lines
}
return lines
}
// Returns list of algorithm lines with strongly emphasized keywords,
// correct indentation, and indent guides.
//
// Parameters:
// lines: List of algorithm lines from _get-algo-lines().
// strong-keywords: Whether to have bold keywords.
// keywords: List of terms to receive strong emphasis if
// strong-keywords is true.
// indent-size: Size of line indentations.
// indent-guides: Stroke for indent guides.
// indent-guides-offset: Horizontal offset of indent guides.
// inset: Inner padding.
// row-gutter: Space between lines.
// main-text-styles: Dictionary of styling options for the algorithm steps.
// comment-styles: Dictionary of styling options for comment text.
// line-number-styles: Dictionary of styling options for the line numbers.
#let _build-formatted-algo-lines(
lines,
strong-keywords,
keywords,
indent-size,
indent-guides,
indent-guides-offset,
inset,
row-gutter,
main-text-styles,
comment-styles,
line-number-styles
) = {
// regex for detecting keywords
let keyword-regex = "\b{start}(?:"
for kw in keywords {
keyword-regex += kw.trim() + "|"
}
keyword-regex = keyword-regex.replace(regex("\|$"), "")
keyword-regex += ")\b{end}"
let formatted-lines = ()
for (i, line) in lines.enumerate() {
let formatted-line = {
// bold keywords
show regex(keyword-regex): it => {
if strong-keywords {
strong(it)
} else {
it
}
}
context {
let indent-level = _algo-indent-level.get()
if indent-guides != none {
_algo-indent-guides(
indent-guides,
indent-guides-offset,
line,
i,
lines.len(),
indent-level,
indent-size,
inset,
row-gutter,
main-text-styles,
comment-styles,
line-number-styles
)
}
box(pad(
left: indent-size * indent-level,
line
))
}
counter(_algo-line-ckey).step()
}
formatted-lines.push(formatted-line)
}
return formatted-lines
}
// Layouts algo content in a table.
//
// Parameters:
// formatted-lines: List of formatted algorithm lines.
// line-numbers: Whether to have line numbers.
// comment-prefix: Content to prepend comments with.
// row-gutter: Space between lines.
// column-gutter: Space between line numbers, text, and comments.
// main-text-styles: Dictionary of styling options for the algorithm steps.
// comment-styles: Dictionary of styling options for comment text.
// line-number-styles: Dictionary of styling options for the line numbers.
#let _build-algo-table(
formatted-lines,
line-numbers,
comment-prefix,
row-gutter,
column-gutter,
main-text-styles,
comment-styles,
line-number-styles,
) = context {
let id-str = str(counter(_algo-id-ckey).at(here()).at(0))
let comment-dicts = _algo-comment-dicts.final()
let has-comments = id-str in comment-dicts
let comment-contents = if has-comments {
let comments = comment-dicts.at(id-str)
range(formatted-lines.len()).map(i => {
let index-str = str(i)
if index-str in comments {
comments.at(index-str)
} else {
none
}
})
} else {
none
}
let num-columns = 1 + int(line-numbers) + int(has-comments)
let align-func = {
let alignments = ()
if line-numbers {
alignments.push(right + horizon)
}
alignments.push(left + bottom)
if has-comments {
alignments.push(left + bottom)
}
(x, _) => alignments.at(x)
}
let table-data = ()
for (i, line) in formatted-lines.enumerate() {
if line-numbers {
let line-number = i + 1
table-data.push({
set text(..line-number-styles)
str(line-number)
})
}
table-data.push({
set text(..main-text-styles)
line
})
if has-comments {
if comment-contents.at(i) == none {
table-data.push([])
} else {
table-data.push({
set text(..comment-styles)
comment-prefix
comment-contents.at(i)
})
}
}
}
table(
columns: num-columns,
row-gutter: row-gutter,
column-gutter: column-gutter,
align: align-func,
stroke: none,
inset: 0pt,
..table-data
)
}
// Asserts that the current context is an algo element.
// Returns the provided message if the assertion fails.
#let _assert-in-algo(message) = context {
let is-in-algo = _algo-in-algo-context.get()
_algo-assert(is-in-algo, message: message)
}
// Increases indent in an algo element.
// All uses of #i within a line will be
// applied to the next line.
#let i = {
_assert-in-algo("cannot use #i outside an algo element")
_algo-indent-level.update(n => n + 1)
}
// Decreases indent in an algo element.
// All uses of #d within a line will be
// applied to the next line.
#let d = {
_assert-in-algo("cannot use #d outside an algo element")
context {
let n = _algo-indent-level.get()
_algo-assert(n - 1 >= 0, message: "dedented too much")
}
_algo-indent-level.update(n => n - 1)
}
// Prevents internal content from being strongly emphasized.
//
// Parameters:
// body: Content.
#let no-emph(body) = {
_assert-in-algo("cannot use #no-emph outside an algo element")
set strong(delta: 0)
body
}
// Adds a comment to a line in an algo body.
//
// Parameters:
// body: Comment content.
// inline: Whether the comment should be displayed in place.
#let comment(
body,
inline: false,
) = {
_assert-in-algo("cannot use #comment outside an algo element")
context {
if inline {
let comment-prefix = _algo-comment-prefix.get()
let comment-styles = _algo-comment-styles.get()
set text(..comment-styles)
comment-prefix
no-emph(body)
} else {
let id-str = str(counter(_algo-id-ckey).at(here()).at(0))
let line-index-str = str(counter(_algo-line-ckey).at(here()).at(0))
_algo-comment-dicts.update(comment-dicts => {
let comments = comment-dicts.at(id-str, default: (:))
let ongoing-comment = comments.at(line-index-str, default: [])
let comment-content = ongoing-comment + body
comments.insert(line-index-str, comment-content)
comment-dicts.insert(id-str, comments)
comment-dicts
})
}
}
}
// Displays an algorithm in a block element.
//
// Parameters:
// body: Algorithm content.
// header: Algorithm header. Overrides title and parameters.
// title: Algorithm title. Ignored if header is not none.
// Parameters: Array of parameters. Ignored if header is not none.
// line-numbers: Whether to have line numbers.
// strong-keywords: Whether to have bold keywords.
// keywords: List of terms to receive strong emphasis if
// strong-keywords is true.
// comment-prefix: Content to prepend comments with.
// indent-size: Size of line indentations.
// indent-guides: Stroke for indent guides.
// indent-guides-offset: Horizontal offset of indent guides.
// row-gutter: Space between lines.
// column-gutter: Space between line numbers and text.
// inset: Inner padding.
// fill: Fill color.
// stroke: Border stroke.
// radius: Corner radius.
// breakable: Whether the element should be breakable across pages.
// Warning: indent guides may look off when broken across pages.
// block-align: Alignment of block. Use none for no alignment.
// main-text-styles: Dictionary of styling options for the algorithm steps.
// Supports any parameter in Typst's native text function.
// comment-styles: Dictionary of styling options for comment text.
// Supports any parameter in Typst's native text function.
// line-number-styles: Dictionary of styling options for the line numbers.
// Supports any parameter in Typst's native text function.
#let algo(
body,
header: none,
title: none,
parameters: (),
line-numbers: true,
strong-keywords: true,
keywords: _algo-default-keywords,
comment-prefix: "// ",
indent-size: 20pt,
indent-guides: none,
indent-guides-offset: 0pt,
row-gutter: 10pt,
column-gutter: 10pt,
inset: 10pt,
fill: rgb(98%, 98%, 98%),
stroke: 1pt + rgb(50%, 50%, 50%),
radius: 0pt,
breakable: false,
block-align: center,
main-text-styles: (:),
comment-styles: ("fill": rgb(45%, 45%, 45%)),
line-number-styles: (:),
) = {
counter(_algo-id-ckey).step()
counter(_algo-line-ckey).update(0)
_algo-comment-prefix.update(comment-prefix)
_algo-comment-styles.update(comment-styles)
_algo-indent-level.update(0)
_algo-in-algo-context.update(true)
let algo-header = _build-algo-header(header, title, parameters)
let lines = _get-algo-lines(body)
let formatted-lines = _build-formatted-algo-lines(
lines,
strong-keywords,
keywords,
indent-size,
indent-guides,
indent-guides-offset,
inset,
row-gutter,
main-text-styles,
comment-styles,
line-number-styles,
)
let algo-table = _build-algo-table(
formatted-lines,
line-numbers,
comment-prefix,
row-gutter,
column-gutter,
main-text-styles,
comment-styles,
line-number-styles,
)
let algo-block = block(
width: auto,
height: auto,
fill: fill,
stroke: stroke,
radius: radius,
inset: inset,
outset: 0pt,
breakable: breakable
)[
#set align(start + top)
#algo-header
#v(weak: true, row-gutter)
#align(left, algo-table)
]
// display content
set par(justify: false)
if block-align != none {
align(block-align, algo-block)
} else {
algo-block
}
_algo-in-algo-context.update(false)
}
// Returns tuple of lengths:
// - height of text (baseline to cap-height)
// - height of ascenders
// - height of descenders
//
// Parameters:
// main-text-styles: Dictionary of styling options for the source code.
#let _get-code-text-height(
main-text-styles
) = {
let styled-ascii = {
show raw: set text(..main-text-styles)
raw(_ascii)
}
let text-height = measure({
show raw: set text(top-edge: "cap-height", bottom-edge: "baseline")
styled-ascii
}).height
let text-and-ascender-height = measure({
show raw: set text(top-edge: "ascender", bottom-edge: "baseline")
styled-ascii
}).height
let text-and-descender-height = measure({
show raw: set text(top-edge: "cap-height", bottom-edge: "descender")
styled-ascii
}).height
return (
text-height,
text-and-ascender-height - text-height,
text-and-descender-height - text-height,
)
}
// Determines tab size being used by the given text.
// Searches for the first line that starts with whitespace and
// returns the number of spaces the line starts with. If no
// such line is found, -1 is returned.
//
// Parameters:
// line-strs: Array of strings, where each string is a line from the
// provided raw text.
#let _get-code-tab-size(line-strs) = {
for line in line-strs {
let starting-whitespace = line.replace(regex("\t"), "").find(regex("^ +"))
if starting-whitespace != none {
return starting-whitespace.len()
}
}
return -1
}
// Determines the indent level at each line of the given text.
// Returns a list of integers, where the ith integer is the indent
// level of the ith line.
//
// Parameters:
// line-strs: Array of strings, where each string is a line from the
// provided raw text.
// tab-size: tab-size used by the given code
#let _get-code-indent-levels(line-strs, tab-size) = {
line-strs.map(line => {
let starting-whitespace = line.replace(regex("\t"), "").find(regex("^ +"))
if starting-whitespace == none {
0
} else {
calc.floor(starting-whitespace.len() / tab-size)
}
})
}
// Returns list of tuples, where the ith tuple contains:
// - a list of boxed clips of each line-wrapped component of the ith line
// - an integer indicating the indent level of the ith line
//
// Parameters:
// raw-text: Raw text block.
// line-numbers: Whether there are line numbers.
// column-gutter: Space between line numbers and text.
// inset: Inner padding of containing block.
// main-text-styles: Dictionary of styling options for the source code.
// line-number-styles: Dictionary of styling options for the line numbers.
// text-height: Height of raw text, baseline to cap-height.
// ascender-height: Height of raw text ascenders.
// descender-height: Height of raw text descenders.
// indent-levels: List of integers indicating indent levels of each line.
// container-size: Size of the outer container.
// styles: Active styles.
#let _get-code-line-data(
raw-text,
line-numbers,
column-gutter,
inset,
main-text-styles,
line-number-styles,
text-height,
ascender-height,
descender-height,
indent-levels,
container-size
) = {
let line-spacing = 100pt
let line-strs = raw-text.text.split("\n")
let num-lines = line-strs.len()
let container-width = container-size.width
let line-number-col-width = measure({
set text(..line-number-styles)
"0" * (calc.floor(calc.log(num-lines)) + 1)
}).width
let max-text-area-width = (
container-size.width - inset * 2 - if line-numbers {
(column-gutter + line-number-col-width)
} else {
0pt
}
)
let max-text-width = measure({
show raw: set text(..main-text-styles)
raw-text
}).width
let real-text-width = calc.min(max-text-width, max-text-area-width)
let styled-raw-text = {
show raw: set text(..main-text-styles)
set par(leading: line-spacing)
block(width: real-text-width, raw-text)
}
let line-data = ()
let line-count = 0
for i in range(num-lines) {
let indent-level = indent-levels.at(i)
let line-width = measure({
show raw: set text(..main-text-styles)
raw(line-strs.at(i))
}).width
let line-wrapped-components = ()
for j in range(calc.max(1, calc.ceil(line-width / real-text-width))) {
let is-wrapped = j > 0
let real-indent-level = if is-wrapped {0} else {indent-level}
let line-clip = {
set align(start + top)
box(move(
dy: descender-height * 0.5,
box(
width: real-text-width,
height: text-height + ascender-height + descender-height,
clip: true,
move(
dy: -((text-height+line-spacing) * line-count) + ascender-height,
styled-raw-text
)
)
))
}
line-wrapped-components.push(line-clip)
line-count += 1
}
line-data.push((line-wrapped-components, indent-level))
}
return line-data
}
// Create indent guides for a given line of a code element.
// Given the content of the line, calculates size of the content
// and creates indent guides of sufficient length.
//
// Parameters:
// indent-guides: Stroke for drawing indent guides.
// indent-guides-offset: Horizontal offset of indent guides.
// content: The main content that appears on the given line.
// line-index: The 0-based index of the given line.
// num-lines: The total number of lines in the current element.
// indent-level: The indent level at the given line.
// tab-size: Amount of spaces that should be considered an indent.
// block-inset: The inset of the current element.
// row-gutter: The row-gutter of the current element.
// main-text-styles: Dictionary of styling options for the source code.
// Supports any parameter in Typst's native text function.
// line-number-styles: Dictionary of styling options for the line numbers.
// Supports any parameter in Typst's native text function.
#let _code-indent-guides(
indent-guides,
indent-guides-offset,
content,
line-index,
num-lines,
indent-level,
tab-size,
block-inset,
row-gutter,
main-text-styles,
line-number-styles,
) = {
// heuristically determine the height of the row
let row-height = calc.max(
// height of content
measure(content).height,
// height of raw text
measure({
show raw: set text(..main-text-styles)
raw(_ascii)
}).height,
// height of line numbers
measure({
set text(..line-number-styles)