Compare commits
9 Commits
9aa4288079
...
c562af4392
Author | SHA1 | Date | |
---|---|---|---|
|
c562af4392 | ||
|
b790c6d59c | ||
|
b1c79b50d4 | ||
|
4629ede020 | ||
|
bef4e20434 | ||
|
811996eb70 | ||
|
02f07e7912 | ||
|
693edb475d | ||
|
606183cd30 |
@ -174,7 +174,10 @@ typst help watch
|
|||||||
```
|
```
|
||||||
|
|
||||||
If you prefer an integrated IDE-like experience with autocompletion and instant
|
If you prefer an integrated IDE-like experience with autocompletion and instant
|
||||||
preview, you can also check out [Typst's free web app][app].
|
preview, you can also check out our [free web app][app]. Alternatively, there is
|
||||||
|
a community-created language server called
|
||||||
|
[Tinymist](https://myriad-dreamin.github.io/tinymist/) which is integrated into
|
||||||
|
various editor extensions.
|
||||||
|
|
||||||
## Community
|
## Community
|
||||||
The main places where the community gathers are our [Forum][forum] and our
|
The main places where the community gathers are our [Forum][forum] and our
|
||||||
|
@ -206,13 +206,11 @@ pub fn layout_multi_block(
|
|||||||
let has_inset = !inset.is_zero();
|
let has_inset = !inset.is_zero();
|
||||||
let is_explicit = matches!(body, None | Some(BlockBody::Content(_)));
|
let is_explicit = matches!(body, None | Some(BlockBody::Content(_)));
|
||||||
|
|
||||||
// Skip filling/stroking the first frame if it is empty and a non-empty
|
// Skip filling, stroking and labeling the first frame if it is empty and
|
||||||
// one follows.
|
// a non-empty one follows.
|
||||||
let mut skip_first = false;
|
let mut skip_first = false;
|
||||||
if let [first, rest @ ..] = fragment.as_slice() {
|
if let [first, rest @ ..] = fragment.as_slice() {
|
||||||
skip_first = has_fill_or_stroke
|
skip_first = first.is_empty() && rest.iter().any(|frame| !frame.is_empty());
|
||||||
&& first.is_empty()
|
|
||||||
&& rest.iter().any(|frame| !frame.is_empty());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Post-process to apply insets, clipping, fills, and strokes.
|
// Post-process to apply insets, clipping, fills, and strokes.
|
||||||
@ -244,7 +242,8 @@ pub fn layout_multi_block(
|
|||||||
|
|
||||||
// Assign label to each frame in the fragment.
|
// Assign label to each frame in the fragment.
|
||||||
if let Some(label) = elem.label() {
|
if let Some(label) = elem.label() {
|
||||||
for frame in fragment.iter_mut() {
|
// Skip empty orphan frames, as a label would make them non-empty.
|
||||||
|
for frame in fragment.iter_mut().skip(if skip_first { 1 } else { 0 }) {
|
||||||
frame.label(label);
|
frame.label(label);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -459,6 +459,7 @@ impl<'a> MultiChild<'a> {
|
|||||||
regions: Regions,
|
regions: Regions,
|
||||||
) -> SourceResult<(Frame, Option<MultiSpill<'a, 'b>>)> {
|
) -> SourceResult<(Frame, Option<MultiSpill<'a, 'b>>)> {
|
||||||
let fragment = self.layout_full(engine, regions)?;
|
let fragment = self.layout_full(engine, regions)?;
|
||||||
|
let exist_non_empty_frame = fragment.iter().any(|f| !f.is_empty());
|
||||||
|
|
||||||
// Extract the first frame.
|
// Extract the first frame.
|
||||||
let mut frames = fragment.into_iter();
|
let mut frames = fragment.into_iter();
|
||||||
@ -468,6 +469,7 @@ impl<'a> MultiChild<'a> {
|
|||||||
let mut spill = None;
|
let mut spill = None;
|
||||||
if frames.next().is_some() {
|
if frames.next().is_some() {
|
||||||
spill = Some(MultiSpill {
|
spill = Some(MultiSpill {
|
||||||
|
exist_non_empty_frame,
|
||||||
multi: self,
|
multi: self,
|
||||||
full: regions.full,
|
full: regions.full,
|
||||||
first: regions.size.y,
|
first: regions.size.y,
|
||||||
@ -539,6 +541,7 @@ fn layout_multi_impl(
|
|||||||
/// The spilled remains of a `MultiChild` that broke across two regions.
|
/// The spilled remains of a `MultiChild` that broke across two regions.
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone)]
|
||||||
pub struct MultiSpill<'a, 'b> {
|
pub struct MultiSpill<'a, 'b> {
|
||||||
|
pub(super) exist_non_empty_frame: bool,
|
||||||
multi: &'b MultiChild<'a>,
|
multi: &'b MultiChild<'a>,
|
||||||
first: Abs,
|
first: Abs,
|
||||||
full: Abs,
|
full: Abs,
|
||||||
|
@ -283,6 +283,13 @@ impl<'a, 'b> Distributor<'a, 'b, '_, '_, '_> {
|
|||||||
|
|
||||||
// Lay out the block.
|
// Lay out the block.
|
||||||
let (frame, spill) = multi.layout(self.composer.engine, self.regions)?;
|
let (frame, spill) = multi.layout(self.composer.engine, self.regions)?;
|
||||||
|
if frame.is_empty() && spill.as_ref().is_some_and(|s| s.exist_non_empty_frame) {
|
||||||
|
// If the first frame is empty, but there are non-empty frames in
|
||||||
|
// the spill, the whole child should be put in the next region to
|
||||||
|
// avoid any invisible orphans at the end of this region.
|
||||||
|
return Err(Stop::Finish(false));
|
||||||
|
}
|
||||||
|
|
||||||
self.frame(frame, multi.align, multi.sticky, true)?;
|
self.frame(frame, multi.align, multi.sticky, true)?;
|
||||||
|
|
||||||
// If the block didn't fully fit into the current region, save it into
|
// If the block didn't fully fit into the current region, save it into
|
||||||
|
@ -797,7 +797,9 @@ impl Color {
|
|||||||
components
|
components
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns the constructor function for this color's space:
|
/// Returns the constructor function for this color's space.
|
||||||
|
///
|
||||||
|
/// Returns one of:
|
||||||
/// - [`luma`]($color.luma)
|
/// - [`luma`]($color.luma)
|
||||||
/// - [`oklab`]($color.oklab)
|
/// - [`oklab`]($color.oklab)
|
||||||
/// - [`oklch`]($color.oklch)
|
/// - [`oklch`]($color.oklch)
|
||||||
|
@ -242,7 +242,7 @@ fn category_page(resolver: &dyn Resolver, category: Category) -> PageModel {
|
|||||||
items.push(CategoryItem {
|
items.push(CategoryItem {
|
||||||
name: group.name.clone(),
|
name: group.name.clone(),
|
||||||
route: subpage.route.clone(),
|
route: subpage.route.clone(),
|
||||||
oneliner: oneliner(docs).into(),
|
oneliner: oneliner(docs),
|
||||||
code: true,
|
code: true,
|
||||||
});
|
});
|
||||||
children.push(subpage);
|
children.push(subpage);
|
||||||
@ -296,7 +296,7 @@ fn category_page(resolver: &dyn Resolver, category: Category) -> PageModel {
|
|||||||
items.push(CategoryItem {
|
items.push(CategoryItem {
|
||||||
name: name.into(),
|
name: name.into(),
|
||||||
route: subpage.route.clone(),
|
route: subpage.route.clone(),
|
||||||
oneliner: oneliner(func.docs().unwrap_or_default()).into(),
|
oneliner: oneliner(func.docs().unwrap_or_default()),
|
||||||
code: true,
|
code: true,
|
||||||
});
|
});
|
||||||
children.push(subpage);
|
children.push(subpage);
|
||||||
@ -306,7 +306,7 @@ fn category_page(resolver: &dyn Resolver, category: Category) -> PageModel {
|
|||||||
items.push(CategoryItem {
|
items.push(CategoryItem {
|
||||||
name: ty.short_name().into(),
|
name: ty.short_name().into(),
|
||||||
route: subpage.route.clone(),
|
route: subpage.route.clone(),
|
||||||
oneliner: oneliner(ty.docs()).into(),
|
oneliner: oneliner(ty.docs()),
|
||||||
code: true,
|
code: true,
|
||||||
});
|
});
|
||||||
children.push(subpage);
|
children.push(subpage);
|
||||||
@ -637,7 +637,7 @@ fn group_page(
|
|||||||
let item = CategoryItem {
|
let item = CategoryItem {
|
||||||
name: group.name.clone(),
|
name: group.name.clone(),
|
||||||
route: model.route.clone(),
|
route: model.route.clone(),
|
||||||
oneliner: oneliner(&group.details).into(),
|
oneliner: oneliner(&group.details),
|
||||||
code: false,
|
code: false,
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -772,8 +772,24 @@ pub fn urlify(title: &str) -> EcoString {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Extract the first line of documentation.
|
/// Extract the first line of documentation.
|
||||||
fn oneliner(docs: &str) -> &str {
|
fn oneliner(docs: &str) -> EcoString {
|
||||||
docs.lines().next().unwrap_or_default()
|
let paragraph = docs.split("\n\n").next().unwrap_or_default();
|
||||||
|
let mut depth = 0;
|
||||||
|
let mut period = false;
|
||||||
|
let mut end = paragraph.len();
|
||||||
|
for (i, c) in paragraph.char_indices() {
|
||||||
|
match c {
|
||||||
|
'(' | '[' | '{' => depth += 1,
|
||||||
|
')' | ']' | '}' => depth -= 1,
|
||||||
|
'.' if depth == 0 => period = true,
|
||||||
|
c if period && c.is_whitespace() && !docs[..i].ends_with("e.g.") => {
|
||||||
|
end = i;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
_ => period = false,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
EcoString::from(&docs[..end]).replace("\r\n", " ").replace("\n", " ")
|
||||||
}
|
}
|
||||||
|
|
||||||
/// The order of types in the documentation.
|
/// The order of types in the documentation.
|
||||||
|
@ -86,7 +86,7 @@ pub struct FuncModel {
|
|||||||
pub name: EcoString,
|
pub name: EcoString,
|
||||||
pub title: &'static str,
|
pub title: &'static str,
|
||||||
pub keywords: &'static [&'static str],
|
pub keywords: &'static [&'static str],
|
||||||
pub oneliner: &'static str,
|
pub oneliner: EcoString,
|
||||||
pub element: bool,
|
pub element: bool,
|
||||||
pub contextual: bool,
|
pub contextual: bool,
|
||||||
pub deprecation: Option<&'static str>,
|
pub deprecation: Option<&'static str>,
|
||||||
@ -139,7 +139,7 @@ pub struct TypeModel {
|
|||||||
pub name: &'static str,
|
pub name: &'static str,
|
||||||
pub title: &'static str,
|
pub title: &'static str,
|
||||||
pub keywords: &'static [&'static str],
|
pub keywords: &'static [&'static str],
|
||||||
pub oneliner: &'static str,
|
pub oneliner: EcoString,
|
||||||
pub details: Html,
|
pub details: Html,
|
||||||
pub constructor: Option<FuncModel>,
|
pub constructor: Option<FuncModel>,
|
||||||
pub scope: Vec<FuncModel>,
|
pub scope: Vec<FuncModel>,
|
||||||
|
@ -127,6 +127,10 @@
|
|||||||
checks = self'.checks;
|
checks = self'.checks;
|
||||||
inputsFrom = [ typst ];
|
inputsFrom = [ typst ];
|
||||||
|
|
||||||
|
buildInputs = with pkgs; [
|
||||||
|
rust-analyzer
|
||||||
|
];
|
||||||
|
|
||||||
packages = [
|
packages = [
|
||||||
# A script for quickly running tests.
|
# A script for quickly running tests.
|
||||||
# See https://github.com/typst/typst/blob/main/tests/README.md#making-an-alias
|
# See https://github.com/typst/typst/blob/main/tests/README.md#making-an-alias
|
||||||
|
BIN
tests/ref/block-multiple-pages-empty.png
Normal file
After Width: | Height: | Size: 263 B |
Before Width: | Height: | Size: 8.3 KiB After Width: | Height: | Size: 8.3 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
BIN
tests/ref/issue-2914-block-fill-skip-nested.png
Normal file
After Width: | Height: | Size: 452 B |
BIN
tests/ref/issue-2914-block-height-cut-off.png
Normal file
After Width: | Height: | Size: 411 B |
BIN
tests/ref/issue-6125-block-place-width-limited.png
Normal file
After Width: | Height: | Size: 144 B |
BIN
tests/ref/issue-6304-block-skip-label.png
Normal file
After Width: | Height: | Size: 312 B |
BIN
tests/ref/locate-migrated-breakable.png
Normal file
After Width: | Height: | Size: 243 B |
@ -72,6 +72,18 @@ B
|
|||||||
#pagebreak(weak: true)
|
#pagebreak(weak: true)
|
||||||
#metadata(none) <e>
|
#metadata(none) <e>
|
||||||
|
|
||||||
|
--- locate-migrated-breakable ---
|
||||||
|
// Ensure that when a breakable element fully migrates to the next page without
|
||||||
|
// orphan frames, its position correctly reflects that.
|
||||||
|
#set page(height: 40pt)
|
||||||
|
A
|
||||||
|
#block[B]<a>
|
||||||
|
|
||||||
|
#context test(
|
||||||
|
locate(<a>).position(),
|
||||||
|
(page: 2, x: 10pt, y: 10pt),
|
||||||
|
)
|
||||||
|
|
||||||
--- issue-4029-locate-after-spacing ---
|
--- issue-4029-locate-after-spacing ---
|
||||||
#set page(margin: 10pt)
|
#set page(margin: 10pt)
|
||||||
#show heading: it => v(40pt) + it
|
#show heading: it => v(40pt) + it
|
||||||
|
@ -64,6 +64,12 @@ First!
|
|||||||
is the sun.
|
is the sun.
|
||||||
]
|
]
|
||||||
|
|
||||||
|
--- block-multiple-pages-empty ---
|
||||||
|
#set page(height: 60pt)
|
||||||
|
A
|
||||||
|
#block(height: 30pt)
|
||||||
|
B
|
||||||
|
|
||||||
--- block-box-fill ---
|
--- block-box-fill ---
|
||||||
#set page(height: 100pt)
|
#set page(height: 100pt)
|
||||||
#let words = lorem(18).split()
|
#let words = lorem(18).split()
|
||||||
@ -287,6 +293,37 @@ Paragraph
|
|||||||
#block(width: 100%, fill: red, box("a box"))
|
#block(width: 100%, fill: red, box("a box"))
|
||||||
#block(width: 100%, fill: red, [#box("a box") #box()])
|
#block(width: 100%, fill: red, [#box("a box") #box()])
|
||||||
|
|
||||||
|
--- issue-2914-block-height-cut-off ---
|
||||||
|
// Ensure that breaking a block doesn't shrink its height.
|
||||||
|
#set page(height: 65pt)
|
||||||
|
#set block(fill: aqua, width: 25pt, height: 25pt, inset: 5pt)
|
||||||
|
|
||||||
|
#block[A]
|
||||||
|
#block[B]
|
||||||
|
|
||||||
|
--- issue-2914-block-fill-skip-nested ---
|
||||||
|
// Ensure that fill and stroke are skipped for an empty frame with a nested block.
|
||||||
|
#set page(height: 50pt)
|
||||||
|
A
|
||||||
|
#block(fill: aqua, stroke: blue, inset: 5pt, width: 100%, block[B])
|
||||||
|
|
||||||
|
--- issue-6304-block-skip-label ---
|
||||||
|
// Ensure that labeling is skipped for an empty orphan frame.
|
||||||
|
#set page(height: 60pt)
|
||||||
|
A
|
||||||
|
#block(sticky: true)[B]
|
||||||
|
#block[C] <label>
|
||||||
|
|
||||||
|
--- issue-6125-block-place-width-limited ---
|
||||||
|
// Ensure that the width of a placed block isn't limited by its siblings.
|
||||||
|
#set page(height: 70pt)
|
||||||
|
#let b = block({
|
||||||
|
square(size: 20pt, fill: aqua)
|
||||||
|
place(top, box(height: 10pt, width: 1fr, fill: blue))
|
||||||
|
})
|
||||||
|
#b
|
||||||
|
#b
|
||||||
|
|
||||||
--- issue-5296-block-sticky-in-block-at-top ---
|
--- issue-5296-block-sticky-in-block-at-top ---
|
||||||
#set page(height: 3cm)
|
#set page(height: 3cm)
|
||||||
#v(1.6cm)
|
#v(1.6cm)
|
||||||
|