From 8be482c2c2f8316346be192b9854c647ee2f1406 Mon Sep 17 00:00:00 2001 From: Laurenz Date: Wed, 8 Nov 2023 15:33:49 +0100 Subject: [PATCH] Fix intradoc links --- crates/typst/src/lib.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/crates/typst/src/lib.rs b/crates/typst/src/lib.rs index 1e55385cc..bae1e4b4f 100644 --- a/crates/typst/src/lib.rs +++ b/crates/typst/src/lib.rs @@ -16,8 +16,8 @@ //! Next, the content is [typeset] into a [document] containing one [frame] //! per page with items at fixed positions. //! - **Exporting:** -//! These frames can finally be exported into an output format (currently -//! supported are [PDF] and [raster images]). +//! These frames can finally be exported into an output format (currently PDF, +//! PNG, or SVG). //! //! [tokens]: syntax::SyntaxKind //! [parsed]: syntax::parse @@ -29,8 +29,6 @@ //! [typeset]: model::typeset //! [document]: doc::Document //! [frame]: doc::Frame -//! [PDF]: export::pdf -//! [raster images]: export::render #![recursion_limit = "1000"] #![allow(clippy::comparison_chain)]