pub fn hyperstrings_to_string(
page_map: HashMap<String, Page>,
hyperstrings: Vec<Hyperstring>,
) -> String {
hyperstrings
.into_iter()
.rev()
.map(|hs| hs.to_plaintext(&page_map))
.collect::<Vec<_>>()
.join("\n\n")
}