mirror of
https://github.com/typst/typst
synced 2025-07-27 22:37:54 +08:00
Compare commits
7 Commits
f614bbeb99
...
dc5bb2601f
Author | SHA1 | Date | |
---|---|---|---|
|
dc5bb2601f | ||
|
b790c6d59c | ||
|
b1c79b50d4 | ||
|
4629ede020 | ||
|
9e12b2c9f1 | ||
|
37b169ab5e | ||
|
3cb06baa98 |
@ -173,8 +173,11 @@ typst help
|
|||||||
typst help watch
|
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
|
||||||
|
@ -234,18 +234,23 @@ impl From<SyntaxError> for SourceDiagnostic {
|
|||||||
|
|
||||||
/// Destination for a deprecation message when accessing a deprecated value.
|
/// Destination for a deprecation message when accessing a deprecated value.
|
||||||
pub trait DeprecationSink {
|
pub trait DeprecationSink {
|
||||||
/// Emits the given deprecation message into this sink.
|
/// Emits the given deprecation message into this sink alongside a version
|
||||||
fn emit(self, message: &str);
|
/// in which the deprecated item is planned to be removed.
|
||||||
|
fn emit(self, message: &str, until: Option<&str>);
|
||||||
}
|
}
|
||||||
|
|
||||||
impl DeprecationSink for () {
|
impl DeprecationSink for () {
|
||||||
fn emit(self, _: &str) {}
|
fn emit(self, _: &str, _: Option<&str>) {}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl DeprecationSink for (&mut Engine<'_>, Span) {
|
impl DeprecationSink for (&mut Engine<'_>, Span) {
|
||||||
/// Emits the deprecation message as a warning.
|
/// Emits the deprecation message as a warning.
|
||||||
fn emit(self, message: &str) {
|
fn emit(self, message: &str, version: Option<&str>) {
|
||||||
self.0.sink.warn(SourceDiagnostic::warning(self.1, message));
|
self.0.sink.warn(
|
||||||
|
SourceDiagnostic::warning(self.1, message).with_hints(
|
||||||
|
version.map(|v| eco_format!("this will be removed in {}", v)),
|
||||||
|
),
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -255,6 +255,10 @@ pub struct Binding {
|
|||||||
category: Option<Category>,
|
category: Option<Category>,
|
||||||
/// A deprecation message for the definition.
|
/// A deprecation message for the definition.
|
||||||
deprecation: Option<&'static str>,
|
deprecation: Option<&'static str>,
|
||||||
|
/// A version in which the deprecated binding is planned to be removed.
|
||||||
|
///
|
||||||
|
/// This is ignored if `deprecation` is `None`.
|
||||||
|
until: Option<&'static str>,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// The different kinds of slots.
|
/// The different kinds of slots.
|
||||||
@ -275,6 +279,7 @@ impl Binding {
|
|||||||
kind: BindingKind::Normal,
|
kind: BindingKind::Normal,
|
||||||
category: None,
|
category: None,
|
||||||
deprecation: None,
|
deprecation: None,
|
||||||
|
until: None,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -289,6 +294,14 @@ impl Binding {
|
|||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Set the version in which the binding is planned to be removed.
|
||||||
|
///
|
||||||
|
/// This is ignored if [`Binding::deprecated`] isn't also set.
|
||||||
|
pub fn until(&mut self, version: &'static str) -> &mut Self {
|
||||||
|
self.until = Some(version);
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
/// Read the value.
|
/// Read the value.
|
||||||
pub fn read(&self) -> &Value {
|
pub fn read(&self) -> &Value {
|
||||||
&self.value
|
&self.value
|
||||||
@ -301,7 +314,7 @@ impl Binding {
|
|||||||
/// - pass `(&mut engine, span)` to emit a warning into the engine.
|
/// - pass `(&mut engine, span)` to emit a warning into the engine.
|
||||||
pub fn read_checked(&self, sink: impl DeprecationSink) -> &Value {
|
pub fn read_checked(&self, sink: impl DeprecationSink) -> &Value {
|
||||||
if let Some(message) = self.deprecation {
|
if let Some(message) = self.deprecation {
|
||||||
sink.emit(message);
|
sink.emit(message, self.until);
|
||||||
}
|
}
|
||||||
&self.value
|
&self.value
|
||||||
}
|
}
|
||||||
|
@ -151,7 +151,7 @@ impl Symbol {
|
|||||||
modifiers.best_match_in(list.variants().map(|(m, _, d)| (m, d)))
|
modifiers.best_match_in(list.variants().map(|(m, _, d)| (m, d)))
|
||||||
{
|
{
|
||||||
if let Some(message) = deprecation {
|
if let Some(message) = deprecation {
|
||||||
sink.emit(message)
|
sink.emit(message, None)
|
||||||
}
|
}
|
||||||
return Ok(self);
|
return Ok(self);
|
||||||
}
|
}
|
||||||
|
@ -33,7 +33,10 @@ pub fn cbor(
|
|||||||
impl cbor {
|
impl cbor {
|
||||||
/// Reads structured data from CBOR bytes.
|
/// Reads structured data from CBOR bytes.
|
||||||
#[func(title = "Decode CBOR")]
|
#[func(title = "Decode CBOR")]
|
||||||
#[deprecated = "`cbor.decode` is deprecated, directly pass bytes to `cbor` instead"]
|
#[deprecated(
|
||||||
|
message = "`cbor.decode` is deprecated, directly pass bytes to `cbor` instead",
|
||||||
|
until = "0.15.0"
|
||||||
|
)]
|
||||||
pub fn decode(
|
pub fn decode(
|
||||||
engine: &mut Engine,
|
engine: &mut Engine,
|
||||||
/// CBOR data.
|
/// CBOR data.
|
||||||
|
@ -95,7 +95,10 @@ pub fn csv(
|
|||||||
impl csv {
|
impl csv {
|
||||||
/// Reads structured data from a CSV string/bytes.
|
/// Reads structured data from a CSV string/bytes.
|
||||||
#[func(title = "Decode CSV")]
|
#[func(title = "Decode CSV")]
|
||||||
#[deprecated = "`csv.decode` is deprecated, directly pass bytes to `csv` instead"]
|
#[deprecated(
|
||||||
|
message = "`csv.decode` is deprecated, directly pass bytes to `csv` instead",
|
||||||
|
until = "0.15.0"
|
||||||
|
)]
|
||||||
pub fn decode(
|
pub fn decode(
|
||||||
engine: &mut Engine,
|
engine: &mut Engine,
|
||||||
/// CSV data.
|
/// CSV data.
|
||||||
|
@ -67,7 +67,10 @@ pub fn json(
|
|||||||
impl json {
|
impl json {
|
||||||
/// Reads structured data from a JSON string/bytes.
|
/// Reads structured data from a JSON string/bytes.
|
||||||
#[func(title = "Decode JSON")]
|
#[func(title = "Decode JSON")]
|
||||||
#[deprecated = "`json.decode` is deprecated, directly pass bytes to `json` instead"]
|
#[deprecated(
|
||||||
|
message = "`json.decode` is deprecated, directly pass bytes to `json` instead",
|
||||||
|
until = "0.15.0"
|
||||||
|
)]
|
||||||
pub fn decode(
|
pub fn decode(
|
||||||
engine: &mut Engine,
|
engine: &mut Engine,
|
||||||
/// JSON data.
|
/// JSON data.
|
||||||
|
@ -41,7 +41,10 @@ pub fn toml(
|
|||||||
impl toml {
|
impl toml {
|
||||||
/// Reads structured data from a TOML string/bytes.
|
/// Reads structured data from a TOML string/bytes.
|
||||||
#[func(title = "Decode TOML")]
|
#[func(title = "Decode TOML")]
|
||||||
#[deprecated = "`toml.decode` is deprecated, directly pass bytes to `toml` instead"]
|
#[deprecated(
|
||||||
|
message = "`toml.decode` is deprecated, directly pass bytes to `toml` instead",
|
||||||
|
until = "0.15.0"
|
||||||
|
)]
|
||||||
pub fn decode(
|
pub fn decode(
|
||||||
engine: &mut Engine,
|
engine: &mut Engine,
|
||||||
/// TOML data.
|
/// TOML data.
|
||||||
|
@ -75,7 +75,10 @@ pub fn xml(
|
|||||||
impl xml {
|
impl xml {
|
||||||
/// Reads structured data from an XML string/bytes.
|
/// Reads structured data from an XML string/bytes.
|
||||||
#[func(title = "Decode XML")]
|
#[func(title = "Decode XML")]
|
||||||
#[deprecated = "`xml.decode` is deprecated, directly pass bytes to `xml` instead"]
|
#[deprecated(
|
||||||
|
message = "`xml.decode` is deprecated, directly pass bytes to `xml` instead",
|
||||||
|
until = "0.15.0"
|
||||||
|
)]
|
||||||
pub fn decode(
|
pub fn decode(
|
||||||
engine: &mut Engine,
|
engine: &mut Engine,
|
||||||
/// XML data.
|
/// XML data.
|
||||||
|
@ -54,7 +54,10 @@ pub fn yaml(
|
|||||||
impl yaml {
|
impl yaml {
|
||||||
/// Reads structured data from a YAML string/bytes.
|
/// Reads structured data from a YAML string/bytes.
|
||||||
#[func(title = "Decode YAML")]
|
#[func(title = "Decode YAML")]
|
||||||
#[deprecated = "`yaml.decode` is deprecated, directly pass bytes to `yaml` instead"]
|
#[deprecated(
|
||||||
|
message = "`yaml.decode` is deprecated, directly pass bytes to `yaml` instead",
|
||||||
|
until = "0.15.0"
|
||||||
|
)]
|
||||||
pub fn decode(
|
pub fn decode(
|
||||||
engine: &mut Engine,
|
engine: &mut Engine,
|
||||||
/// YAML data.
|
/// YAML data.
|
||||||
|
@ -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)
|
||||||
|
@ -169,7 +169,10 @@ pub struct ImageElem {
|
|||||||
impl ImageElem {
|
impl ImageElem {
|
||||||
/// Decode a raster or vector graphic from bytes or a string.
|
/// Decode a raster or vector graphic from bytes or a string.
|
||||||
#[func(title = "Decode Image")]
|
#[func(title = "Decode Image")]
|
||||||
#[deprecated = "`image.decode` is deprecated, directly pass bytes to `image` instead"]
|
#[deprecated(
|
||||||
|
message = "`image.decode` is deprecated, directly pass bytes to `image` instead",
|
||||||
|
until = "0.15.0"
|
||||||
|
)]
|
||||||
pub fn decode(
|
pub fn decode(
|
||||||
span: Span,
|
span: Span,
|
||||||
/// The data to decode as an image. Can be a string for SVGs.
|
/// The data to decode as an image. Can be a string for SVGs.
|
||||||
|
@ -46,6 +46,7 @@ pub(super) fn define(global: &mut Scope) {
|
|||||||
.deprecated("the `path` function is deprecated, use `curve` instead");
|
.deprecated("the `path` function is deprecated, use `curve` instead");
|
||||||
global
|
global
|
||||||
.define("pattern", Type::of::<Tiling>())
|
.define("pattern", Type::of::<Tiling>())
|
||||||
.deprecated("the name `pattern` is deprecated, use `tiling` instead");
|
.deprecated("the name `pattern` is deprecated, use `tiling` instead")
|
||||||
|
.until("0.15.0");
|
||||||
global.reset_category();
|
global.reset_category();
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
use heck::ToKebabCase;
|
use heck::ToKebabCase;
|
||||||
use proc_macro2::TokenStream;
|
use proc_macro2::TokenStream;
|
||||||
use quote::quote;
|
use quote::quote;
|
||||||
use syn::{parse_quote, Result};
|
use syn::punctuated::Punctuated;
|
||||||
|
use syn::{parse_quote, MetaNameValue, Result, Token};
|
||||||
|
|
||||||
use crate::util::{foundations, BareType};
|
use crate::util::{foundations, BareType};
|
||||||
|
|
||||||
@ -53,13 +54,31 @@ pub fn scope(_: TokenStream, item: syn::Item) -> Result<TokenStream> {
|
|||||||
_ => bail!(child, "unexpected item in scope"),
|
_ => bail!(child, "unexpected item in scope"),
|
||||||
};
|
};
|
||||||
|
|
||||||
if let Some(message) = attrs.iter().find_map(|attr| match &attr.meta {
|
if let Some(attr) = attrs.iter().find(|attr| attr.path().is_ident("deprecated")) {
|
||||||
syn::Meta::NameValue(pair) if pair.path.is_ident("deprecated") => {
|
match &attr.meta {
|
||||||
Some(&pair.value)
|
syn::Meta::NameValue(pair) if pair.path.is_ident("deprecated") => {
|
||||||
|
let message = &pair.value;
|
||||||
|
def = quote! { #def.deprecated(#message) }
|
||||||
|
}
|
||||||
|
syn::Meta::List(list) if list.path.is_ident("deprecated") => {
|
||||||
|
let args = list.parse_args_with(
|
||||||
|
Punctuated::<MetaNameValue, Token![,]>::parse_separated_nonempty,
|
||||||
|
)?;
|
||||||
|
|
||||||
|
if let Some(message) = args.iter().find_map(|pair| {
|
||||||
|
pair.path.is_ident("message").then_some(&pair.value)
|
||||||
|
}) {
|
||||||
|
def = quote! { #def.deprecated(#message) }
|
||||||
|
}
|
||||||
|
|
||||||
|
if let Some(version) = args.iter().find_map(|pair| {
|
||||||
|
pair.path.is_ident("until").then_some(&pair.value)
|
||||||
|
}) {
|
||||||
|
def = quote! { #def.until(#version) }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
_ => {}
|
||||||
}
|
}
|
||||||
_ => None,
|
|
||||||
}) {
|
|
||||||
def = quote! { #def.deprecated(#message) }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
definitions.push(def);
|
definitions.push(def);
|
||||||
|
@ -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
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
--- cbor-decode-deprecated ---
|
--- cbor-decode-deprecated ---
|
||||||
// Warning: 15-21 `cbor.decode` is deprecated, directly pass bytes to `cbor` instead
|
// Warning: 15-21 `cbor.decode` is deprecated, directly pass bytes to `cbor` instead
|
||||||
|
// Hint: 15-21 this will be removed in 0.15.0
|
||||||
#let _ = cbor.decode
|
#let _ = cbor.decode
|
||||||
|
@ -32,4 +32,5 @@
|
|||||||
|
|
||||||
--- csv-decode-deprecated ---
|
--- csv-decode-deprecated ---
|
||||||
// Warning: 14-20 `csv.decode` is deprecated, directly pass bytes to `csv` instead
|
// Warning: 14-20 `csv.decode` is deprecated, directly pass bytes to `csv` instead
|
||||||
|
// Hint: 14-20 this will be removed in 0.15.0
|
||||||
#let _ = csv.decode
|
#let _ = csv.decode
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
|
|
||||||
--- json-decode-deprecated ---
|
--- json-decode-deprecated ---
|
||||||
// Warning: 15-21 `json.decode` is deprecated, directly pass bytes to `json` instead
|
// Warning: 15-21 `json.decode` is deprecated, directly pass bytes to `json` instead
|
||||||
|
// Hint: 15-21 this will be removed in 0.15.0
|
||||||
#let _ = json.decode
|
#let _ = json.decode
|
||||||
|
|
||||||
--- issue-3363-json-large-number ---
|
--- issue-3363-json-large-number ---
|
||||||
|
@ -42,4 +42,5 @@
|
|||||||
|
|
||||||
--- toml-decode-deprecated ---
|
--- toml-decode-deprecated ---
|
||||||
// Warning: 15-21 `toml.decode` is deprecated, directly pass bytes to `toml` instead
|
// Warning: 15-21 `toml.decode` is deprecated, directly pass bytes to `toml` instead
|
||||||
|
// Hint: 15-21 this will be removed in 0.15.0
|
||||||
#let _ = toml.decode
|
#let _ = toml.decode
|
||||||
|
@ -29,4 +29,5 @@
|
|||||||
|
|
||||||
--- xml-decode-deprecated ---
|
--- xml-decode-deprecated ---
|
||||||
// Warning: 14-20 `xml.decode` is deprecated, directly pass bytes to `xml` instead
|
// Warning: 14-20 `xml.decode` is deprecated, directly pass bytes to `xml` instead
|
||||||
|
// Hint: 14-20 this will be removed in 0.15.0
|
||||||
#let _ = xml.decode
|
#let _ = xml.decode
|
||||||
|
@ -18,4 +18,5 @@
|
|||||||
|
|
||||||
--- yaml-decode-deprecated ---
|
--- yaml-decode-deprecated ---
|
||||||
// Warning: 15-21 `yaml.decode` is deprecated, directly pass bytes to `yaml` instead
|
// Warning: 15-21 `yaml.decode` is deprecated, directly pass bytes to `yaml` instead
|
||||||
|
// Hint: 15-21 this will be removed in 0.15.0
|
||||||
#let _ = yaml.decode
|
#let _ = yaml.decode
|
||||||
|
@ -188,26 +188,31 @@ A #box(image("/assets/images/tiger.jpg", height: 1cm, width: 80%)) B
|
|||||||
--- image-decode-svg ---
|
--- image-decode-svg ---
|
||||||
// Test parsing from svg data
|
// Test parsing from svg data
|
||||||
// Warning: 8-14 `image.decode` is deprecated, directly pass bytes to `image` instead
|
// Warning: 8-14 `image.decode` is deprecated, directly pass bytes to `image` instead
|
||||||
|
// Hint: 8-14 this will be removed in 0.15.0
|
||||||
#image.decode(`<svg xmlns="http://www.w3.org/2000/svg" height="140" width="500"><ellipse cx="200" cy="80" rx="100" ry="50" style="fill:yellow;stroke:purple;stroke-width:2" /></svg>`.text, format: "svg")
|
#image.decode(`<svg xmlns="http://www.w3.org/2000/svg" height="140" width="500"><ellipse cx="200" cy="80" rx="100" ry="50" style="fill:yellow;stroke:purple;stroke-width:2" /></svg>`.text, format: "svg")
|
||||||
|
|
||||||
--- image-decode-bad-svg ---
|
--- image-decode-bad-svg ---
|
||||||
// Error: 15-152 failed to parse SVG (missing root node at 1:1)
|
// Error: 15-152 failed to parse SVG (missing root node at 1:1)
|
||||||
// Warning: 8-14 `image.decode` is deprecated, directly pass bytes to `image` instead
|
// Warning: 8-14 `image.decode` is deprecated, directly pass bytes to `image` instead
|
||||||
|
// Hint: 8-14 this will be removed in 0.15.0
|
||||||
#image.decode(`<svg height="140" width="500"><ellipse cx="200" cy="80" rx="100" ry="50" style="fill:yellow;stroke:purple;stroke-width:2" /></svg>`.text, format: "svg")
|
#image.decode(`<svg height="140" width="500"><ellipse cx="200" cy="80" rx="100" ry="50" style="fill:yellow;stroke:purple;stroke-width:2" /></svg>`.text, format: "svg")
|
||||||
|
|
||||||
--- image-decode-detect-format ---
|
--- image-decode-detect-format ---
|
||||||
// Test format auto detect
|
// Test format auto detect
|
||||||
// Warning: 8-14 `image.decode` is deprecated, directly pass bytes to `image` instead
|
// Warning: 8-14 `image.decode` is deprecated, directly pass bytes to `image` instead
|
||||||
|
// Hint: 8-14 this will be removed in 0.15.0
|
||||||
#image.decode(read("/assets/images/tiger.jpg", encoding: none), width: 80%)
|
#image.decode(read("/assets/images/tiger.jpg", encoding: none), width: 80%)
|
||||||
|
|
||||||
--- image-decode-specify-format ---
|
--- image-decode-specify-format ---
|
||||||
// Test format manual
|
// Test format manual
|
||||||
// Warning: 8-14 `image.decode` is deprecated, directly pass bytes to `image` instead
|
// Warning: 8-14 `image.decode` is deprecated, directly pass bytes to `image` instead
|
||||||
|
// Hint: 8-14 this will be removed in 0.15.0
|
||||||
#image.decode(read("/assets/images/tiger.jpg", encoding: none), format: "jpg", width: 80%)
|
#image.decode(read("/assets/images/tiger.jpg", encoding: none), format: "jpg", width: 80%)
|
||||||
|
|
||||||
--- image-decode-specify-wrong-format ---
|
--- image-decode-specify-wrong-format ---
|
||||||
// Error: 2-91 failed to decode image (Format error decoding Png: Invalid PNG signature.)
|
// Error: 2-91 failed to decode image (Format error decoding Png: Invalid PNG signature.)
|
||||||
// Warning: 8-14 `image.decode` is deprecated, directly pass bytes to `image` instead
|
// Warning: 8-14 `image.decode` is deprecated, directly pass bytes to `image` instead
|
||||||
|
// Hint: 8-14 this will be removed in 0.15.0
|
||||||
#image.decode(read("/assets/images/tiger.jpg", encoding: none), format: "png", width: 80%)
|
#image.decode(read("/assets/images/tiger.jpg", encoding: none), format: "png", width: 80%)
|
||||||
|
|
||||||
--- image-pixmap-empty ---
|
--- image-pixmap-empty ---
|
||||||
|
@ -161,5 +161,6 @@
|
|||||||
#set page(width: auto, height: auto, margin: 0pt)
|
#set page(width: auto, height: auto, margin: 0pt)
|
||||||
|
|
||||||
// Warning: 10-17 the name `pattern` is deprecated, use `tiling` instead
|
// Warning: 10-17 the name `pattern` is deprecated, use `tiling` instead
|
||||||
|
// Hint: 10-17 this will be removed in 0.15.0
|
||||||
#let t = pattern(size: (10pt, 10pt), line(stroke: 4pt, start: (0%, 0%), end: (100%, 100%)))
|
#let t = pattern(size: (10pt, 10pt), line(stroke: 4pt, start: (0%, 0%), end: (100%, 100%)))
|
||||||
#rect(width: 50pt, height: 50pt, fill: t)
|
#rect(width: 50pt, height: 50pt, fill: t)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user