Bump dependencies, add justfile comments, apply fixes
This commit is contained in:
parent
c18b656125
commit
aab419a18a
4 changed files with 62 additions and 55 deletions
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue