Respect toc attribute in metadata
All checks were successful
PR Check / lint-and-format (pull_request) Successful in 3m19s
All checks were successful
PR Check / lint-and-format (pull_request) Successful in 3m19s
This commit is contained in:
parent
b46b20e693
commit
98fd99f702
4 changed files with 30 additions and 47 deletions
|
@ -21,7 +21,7 @@ pub struct FileMetadataBlog {
|
|||
pub description: Option<String>,
|
||||
pub publish: Option<bool>,
|
||||
pub tags: Option<Vec<Tag>>,
|
||||
pub toc: Option<String>,
|
||||
pub toc: Option<bool>,
|
||||
}
|
||||
|
||||
/// A tag, related to post blog
|
||||
|
@ -119,6 +119,7 @@ impl Metadata {
|
|||
pub struct File {
|
||||
pub metadata: Metadata,
|
||||
pub content: String,
|
||||
pub toc_data: String,
|
||||
}
|
||||
|
||||
/// Options used for parser and compiler MD --> HTML
|
||||
|
@ -314,6 +315,8 @@ pub fn read_md(
|
|||
html_content = custom_img_size(&html_content);
|
||||
(html_content, mail_obfsucated) = mail_obfuscation(&html_content);
|
||||
|
||||
let toc = toc_to_html(&generate_toc(root));
|
||||
|
||||
let mut final_metadata = Metadata {
|
||||
info: metadata,
|
||||
mermaid: check_mermaid(root, mermaid_name),
|
||||
|
@ -326,6 +329,7 @@ pub fn read_md(
|
|||
File {
|
||||
metadata: final_metadata,
|
||||
content: html_content,
|
||||
toc_data: toc,
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -340,15 +344,10 @@ pub fn get_metadata<'a>(root: &'a AstNode<'a>, mtype: &TypeFileMetadata) -> File
|
|||
.find_map(|node| match &node.data.borrow().value {
|
||||
// Extract metadata from frontmatter
|
||||
NodeValue::FrontMatter(text) => Some(match mtype {
|
||||
TypeFileMetadata::Blog => {
|
||||
let mut metadata: FileMetadataBlog = deserialize_metadata(text);
|
||||
metadata.toc = toc_to_html(&generate_toc(root));
|
||||
|
||||
FileMetadata {
|
||||
blog: Some(metadata),
|
||||
TypeFileMetadata::Blog => FileMetadata {
|
||||
blog: Some(deserialize_metadata(text)),
|
||||
..FileMetadata::default()
|
||||
}
|
||||
}
|
||||
},
|
||||
TypeFileMetadata::Contact => {
|
||||
let mut metadata: FileMetadataContact = deserialize_metadata(text);
|
||||
|
||||
|
@ -575,9 +574,9 @@ fn generate_toc<'a>(root: &'a AstNode<'a>) -> Vec<TOCEntry> {
|
|||
toc
|
||||
}
|
||||
|
||||
fn toc_to_html(toc: &[TOCEntry]) -> Option<String> {
|
||||
fn toc_to_html(toc: &[TOCEntry]) -> String {
|
||||
if toc.is_empty() {
|
||||
return None;
|
||||
return String::new();
|
||||
}
|
||||
|
||||
let mut html = Vec::with_capacity(20 + 20 * toc.len());
|
||||
|
@ -597,5 +596,5 @@ fn toc_to_html(toc: &[TOCEntry]) -> Option<String> {
|
|||
|
||||
html.extend_from_slice(b"</ul>");
|
||||
|
||||
Some(String::from_utf8(html).unwrap())
|
||||
String::from_utf8(html).unwrap()
|
||||
}
|
||||
|
|
|
@ -81,5 +81,6 @@ fn read_pdf(data: Vec<u8>) -> File {
|
|||
style="width: 100%; height: 79vh";
|
||||
>"#
|
||||
),
|
||||
toc_data: String::new(),
|
||||
}
|
||||
}
|
||||
|
|
|
@ -186,7 +186,6 @@ fn get_posts(location: &str) -> Vec<Post> {
|
|||
struct BlogPostTemplate {
|
||||
navbar: NavBar,
|
||||
post: Option<File>,
|
||||
toc: String,
|
||||
}
|
||||
|
||||
#[get("/blog/p/{id}")]
|
||||
|
@ -199,7 +198,7 @@ pub async fn page(path: web::Path<(String,)>, config: web::Data<Config>) -> impl
|
|||
|
||||
fn build_post(file: &str, config: Config) -> String {
|
||||
let mut post = None;
|
||||
let (infos, toc) = get_post(
|
||||
let infos = get_post(
|
||||
&mut post,
|
||||
file,
|
||||
&config.fc.name.unwrap_or_default(),
|
||||
|
@ -214,18 +213,12 @@ fn build_post(file: &str, config: Config) -> String {
|
|||
..NavBar::default()
|
||||
},
|
||||
post,
|
||||
toc,
|
||||
},
|
||||
infos,
|
||||
)
|
||||
}
|
||||
|
||||
fn get_post(
|
||||
post: &mut Option<File>,
|
||||
filename: &str,
|
||||
name: &str,
|
||||
data_dir: &str,
|
||||
) -> (InfosPage, String) {
|
||||
fn get_post(post: &mut Option<File>, filename: &str, name: &str, data_dir: &str) -> InfosPage {
|
||||
let blog_dir = format!("{data_dir}/{BLOG_DIR}/{POST_DIR}");
|
||||
let ext = ".md";
|
||||
|
||||
|
@ -234,13 +227,8 @@ fn get_post(
|
|||
&TypeFileMetadata::Blog,
|
||||
);
|
||||
|
||||
let default = (
|
||||
filename,
|
||||
&format!("Blog d'{name}"),
|
||||
Vec::new(),
|
||||
String::new(),
|
||||
);
|
||||
let (title, desc, tags, toc) = match post {
|
||||
let default = (filename, &format!("Blog d'{name}"), Vec::new());
|
||||
let (title, desc, tags) = match post {
|
||||
Some(data) => (
|
||||
match &data.metadata.info.blog.as_ref().unwrap().title {
|
||||
Some(text) => text,
|
||||
|
@ -254,15 +242,10 @@ fn get_post(
|
|||
Some(tags) => tags.clone(),
|
||||
None => default.2,
|
||||
},
|
||||
match &data.metadata.info.blog.as_ref().unwrap().toc {
|
||||
Some(toc) => toc.into(),
|
||||
_ => default.3,
|
||||
},
|
||||
),
|
||||
None => default,
|
||||
};
|
||||
|
||||
(
|
||||
InfosPage {
|
||||
title: Some(format!("Post: {title}")),
|
||||
desc: Some(desc.clone()),
|
||||
|
@ -272,9 +255,7 @@ fn get_post(
|
|||
.chain(tags.iter().map(|t| t.name.as_str()))
|
||||
.collect::<Vec<_>>(),
|
||||
)),
|
||||
},
|
||||
toc,
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
#[routes]
|
||||
|
|
|
@ -28,7 +28,9 @@
|
|||
<main>
|
||||
{{^post}}
|
||||
<p>This post doesn't exist... sorry</p>
|
||||
{{/post}} {{#post}} {{&toc}}
|
||||
{{/post}} {{#post}} {{#metadata}} {{#info}} {{#blog}} {{#toc}}
|
||||
<aside>{{&toc_data}}</aside>
|
||||
{{/toc}} {{/blog}} {{/info}} {{/metadata}}
|
||||
<article>{{&content}}</article>
|
||||
{{/post}}
|
||||
</main>
|
||||
|
|
Loading…
Reference in a new issue