Bump dependencies, add justfile comments, apply fixes

This commit is contained in:
Juno Takano 2026-06-01 14:26:42 -03:00
commit aab419a18a
4 changed files with 62 additions and 55 deletions

View file

@ -40,7 +40,7 @@ impl Parseable for Quote {
let content = if let Some(citation) = &self.citation {
format!(
r#"{}<br/><cite class="quote-citation">{citation}</cite>"#,
&self.text
self.text
)
} else {
String::from(&self.text)

View file

@ -122,8 +122,8 @@ mod tests {
table.add_header("C");
let table_token = Token::Table(table.clone());
assert_eq!(format!("{table}"), format!("Table [+3 headers]"));
assert_eq!(format!("{table_token}"), format!("Tk:Table [+3 headers]"));
assert_eq!(format!("{table}"), "Table [+3 headers]");
assert_eq!(format!("{table_token}"), "Tk:Table [+3 headers]");
table.add_row(
["1", "2", "3"]