We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70316ab commit 567fdc4Copy full SHA for 567fdc4
src/pages.rs
@@ -64,6 +64,6 @@ pub async fn quote() -> Response {
64
/// Returns a plain text random quote without any HTML.
65
pub async fn plain_quote() -> Response {
66
let Quote { text, author } = random_quote();
67
- let formatted_quote: String = format!("\"{}\"\n - {}", text, author);
+ let formatted_quote: String = format!("{text}\n\n - {author}\n");
68
Html(formatted_quote).into_response()
69
}
0 commit comments