This commit is contained in:
Maciej Jur 2024-09-16 23:20:08 +02:00
parent 1c9d234430
commit 730b9aa4f8
Signed by: kamov
GPG key ID: 191CBFF5F72ECAFD
2 changed files with 32 additions and 25 deletions

View file

@ -12,7 +12,7 @@ socket.addEventListener("message", (event) => {
pub(crate) fn render_head<'s, 'r>(
sack: &'s Sack,
title: String,
styles: &'s [&str],
_styles: &'s [&str],
scripts: Option<&'s [String]>,
) -> Result<impl Renderable + 'r, String>
where
@ -63,7 +63,10 @@ fn render_style(style: &HashedStyle) -> impl Renderable + '_ {
)
}
fn emit_tags_script<'a>(sack: &'a Sack, scripts: &'a [String]) -> Result<impl Renderable + 'a, String> {
fn emit_tags_script<'a>(
sack: &'a Sack,
scripts: &'a [String],
) -> Result<impl Renderable + 'a, String> {
let tags = scripts
.iter()
.map(|script| emit_tag_script(sack, script))

View file

@ -1,3 +1,5 @@
use std::fmt::Write;
use camino::Utf8Path;
use chrono::{DateTime, Utc};
use hauchiwa::{Bibliography, Outline, Sack};
@ -37,13 +39,15 @@ pub fn parse_content(
.collect::<Vec<_>>()
})
.map(|stack| match stack.len() > 1 {
true => format!(
"<section>{}</section>",
stack
.into_iter()
.map(|slide| format!("<section>{slide}</section>"))
.collect::<String>()
),
true => {
let mut buffer = String::from("<section>");
for slide in stack {
write!(buffer, "<section>{}</section>", slide).unwrap();
}
buffer
}
false => format!("<section>{}</section>", stack[0]),
})
.collect::<String>();