use fontdock::{FontStyle, FontWeight, FontWidth}; use crate::length::ScaleLength; use super::*; /// `font`: Configure the font. /// /// # Positional arguments /// - The font size (optional, length or relative to previous font size). /// - A font family fallback list (optional, identifiers or strings). /// /// # Keyword arguments /// - `style`: `normal`, `italic` or `oblique`. /// - `weight`: `100` - `900` or a name like `thin`. /// - `width`: `1` - `9` or a name like `condensed`. /// - Any other keyword argument whose value is a table of strings is a class /// fallback definition like: /// ```typst /// serif = ("Source Serif Pro", "Noto Serif") /// ``` pub async fn font(_: Span, mut args: TableValue, ctx: LayoutContext<'_>) -> Pass { let mut f = Feedback::new(); let mut text = ctx.style.text.clone(); let mut updated_fallback = false; let content = args.take::(); if let Some(s) = args.take::() { match s { ScaleLength::Absolute(length) => { text.base_font_size = length.as_raw(); text.font_scale = 1.0; } ScaleLength::Scaled(scale) => text.font_scale = scale, } } let list: Vec<_> = args.take_all_num_vals::() .map(|s| s.to_lowercase()) .collect(); if !list.is_empty() { *text.fallback.list_mut() = list; updated_fallback = true; } if let Some(style) = args.take_key::("style", &mut f) { text.variant.style = style; } if let Some(weight) = args.take_key::("weight", &mut f) { text.variant.weight = weight; } if let Some(width) = args.take_key::("width", &mut f) { text.variant.width = width; } for (class, mut table) in args.take_all_str::() { let fallback = table.take_all_num_vals::() .map(|s| s.to_lowercase()) .collect(); text.fallback.set_class_list(class, fallback); updated_fallback = true; } if updated_fallback { text.fallback.flatten(); } let commands = match content { Some(tree) => vec![ SetTextStyle(text), LayoutSyntaxTree(tree), SetTextStyle(ctx.style.text.clone()), ], None => vec![SetTextStyle(text)], }; args.unexpected(&mut f); Pass::commands(commands, f) }