repo
stringlengths
6
65
file_url
stringlengths
81
311
file_path
stringlengths
6
227
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:31:58
2026-01-04 20:25:31
truncated
bool
2 classes
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-macros/src/scope.rs
crates/typst-macros/src/scope.rs
use heck::ToKebabCase; use proc_macro2::TokenStream; use quote::quote; use syn::parse::{Parse, ParseStream}; use syn::punctuated::Punctuated; use syn::{MetaNameValue, Result, Token, parse_quote}; use crate::util::{BareType, foundations, kw, parse_flag}; /// Expand the `#[scope]` macro. pub fn scope(stream: TokenStrea...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-macros/src/cast.rs
crates/typst-macros/src/cast.rs
use heck::ToKebabCase; use proc_macro2::TokenStream; use quote::quote; use syn::parse::{Parse, ParseStream}; use syn::punctuated::Punctuated; use syn::{DeriveInput, Ident, Result, Token}; use crate::util::{documentation, foundations}; /// Expand the `#[derive(Cast)]` macro. pub fn derive_cast(item: DeriveInput) -> Re...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-macros/src/ty.rs
crates/typst-macros/src/ty.rs
use proc_macro2::TokenStream; use quote::quote; use syn::parse::{Parse, ParseStream}; use syn::{Attribute, Ident, Result}; use crate::util::{ BareType, determine_name_and_title, documentation, foundations, kw, parse_flag, parse_string, parse_string_array, }; /// Expand the `#[ty]` macro. pub fn ty(stream: Tok...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-timing/src/lib.rs
crates/typst-timing/src/lib.rs
//! Performance timing for Typst. use std::io::Write; use std::num::NonZeroU64; use std::sync::atomic::{AtomicBool, AtomicU64, Ordering}; use parking_lot::Mutex; use serde::ser::SerializeSeq; use serde::{Serialize, Serializer}; /// Creates a timing scope around an expression. /// /// The output of the expression is ...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-render/src/paint.rs
crates/typst-render/src/paint.rs
use std::sync::Arc; use tiny_skia as sk; use typst_library::layout::{Axes, Point, Ratio, Size}; use typst_library::visualize::{Color, Gradient, Paint, RelativeTo, Tiling}; use crate::{AbsExt, State}; /// Trait for sampling of a paint, used as a generic /// abstraction over solid colors and gradients. pub trait Paint...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-render/src/shape.rs
crates/typst-render/src/shape.rs
use tiny_skia as sk; use typst_library::layout::{Abs, Axes, Point, Ratio, Size}; use typst_library::visualize::{ Curve, CurveItem, DashPattern, FillRule, FixedStroke, Geometry, LineCap, LineJoin, Shape, }; use crate::{AbsExt, State, paint}; /// Render a geometrical shape into the canvas. pub fn render_shape(c...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-render/src/lib.rs
crates/typst-render/src/lib.rs
//! Rendering of Typst documents into raster images. mod image; mod paint; mod shape; mod text; use tiny_skia as sk; use typst_library::layout::{ Abs, Axes, Frame, FrameItem, FrameKind, GroupItem, Page, PagedDocument, Point, Size, Transform, }; use typst_library::visualize::{Color, Geometry, Paint}; /// Expo...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-render/src/image.rs
crates/typst-render/src/image.rs
use hayro::{FontData, FontQuery, InterpreterSettings, RenderSettings, StandardFont}; use image::imageops::FilterType; use image::{GenericImageView, Rgba}; use std::sync::Arc; use tiny_skia as sk; use tiny_skia::IntSize; use typst_library::foundations::Smart; use typst_library::layout::Size; use typst_library::visualize...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-render/src/text.rs
crates/typst-render/src/text.rs
use std::sync::Arc; use pixglyph::Bitmap; use tiny_skia as sk; use ttf_parser::{GlyphId, OutlineBuilder}; use typst_library::layout::{Abs, Axes, Point, Size}; use typst_library::text::color::{glyph_frame, should_outline}; use typst_library::text::{Font, TextItem}; use typst_library::visualize::{FixedStroke, Paint}; u...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-syntax/src/lexer.rs
crates/typst-syntax/src/lexer.rs
use std::num::IntErrorKind; use ecow::{EcoString, eco_format}; use typst_utils::default_math_class; use unicode_ident::{is_xid_continue, is_xid_start}; use unicode_math_class::MathClass; use unicode_script::{Script, UnicodeScript}; use unicode_segmentation::UnicodeSegmentation; use unscanny::Scanner; use crate::{Synt...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
true
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-syntax/src/ast.rs
crates/typst-syntax/src/ast.rs
/*! # Abstract Syntax Tree Interface Typst's Abstract Syntax Tree (AST) is a lazy, typed view over the untyped Concrete Syntax Tree (CST) and is rooted in the [`Markup`] node. ## The AST is a View Most AST nodes are wrapper structs around [`SyntaxNode`] pointers. This summary will use a running example of the [`Raw`...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
true
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-syntax/src/node.rs
crates/typst-syntax/src/node.rs
use std::fmt::{self, Debug, Display, Formatter}; use std::ops::{Deref, Range}; use std::rc::Rc; use std::sync::Arc; use ecow::{EcoString, EcoVec, eco_format, eco_vec}; use crate::{FileId, Span, SyntaxKind}; /// A node in the untyped syntax tree. #[derive(Clone, Eq, PartialEq, Hash)] pub struct SyntaxNode(NodeKind); ...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
true
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-syntax/src/path.rs
crates/typst-syntax/src/path.rs
use std::fmt::{self, Debug, Display, Formatter}; use std::path::{Component, Path, PathBuf}; /// An absolute path in the virtual file system of a project or package. #[derive(Clone, Eq, PartialEq, Ord, PartialOrd, Hash)] pub struct VirtualPath(PathBuf); impl VirtualPath { /// Create a new virtual path. /// ...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-syntax/src/source.rs
crates/typst-syntax/src/source.rs
//! Source file management. use std::fmt::{self, Debug, Formatter}; use std::hash::{Hash, Hasher}; use std::ops::Range; use std::sync::Arc; use typst_utils::LazyHash; use crate::lines::Lines; use crate::reparser::reparse; use crate::{FileId, LinkedNode, Span, SyntaxNode, VirtualPath, parse}; /// A source file. /// ...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-syntax/src/lib.rs
crates/typst-syntax/src/lib.rs
//! Parser and syntax tree for Typst. pub mod ast; pub mod package; mod file; mod highlight; mod kind; mod lexer; mod lines; mod node; mod parser; mod path; mod reparser; mod set; mod source; mod span; pub use self::file::FileId; pub use self::highlight::{Tag, highlight, highlight_html}; pub use self::kind::SyntaxKi...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-syntax/src/highlight.rs
crates/typst-syntax/src/highlight.rs
use crate::{LinkedNode, SyntaxKind, SyntaxNode, ast}; /// A syntax highlighting tag. #[derive(Debug, Copy, Clone, Eq, PartialEq, Hash)] pub enum Tag { /// A line or block comment. Comment, /// Punctuation in code. Punctuation, /// An escape sequence or shorthand. Escape, /// Strong markup. ...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-syntax/src/parser.rs
crates/typst-syntax/src/parser.rs
use std::mem; use std::ops::{DerefMut, Index, IndexMut, Range}; use ecow::{EcoString, eco_format}; use rustc_hash::{FxHashMap, FxHashSet}; use typst_utils::{default_math_class, defer}; use unicode_math_class::MathClass; use crate::set::{SyntaxSet, syntax_set}; use crate::{Lexer, SyntaxError, SyntaxKind, SyntaxMode, S...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
true
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-syntax/src/kind.rs
crates/typst-syntax/src/kind.rs
/// A syntactical building block of a Typst file. /// /// Can be created by the lexer or by the parser. #[derive(Debug, Copy, Clone, Eq, PartialEq, Hash)] #[repr(u8)] pub enum SyntaxKind { /// The end of token stream. End, /// An invalid sequence of characters. Error, /// A shebang: `#! ...` Sh...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-syntax/src/file.rs
crates/typst-syntax/src/file.rs
//! File and package management. use std::fmt::{self, Debug, Formatter}; use std::num::NonZeroU16; use std::sync::{LazyLock, RwLock}; use rustc_hash::FxHashMap; use crate::VirtualPath; use crate::package::PackageSpec; /// The global package-path interner. static INTERNER: LazyLock<RwLock<Interner>> = LazyLock::new(...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-syntax/src/span.rs
crates/typst-syntax/src/span.rs
use std::fmt::{self, Debug, Formatter}; use std::num::{NonZeroU16, NonZeroU64}; use std::ops::Range; use ecow::EcoString; use crate::FileId; /// Defines a range in a file. /// /// This is used throughout the compiler to track which source section an /// element stems from or an error applies to. /// /// - The [`.id(...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-syntax/src/lines.rs
crates/typst-syntax/src/lines.rs
use std::hash::{Hash, Hasher}; use std::iter::zip; use std::ops::Range; use std::sync::Arc; use crate::is_newline; /// A text buffer and metadata about lines. /// /// This is internally reference-counted and thus cheap to clone. #[derive(Clone)] pub struct Lines<S>(Arc<LinesInner<S>>); /// The internal representatio...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-syntax/src/reparser.rs
crates/typst-syntax/src/reparser.rs
use std::ops::Range; use crate::{ Span, SyntaxKind, SyntaxNode, is_newline, parse, reparse_block, reparse_markup, }; /// Refresh the given syntax node with as little parsing as possible. /// /// Takes the new text, the range in the old text that was replaced and the /// length of the replacement and returns the r...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-syntax/src/package.rs
crates/typst-syntax/src/package.rs
//! Package manifest parsing. use std::collections::BTreeMap; use std::fmt::{self, Debug, Display, Formatter}; use std::str::FromStr; use ecow::{EcoString, eco_format}; use serde::de::IgnoredAny; use serde::{Deserialize, Deserializer, Serialize, Serializer}; use unscanny::Scanner; use crate::is_ident; /// A type al...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-syntax/src/set.rs
crates/typst-syntax/src/set.rs
// Acknowledgement: // Based on rust-analyzer's `TokenSet`. // https://github.com/rust-lang/rust-analyzer/blob/master/crates/parser/src/token_set.rs use crate::SyntaxKind; /// A set of syntax kinds. #[derive(Default, Copy, Clone)] pub struct SyntaxSet(u128); impl SyntaxSet { /// Create a new empty set. pub c...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-html/src/charsets.rs
crates/typst-html/src/charsets.rs
//! Defines syntactical properties of HTML tags, attributes, and text. /// Check whether a character is in a tag name. pub const fn is_valid_in_tag_name(c: char) -> bool { c.is_ascii_alphanumeric() } /// Check whether a character is valid in an attribute name. pub const fn is_valid_in_attribute_name(c: char) -> b...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-html/src/css.rs
crates/typst-html/src/css.rs
//! Conversion from Typst data types into CSS data types. use std::fmt::{self, Display, Write}; use ecow::EcoString; use typst_library::layout::{Length, Rel}; use typst_library::visualize::{Color, Hsl, LinearRgb, Oklab, Oklch, Rgb}; use typst_utils::Numeric; /// A list of CSS properties with values. #[derive(Debug, ...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-html/src/link.rs
crates/typst-html/src/link.rs
use std::collections::VecDeque; use ecow::{EcoString, EcoVec, eco_format, eco_vec}; use rustc_hash::{FxHashMap, FxHashSet}; use typst_library::foundations::{Label, NativeElement}; use typst_library::introspection::{ DocumentPosition, InnerHtmlPosition, Introspector, Location, Tag, }; use typst_library::layout::{Fr...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-html/src/attr.rs
crates/typst-html/src/attr.rs
#![cfg_attr(rustfmt, rustfmt_skip)] #![allow(non_upper_case_globals)] #![allow(dead_code)] use crate::HtmlAttr; pub const abbr: HtmlAttr = HtmlAttr::constant("abbr"); pub const accept: HtmlAttr = HtmlAttr::constant("accept"); pub const accept_charset: HtmlAttr = HtmlAttr::constant("accept-charset"); pub const access...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-html/src/lib.rs
crates/typst-html/src/lib.rs
//! Typst's HTML exporter. mod attr; mod charsets; mod convert; mod css; mod document; mod dom; mod encode; mod fragment; mod link; mod rules; mod tag; mod typed; pub use self::document::html_document; pub use self::dom::*; pub use self::encode::html; pub use self::rules::{html_span_filled, register}; use ecow::EcoS...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-html/src/convert.rs
crates/typst-html/src/convert.rs
use ecow::{EcoString, EcoVec, eco_vec}; use typst_library::diag::{SourceResult, warning}; use typst_library::engine::Engine; use typst_library::foundations::{Content, Packed, StyleChain, Target, TargetElem}; use typst_library::introspection::{SplitLocator, TagElem}; use typst_library::layout::{Abs, Axes, HElem, Region,...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-html/src/encode.rs
crates/typst-html/src/encode.rs
use std::fmt::Write; use ecow::{EcoString, eco_format}; use typst_library::diag::{At, SourceResult, StrResult, bail}; use typst_library::foundations::Repr; use typst_library::introspection::Introspector; use typst_syntax::Span; use crate::{ HtmlDocument, HtmlElement, HtmlFrame, HtmlNode, HtmlTag, attr, charsets, ...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-html/src/document.rs
crates/typst-html/src/document.rs
use comemo::{Tracked, TrackedMut}; use ecow::{EcoVec, eco_vec}; use rustc_hash::FxHashSet; use typst_library::World; use typst_library::diag::{SourceResult, bail}; use typst_library::engine::{Engine, Route, Sink, Traced}; use typst_library::foundations::{Content, StyleChain, Styles}; use typst_library::introspection::{...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-html/src/fragment.rs
crates/typst-html/src/fragment.rs
use comemo::{Track, Tracked, TrackedMut}; use ecow::EcoVec; use typst_library::World; use typst_library::diag::{At, SourceResult}; use typst_library::engine::{Engine, Route, Sink, Traced}; use typst_library::foundations::{Content, StyleChain}; use typst_library::introspection::{Introspector, Locator, LocatorLink, Split...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-html/src/typed.rs
crates/typst-html/src/typed.rs
//! The typed HTML element API (e.g. `html.div`). //! //! The typed API is backed by generated data derived from the HTML //! specification. See [generated] and `tools/codegen`. use std::fmt::Write; use std::num::{NonZeroI64, NonZeroU64}; use std::sync::LazyLock; use bumpalo::Bump; use comemo::Tracked; use ecow::{Eco...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-html/src/dom.rs
crates/typst-html/src/dom.rs
use std::fmt::{self, Debug, Display, Formatter}; use ecow::{EcoString, EcoVec}; use typst_library::diag::{HintedStrResult, StrResult, bail}; use typst_library::foundations::{Dict, Repr, Str, StyleChain, cast}; use typst_library::introspection::{Introspector, Location, Tag}; use typst_library::layout::{Abs, Frame, Poin...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-html/src/rules.rs
crates/typst-html/src/rules.rs
use std::num::NonZeroUsize; use comemo::{Track, Tracked}; use ecow::{EcoString, EcoVec, eco_format}; use typst_library::diag::{At, SourceDiagnostic, SourceResult, bail, error, warning}; use typst_library::engine::Engine; use typst_library::foundations::{ Content, Context, NativeElement, NativeRuleMap, Selector, Sh...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-html/src/tag.rs
crates/typst-html/src/tag.rs
//! Predefined constants for HTML tags. #![allow(non_upper_case_globals)] #![allow(dead_code)] use crate::HtmlTag; pub const a: HtmlTag = HtmlTag::constant("a"); pub const abbr: HtmlTag = HtmlTag::constant("abbr"); pub const address: HtmlTag = HtmlTag::constant("address"); pub const area: HtmlTag = HtmlTag::constant...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-kit/src/lib.rs
crates/typst-kit/src/lib.rs
//! Typst-kit contains various default implementations of functionality used in //! typst-cli. It is intended as a single source of truth for things like font //! searching, package downloads and more. Each component of typst-kit is //! optional, but enabled by default. //! //! # Components //! - [fonts] contains a def...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-kit/src/download.rs
crates/typst-kit/src/download.rs
// Acknowledgement: // Closely modelled after rustup's `DownloadTracker`. // https://github.com/rust-lang/rustup/blob/master/src/cli/download_tracker.rs //! Helpers for making various web requests with status reporting. These are //! primarily used for communicating with package registries. use std::collections::VecD...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-kit/src/fonts.rs
crates/typst-kit/src/fonts.rs
//! Default implementation for searching local and system installed fonts as //! well as loading embedded default fonts. //! //! # Embedded fonts //! The following fonts are available as embedded fonts via the `embed-fonts` //! feature flag: //! - For text: Libertinus Serif, New Computer Modern //! - For math: New Comp...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-kit/src/package.rs
crates/typst-kit/src/package.rs
//! Download and unpack packages and package indices. use std::fs; use std::io; use std::path::{Path, PathBuf}; use ecow::eco_format; use once_cell::sync::OnceCell; use serde::Deserialize; use typst_library::diag::{PackageError, PackageResult, StrResult, bail}; use typst_syntax::package::{PackageSpec, PackageVersion,...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-eval/src/vm.rs
crates/typst-eval/src/vm.rs
use comemo::Tracked; use ecow::eco_format; use typst_library::World; use typst_library::diag::{HintedString, warning}; use typst_library::engine::Engine; use typst_library::foundations::{Binding, Context, IntoValue, Scopes, Value}; use typst_syntax::Span; use typst_syntax::ast::{self, AstNode}; use crate::FlowEvent; ...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-eval/src/markup.rs
crates/typst-eval/src/markup.rs
use typst_library::diag::{At, SourceResult, warning}; use typst_library::foundations::{ Content, Label, NativeElement, Repr, Smart, Symbol, Unlabellable, Value, }; use typst_library::model::{ EmphElem, EnumItem, HeadingElem, LinkElem, ListItem, ParbreakElem, RefElem, StrongElem, Supplement, TermItem, Url, }...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-eval/src/lib.rs
crates/typst-eval/src/lib.rs
//! Typst's code interpreter. pub(crate) mod ops; mod access; mod binding; mod call; mod code; mod flow; mod import; mod markup; mod math; mod methods; mod rules; mod vm; pub use self::call::{CapturesVisitor, eval_closure}; pub use self::flow::FlowEvent; pub use self::import::import; pub use self::vm::{Vm, hint_if_s...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-eval/src/flow.rs
crates/typst-eval/src/flow.rs
use typst_library::diag::{At, SourceDiagnostic, SourceResult, bail, error}; use typst_library::foundations::{IntoValue, Value, ops}; use typst_syntax::ast::{self, AstNode}; use typst_syntax::{Span, SyntaxKind, SyntaxNode}; use unicode_segmentation::UnicodeSegmentation; use crate::{Eval, Vm, destructure}; /// The maxi...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-eval/src/call.rs
crates/typst-eval/src/call.rs
use comemo::{Tracked, TrackedMut}; use ecow::{EcoString, EcoVec, eco_format}; use typst_library::World; use typst_library::diag::{ At, HintedStrResult, SourceDiagnostic, SourceResult, Trace, Tracepoint, bail, error, }; use typst_library::engine::{Engine, Sink, Traced}; use typst_library::foundations::{ Arg, Arg...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-eval/src/math.rs
crates/typst-eval/src/math.rs
use ecow::eco_format; use typst_library::diag::{At, SourceResult}; use typst_library::foundations::{Content, NativeElement, Symbol, SymbolElem, Value}; use typst_library::math::{ AlignPointElem, AttachElem, EquationElem, FracElem, LrElem, PrimesElem, RootElem, }; use typst_library::text::TextElem; use typst_syntax:...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-eval/src/methods.rs
crates/typst-eval/src/methods.rs
//! Handles special built-in methods on values. use ecow::{EcoString, eco_format}; use typst_library::diag::{At, SourceResult}; use typst_library::foundations::{Args, Str, Type, Value}; use typst_syntax::Span; /// Whether a specific method is mutating. pub(crate) fn is_mutating_method(method: &str) -> bool { matc...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-eval/src/code.rs
crates/typst-eval/src/code.rs
use ecow::{EcoVec, eco_vec}; use typst_library::diag::{At, SourceResult, bail, error, warning}; use typst_library::engine::Engine; use typst_library::foundations::{ Array, Capturer, Closure, ClosureNode, Content, ContextElem, Dict, Func, NativeElement, Selector, Str, Value, ops, }; use typst_library::introspect...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-eval/src/access.rs
crates/typst-eval/src/access.rs
use ecow::eco_format; use typst_library::diag::{At, Hint, SourceResult, Trace, Tracepoint, bail}; use typst_library::foundations::{Dict, Value}; use typst_syntax::ast::{self, AstNode}; use crate::{Eval, Vm, call_method_access, is_accessor_method}; /// Access an expression mutably. pub(crate) trait Access { /// Ac...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-eval/src/binding.rs
crates/typst-eval/src/binding.rs
use ecow::eco_format; use rustc_hash::FxHashSet; use typst_library::diag::{At, SourceDiagnostic, SourceResult, bail, error}; use typst_library::foundations::{Array, Dict, Value}; use typst_syntax::ast::{self, AstNode}; use crate::{Access, Eval, Vm}; impl Eval for ast::LetBinding<'_> { type Output = Value; fn...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-eval/src/rules.rs
crates/typst-eval/src/rules.rs
use typst_library::diag::{At, SourceResult, warning}; use typst_library::foundations::{ Element, Func, Recipe, Selector, ShowableSelector, Styles, Transformation, }; use typst_library::layout::{BlockElem, PageElem}; use typst_library::model::ParElem; use typst_syntax::ast::{self, AstNode}; use crate::{Eval, Vm, hi...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-eval/src/import.rs
crates/typst-eval/src/import.rs
use comemo::TrackedMut; use ecow::{EcoString, eco_format, eco_vec}; use typst_library::World; use typst_library::diag::{ At, FileError, SourceResult, Trace, Tracepoint, bail, error, warning, }; use typst_library::engine::Engine; use typst_library::foundations::{Binding, Content, Module, Value}; use typst_syntax::as...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-eval/src/ops.rs
crates/typst-eval/src/ops.rs
use typst_library::diag::{At, HintedStrResult, SourceResult}; use typst_library::foundations::{IntoValue, Value, ops}; use typst_syntax::ast::{self, AstNode}; use crate::{Access, Eval, Vm, access_dict}; impl Eval for ast::Unary<'_> { type Output = Value; fn eval(self, vm: &mut Vm) -> SourceResult<Self::Outpu...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-utils/build.rs
crates/typst-utils/build.rs
use std::process::Command; fn main() { println!("cargo:rerun-if-env-changed=TYPST_VERSION"); println!("cargo:rerun-if-env-changed=TYPST_COMMIT_SHA"); if option_env!("TYPST_VERSION").is_none() { println!("cargo:rustc-env=TYPST_VERSION={}", env!("CARGO_PKG_VERSION")); } if option_env!("TYPS...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-utils/src/bitset.rs
crates/typst-utils/src/bitset.rs
use std::fmt::{self, Debug, Formatter}; use thin_vec::ThinVec; /// The number of bits per chunk. const BITS: usize = usize::BITS as usize; /// Stores a set of numbers which are expected to be rather small. /// /// Inserting a very small value is cheap while inserting a large one may be /// very expensive. /// /// Un...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-utils/src/protected.rs
crates/typst-utils/src/protected.rs
/// Wraps a type, requiring justification on access. /// /// On the type-system level, this does not do much, but it makes sure that /// users of the value think twice and justify their use. #[derive(Debug, Copy, Clone)] pub struct Protected<T>(T); impl<T> Protected<T> { /// Wrap a value of type `T`. pub fn ne...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-utils/src/lib.rs
crates/typst-utils/src/lib.rs
//! Utilities for Typst. pub mod fat; #[macro_use] mod macros; mod bitset; mod deferred; mod duration; mod hash; mod listset; mod pico; mod protected; mod round; mod scalar; #[path = "version.rs"] mod version_; pub use self::bitset::{BitSet, SmallBitSet}; pub use self::deferred::Deferred; pub use self::duration::for...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-utils/src/listset.rs
crates/typst-utils/src/listset.rs
use std::ops::DerefMut; /// Picked by gut feeling. Could probably even be a bit larger. const CUT_OFF: usize = 15; /// A set backed by a mutable slice-like data structure. /// /// This data structure uses two different strategies depending on size: /// /// - When the list is small, it is just kept as is and searched ...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-utils/src/version.rs
crates/typst-utils/src/version.rs
//! Typst version information. /// Returns the version of Typst. /// /// The information is read from the following sources: /// /// - For the version number: The `TYPST_VERSION` environment variable /// - For the commit hash: The `TYPST_COMMIT_SHA` environment variable /// /// Build tooling can set these environment ...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-utils/src/round.rs
crates/typst-utils/src/round.rs
/// Returns value with `n` digits after floating point where `n` is `precision`. /// Standard rounding rules apply (if `n+1`th digit >= 5, round away from zero). /// /// If `precision` is negative, returns value with `n` less significant integer /// digits before floating point where `n` is `-precision`. Standard round...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-utils/src/scalar.rs
crates/typst-utils/src/scalar.rs
use std::cmp::Ordering; use std::fmt::{self, Debug, Formatter}; use std::hash::{Hash, Hasher}; use std::iter::Sum; use std::ops::{ Add, AddAssign, Div, DivAssign, Mul, MulAssign, Neg, Rem, RemAssign, Sub, SubAssign, }; use crate::Numeric; /// A 64-bit float that implements `Eq`, `Ord` and `Hash`. /// /// Panics i...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-utils/src/macros.rs
crates/typst-utils/src/macros.rs
/// Create a lazy initialized, globally unique `'static` reference to a value. #[macro_export] macro_rules! singleton { ($ty:ty, $value:expr) => {{ static VALUE: ::std::sync::LazyLock<$ty> = ::std::sync::LazyLock::new(|| $value); &*VALUE }}; } /// Implement the `Sub` trait based on existing `Ne...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-utils/src/hash.rs
crates/typst-utils/src/hash.rs
use std::fmt::{self, Debug}; use std::hash::{Hash, Hasher}; use std::ops::{Deref, DerefMut}; use std::sync::atomic::Ordering; use portable_atomic::AtomicU128; use siphasher::sip128::{Hasher128, SipHasher13}; /// Calculate a 128-bit siphash of a value. pub fn hash128<T: Hash + ?Sized>(value: &T) -> u128 { let mut ...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-utils/src/fat.rs
crates/typst-utils/src/fat.rs
//! Fat pointer handling. //! //! This assumes the memory representation of fat pointers. Although it is not //! guaranteed by Rust, it's improbable that it will change. Still, when the //! pointer metadata APIs are stable, we should definitely move to them: //! <https://github.com/rust-lang/rust/issues/81513> use std...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-utils/src/pico.rs
crates/typst-utils/src/pico.rs
use std::borrow::Borrow; use std::cmp::Ordering; use std::fmt::{self, Debug, Display, Formatter}; use std::hash::{Hash, Hasher}; use std::num::NonZeroU64; use std::ops::Deref; use std::sync::{LazyLock, RwLock}; use rustc_hash::FxHashMap; /// Marks a number as a bitcode encoded `PicoStr``. const MARKER: u64 = 1 << 63;...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-utils/src/deferred.rs
crates/typst-utils/src/deferred.rs
use std::sync::Arc; use once_cell::sync::OnceCell; /// A value that is lazily executed on another thread. /// /// Execution will be started in the background and can be waited on. pub struct Deferred<T>(Arc<OnceCell<T>>); impl<T: Send + Sync + 'static> Deferred<T> { /// Creates a new deferred value. /// ...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-utils/src/duration.rs
crates/typst-utils/src/duration.rs
use std::fmt::{self, Display, Formatter, Write}; use std::time::Duration; use super::round_with_precision; /// Formats a duration with a precision suitable for human display. pub fn format_duration(duration: Duration) -> impl Display { DurationDisplay(duration) } /// Displays a `Duration`. struct DurationDisplay...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-realize/src/lib.rs
crates/typst-realize/src/lib.rs
//! Typst's realization subsystem. //! //! *Realization* is the process of recursively applying styling and, in //! particular, show rules to produce well-known elements that can be processed //! further. use std::borrow::Cow; use std::cell::LazyCell; use arrayvec::ArrayVec; use bumpalo::Bump; use bumpalo::collection...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
true
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/repeat.rs
crates/typst-layout/src/repeat.rs
use typst_library::diag::{SourceResult, bail}; use typst_library::engine::Engine; use typst_library::foundations::{Packed, Resolve, StyleChain}; use typst_library::introspection::Locator; use typst_library::layout::{ Abs, AlignElem, Axes, Frame, Point, Region, RepeatElem, Size, }; use typst_utils::Numeric; /// Lay...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/modifiers.rs
crates/typst-layout/src/modifiers.rs
use typst_library::foundations::StyleChain; use typst_library::layout::{Abs, Fragment, Frame, FrameItem, HideElem, Point, Sides}; use typst_library::model::{Destination, LinkElem, ParElem}; /// Frame-level modifications resulting from styles that do not impose any /// layout structure. /// /// These are always applied...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/lib.rs
crates/typst-layout/src/lib.rs
//! Typst's layout engine. mod flow; mod grid; mod image; mod inline; mod lists; mod math; mod modifiers; mod pad; mod pages; mod repeat; mod rules; mod shapes; mod stack; mod transforms; pub use self::flow::{layout_fragment, layout_frame}; pub use self::pages::layout_document; pub use self::rules::register;
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/image.rs
crates/typst-layout/src/image.rs
use typst_library::diag::SourceResult; use typst_library::engine::Engine; use typst_library::foundations::{Packed, StyleChain}; use typst_library::introspection::Locator; use typst_library::layout::{ Abs, Axes, FixedAlignment, Frame, FrameItem, Point, Region, Size, }; use typst_library::visualize::{Curve, Image, Im...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/pad.rs
crates/typst-layout/src/pad.rs
use typst_library::diag::SourceResult; use typst_library::engine::Engine; use typst_library::foundations::{Packed, StyleChain}; use typst_library::introspection::Locator; use typst_library::layout::{ Abs, Fragment, Frame, PadElem, Point, Regions, Rel, Sides, Size, }; /// Layout the padded content. #[typst_macros::...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/lists.rs
crates/typst-layout/src/lists.rs
use comemo::Track; use smallvec::smallvec; use typst_library::diag::SourceResult; use typst_library::engine::Engine; use typst_library::foundations::{Content, Context, Depth, Packed, StyleChain}; use typst_library::introspection::Locator; use typst_library::layout::grid::resolve::{Cell, CellGrid}; use typst_library::la...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/transforms.rs
crates/typst-layout/src/transforms.rs
use std::cell::LazyCell; use typst_library::diag::{SourceResult, bail}; use typst_library::engine::Engine; use typst_library::foundations::{Content, Packed, Resolve, Smart, StyleChain}; use typst_library::introspection::Locator; use typst_library::layout::{ Abs, Axes, FixedAlignment, Frame, MoveElem, Point, Ratio,...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/stack.rs
crates/typst-layout/src/stack.rs
use typst_library::diag::{SourceResult, bail}; use typst_library::engine::Engine; use typst_library::foundations::{Content, Packed, Resolve, StyleChain, StyledElem}; use typst_library::introspection::{Locator, SplitLocator}; use typst_library::layout::{ Abs, AlignElem, Axes, Axis, Dir, FixedAlignment, Fr, Fragment,...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/rules.rs
crates/typst-layout/src/rules.rs
use comemo::Track; use ecow::{EcoVec, eco_format}; use smallvec::smallvec; use typst_library::diag::{At, SourceResult, bail}; use typst_library::foundations::{ Content, Context, NativeElement, NativeRuleMap, Packed, Resolve, ShowFn, Smart, StyleChain, Synthesize, Target, dict, }; use typst_library::introspectio...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/shapes.rs
crates/typst-layout/src/shapes.rs
use std::f64::consts::SQRT_2; use kurbo::{CubicBez, ParamCurveExtrema}; use typst_library::diag::{SourceResult, bail}; use typst_library::engine::Engine; use typst_library::foundations::{Content, Packed, Resolve, Smart, StyleChain}; use typst_library::introspection::Locator; use typst_library::layout::{ Abs, Axes,...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
true
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/flow/collect.rs
crates/typst-layout/src/flow/collect.rs
use std::cell::{LazyCell, RefCell}; use std::fmt::{self, Debug, Formatter}; use std::hash::Hash; use bumpalo::Bump; use bumpalo::boxed::Box as BumpBox; use comemo::{Track, Tracked, TrackedMut}; use typst_library::World; use typst_library::diag::{SourceResult, bail, warning}; use typst_library::engine::{Engine, Route, ...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/flow/compose.rs
crates/typst-layout/src/flow/compose.rs
use std::num::NonZeroUsize; use typst_library::diag::SourceResult; use typst_library::engine::Engine; use typst_library::foundations::{Content, NativeElement, Packed, Resolve, Smart}; use typst_library::introspection::{ Counter, CounterDisplayElem, CounterState, CounterUpdate, Location, Locator, SplitLocator, ...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
true
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/flow/block.rs
crates/typst-layout/src/flow/block.rs
use std::cell::LazyCell; use smallvec::SmallVec; use typst_library::diag::SourceResult; use typst_library::engine::Engine; use typst_library::foundations::{Packed, Resolve, StyleChain}; use typst_library::introspection::Locator; use typst_library::layout::{ Abs, Axes, BlockBody, BlockElem, Fragment, Frame, FrameKi...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/flow/distribute.rs
crates/typst-layout/src/flow/distribute.rs
use typst_library::introspection::Tag; use typst_library::layout::{ Abs, Axes, FixedAlignment, Fr, Frame, FrameItem, Point, Region, Regions, Rel, Size, }; use typst_utils::Numeric; use super::{ Child, Composer, FlowResult, LineChild, MultiChild, MultiSpill, PlacedChild, SingleChild, Stop, Work, }; /// Dis...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/flow/mod.rs
crates/typst-layout/src/flow/mod.rs
//! Layout of content into a [`Frame`] or [`Fragment`]. mod block; mod collect; mod compose; mod distribute; pub(crate) use self::block::unbreakable_pod; use std::num::NonZeroUsize; use std::rc::Rc; use bumpalo::Bump; use comemo::{Track, Tracked, TrackedMut}; use ecow::EcoVec; use rustc_hash::FxHashSet; use typst_l...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/math/underover.rs
crates/typst-layout/src/math/underover.rs
use typst_library::diag::SourceResult; use typst_library::foundations::{Content, Packed, StyleChain}; use typst_library::layout::{Abs, Em, Frame, FrameItem, Point, Size}; use typst_library::math::{ Accent, OverbraceElem, OverbracketElem, OverlineElem, OverparenElem, OvershellElem, UnderbraceElem, UnderbracketEl...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/math/frac.rs
crates/typst-layout/src/math/frac.rs
use typst_library::diag::SourceResult; use typst_library::foundations::{ Content, NativeElement, Packed, Resolve, StyleChain, SymbolElem, }; use typst_library::layout::{Abs, Em, Frame, FrameItem, Point, Size}; use typst_library::math::{ BinomElem, EquationElem, FracElem, FracStyle, LrElem, MathSize, }; use typs...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/math/shaping.rs
crates/typst-layout/src/math/shaping.rs
use std::ops::{Deref, DerefMut}; use az::SaturatingAs; use comemo::Tracked; use ecow::EcoString; use rustybuzz::{BufferFlags, UnicodeBuffer}; use typst_library::World; use typst_library::layout::{Abs, Em}; use typst_library::text::{Font, FontFamily, FontVariant, Glyph, Lang, Region, TextItem}; use typst_library::visua...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/math/stretch.rs
crates/typst-layout/src/math/stretch.rs
use typst_library::diag::{SourceResult, warning}; use typst_library::foundations::{Packed, StyleChain}; use typst_library::layout::{Abs, Axis, Rel}; use typst_library::math::StretchElem; use typst_utils::Get; use super::{MathContext, MathFragment, stretch_axes}; /// Lays out a [`StretchElem`]. #[typst_macros::time(na...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/math/fragment.rs
crates/typst-layout/src/math/fragment.rs
use std::fmt::{self, Debug, Formatter}; use comemo::Tracked; use ttf_parser::GlyphId; use ttf_parser::math::{GlyphAssembly, GlyphConstruction, GlyphPart}; use typst_library::World; use typst_library::diag::warning; use typst_library::foundations::StyleChain; use typst_library::introspection::Tag; use typst_library::la...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/math/root.rs
crates/typst-layout/src/math/root.rs
use typst_library::diag::SourceResult; use typst_library::foundations::{Packed, StyleChain, SymbolElem}; use typst_library::layout::{Abs, Frame, FrameItem, Point, Size}; use typst_library::math::{EquationElem, MathSize, RootElem}; use typst_library::text::TextElem; use typst_library::visualize::{FixedStroke, Geometry};...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/math/cancel.rs
crates/typst-layout/src/math/cancel.rs
use comemo::Track; use typst_library::diag::{At, SourceResult}; use typst_library::foundations::{Context, Packed, Smart, StyleChain}; use typst_library::layout::{Abs, Angle, Frame, FrameItem, Point, Rel, Size, Transform}; use typst_library::math::{CancelAngle, CancelElem}; use typst_library::text::TextElem; use typst_l...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/math/text.rs
crates/typst-layout/src/math/text.rs
use codex::styling::{MathStyle, to_style}; use ecow::EcoString; use typst_library::diag::SourceResult; use typst_library::foundations::{Packed, Resolve, StyleChain, SymbolElem}; use typst_library::layout::{Abs, Size}; use typst_library::math::{EquationElem, MathSize}; use typst_library::text::{ BottomEdge, BottomEd...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/math/lr.rs
crates/typst-layout/src/math/lr.rs
use typst_library::diag::SourceResult; use typst_library::foundations::{Packed, StyleChain}; use typst_library::layout::{Abs, Axis, Rel}; use typst_library::math::{EquationElem, LrElem, MidElem}; use typst_utils::SliceExt; use unicode_math_class::MathClass; use super::{DELIM_SHORT_FALL, MathContext, MathFragment, stre...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/math/mod.rs
crates/typst-layout/src/math/mod.rs
#[macro_use] mod shared; mod accent; mod attach; mod cancel; mod frac; mod fragment; mod lr; mod mat; mod root; mod run; mod shaping; mod stretch; mod text; mod underover; use comemo::Tracked; use typst_library::World; use typst_library::diag::{At, SourceResult, warning}; use typst_library::engine::Engine; use typst_l...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/math/run.rs
crates/typst-layout/src/math/run.rs
use std::iter::once; use typst_library::foundations::{Resolve, StyleChain}; use typst_library::layout::{Abs, AlignElem, Em, Frame, InlineItem, Point, Size}; use typst_library::math::{EquationElem, MEDIUM, MathSize, THICK, THIN}; use typst_library::model::ParElem; use unicode_math_class::MathClass; use super::{FrameFr...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/math/shared.rs
crates/typst-layout/src/math/shared.rs
use ttf_parser::Tag; use typst_library::foundations::{Style, StyleChain}; use typst_library::layout::{Abs, Em}; use typst_library::math::{EquationElem, MathSize}; use typst_library::text::{FontFamily, FontFeatures, TextElem}; use typst_utils::{LazyHash, singleton}; use super::{MathFragment, MathRun}; /// How much les...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/math/attach.rs
crates/typst-layout/src/math/attach.rs
// Can be re-enabled once `Option::map_or_default` is stable in our MSRV. #![allow(unstable_name_collisions)] // Is unused in compiler versions where `Option::map_or_default` is stable. #[allow(unused_imports)] use typst_utils::OptionExt; use typst_library::diag::SourceResult; use typst_library::foundations::{Packed,...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/math/accent.rs
crates/typst-layout/src/math/accent.rs
use typst_library::diag::SourceResult; use typst_library::foundations::{Packed, StyleChain, SymbolElem}; use typst_library::layout::{Abs, Em, Frame, Point, Rel, Size}; use typst_library::math::{Accent, AccentElem}; use typst_syntax::Span; use super::{ FrameFragment, MathContext, MathFragment, style_cramped, style_...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/math/mat.rs
crates/typst-layout/src/math/mat.rs
use typst_library::diag::{SourceResult, bail, warning}; use typst_library::foundations::{Content, Packed, Resolve, StyleChain, SymbolElem}; use typst_library::layout::{ Abs, Axes, Em, FixedAlignment, Frame, FrameItem, Point, Ratio, Rel, Size, }; use typst_library::math::{Augment, AugmentOffsets, CasesElem, MatElem,...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false
typst/typst
https://github.com/typst/typst/blob/a87f4b15ca86a0b2f98948d8f393608070ed731e/crates/typst-layout/src/pages/collect.rs
crates/typst-layout/src/pages/collect.rs
use rustc_hash::FxHashSet; use typst_library::foundations::StyleChain; use typst_library::introspection::{Locator, SplitLocator, Tag, TagElem}; use typst_library::layout::{PagebreakElem, Parity}; use typst_library::routines::Pair; /// An item in page layout. pub enum Item<'a> { /// A page run containing content. A...
rust
Apache-2.0
a87f4b15ca86a0b2f98948d8f393608070ed731e
2026-01-04T15:31:59.400510Z
false