Merge b2a2387e2ab1321511f1c1ef5a710004ffa0af1f into 36ecbb2c8dccc1a31c43fee1466f1425844d8607

This commit is contained in:
Robin 2025-07-07 16:12:36 +00:00 committed by GitHub
commit 811d8c87dc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -18,7 +18,7 @@ use crate::foundations::{cast, func, Context, Func, Str, Value};
/// ///
/// A numbering pattern consists of counting symbols, for which the actual /// A numbering pattern consists of counting symbols, for which the actual
/// number is substituted, their prefixes, and one suffix. The prefixes and the /// number is substituted, their prefixes, and one suffix. The prefixes and the
/// suffix are repeated as-is. /// suffix are displayed as-is.
/// ///
/// # Example /// # Example
/// ```example /// ```example
@ -66,10 +66,10 @@ pub fn numbering(
/// items, the number is represented using repeated symbols. /// items, the number is represented using repeated symbols.
/// ///
/// **Suffixes** are all characters after the last counting symbol. They are /// **Suffixes** are all characters after the last counting symbol. They are
/// repeated as-is at the end of any rendered number. /// displayed as-is at the end of any rendered number.
/// ///
/// **Prefixes** are all characters that are neither counting symbols nor /// **Prefixes** are all characters that are neither counting symbols nor
/// suffixes. They are repeated as-is at in front of their rendered /// suffixes. They are displayed as-is at in front of their rendered
/// equivalent of their counting symbol. /// equivalent of their counting symbol.
/// ///
/// This parameter can also be an arbitrary function that gets each number /// This parameter can also be an arbitrary function that gets each number