Skip to content
Snippets Groups Projects
Verified Commit c6e53185 authored by Lars Frost's avatar Lars Frost
Browse files

Fix typo

parent 4413290e
No related branches found
No related tags found
No related merge requests found
......@@ -4,11 +4,11 @@
#let add(s) = todo(inline: true, s)
#let hightlightBgColor = luma(80%)
#let highlightBgColor = luma(80%)
#let path(segments) = {
let e = 0.2em
box(inset: (x: e, y: e), fill: hightlightBgColor, radius: 3pt, baseline: e, {
box(inset: (x: e, y: e), fill: highlightBgColor, radius: 3pt, baseline: e, {
for (idx, s) in segments.enumerate() {
let f = "DejaVu Sans Mono" // I think this is the default mono font. See https://github.com/typst/typst/issues/2870
text(font: f, size: 9pt, s)
......
......@@ -32,7 +32,7 @@ show raw.where(block: false): r => {
// text(font: f, r)
// h(e)
// })
box(inset: (x: e, y: e), fill: hightlightBgColor, radius: 3pt, baseline: e, text(font: f, r))
box(inset: (x: e, y: e), fill: highlightBgColor, radius: 3pt, baseline: e, text(font: f, r))
}
show figure.caption: it => block({
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment