From 164e562acd4f153669df80b569b8acc7e6ff60be Mon Sep 17 00:00:00 2001 From: yggverse Date: Tue, 9 Sep 2025 12:12:31 +0300 Subject: [PATCH] implement semantic titles for search and pagination requests --- src/main.rs | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index d20c238..54678d5 100644 --- a/src/main.rs +++ b/src/main.rs @@ -319,7 +319,23 @@ fn list(state: &State, keyword: Option<&str>, page: Option) -> Result 1 + { + h.push_str(&format!("Page {p} • ")); + } + + h.push_str(&state.name); + h + })); if let Some(ref description) = state.description { b.push(format!("{description}\n"));