guidebook 0.1.73

HonKit/GitBook compatible static book generator
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
//! Front Matter parser for Markdown files
//!
//! Parses YAML front matter from markdown files in the format:
//! ```markdown
//! ---
//! title: Custom Title
//! description: Page description
//! ---
//!
//! # Content
//! ```

use serde::Deserialize;

/// Front matter metadata extracted from markdown files
#[derive(Debug, Clone, Default, Deserialize)]
pub struct FrontMatter {
    /// Custom page title (overrides default from SUMMARY.md)
    #[serde(default)]
    pub title: Option<String>,

    /// Page description for meta tags
    #[serde(default)]
    pub description: Option<String>,

    /// Additional custom fields (for extensibility)
    #[serde(flatten)]
    #[allow(dead_code)]
    pub extra: std::collections::HashMap<String, serde_yaml::Value>,
}

/// Result of parsing front matter from markdown content
#[derive(Debug)]
pub struct ParsedContent {
    /// The extracted front matter (if any)
    pub front_matter: Option<FrontMatter>,

    /// The remaining markdown content without front matter
    pub content: String,
}

/// Parse front matter from markdown content
///
/// Front matter must be at the very beginning of the file and enclosed by `---` delimiters.
///
/// # Examples
///
/// ```
/// use guidebook::parser::frontmatter::parse_front_matter;
///
/// let content = r#"---
/// title: My Page
/// description: This is my page
/// ---
///
/// # Hello World
/// "#;
///
/// let parsed = parse_front_matter(content);
/// assert!(parsed.front_matter.is_some());
/// let fm = parsed.front_matter.unwrap();
/// assert_eq!(fm.title.as_deref(), Some("My Page"));
/// assert_eq!(fm.description.as_deref(), Some("This is my page"));
/// ```
pub fn parse_front_matter(content: &str) -> ParsedContent {
    // Check if content starts with front matter delimiter.
    // Strip a UTF-8 BOM first — trim_start() does not remove U+FEFF, so a
    // BOM-prefixed file would silently lose its front matter otherwise.
    let trimmed = content.trim_start_matches('\u{FEFF}').trim_start();
    if !trimmed.starts_with("---") {
        return ParsedContent {
            front_matter: None,
            content: content.to_string(),
        };
    }

    // Find the end of the opening delimiter line
    let after_opening = match trimmed.strip_prefix("---") {
        Some(rest) => rest,
        None => {
            return ParsedContent {
                front_matter: None,
                content: content.to_string(),
            }
        }
    };

    // Skip any whitespace/newline after opening ---
    let after_opening = after_opening.trim_start_matches([' ', '\t']);
    let after_opening = if let Some(rest) = after_opening.strip_prefix("\r\n") {
        rest
    } else if let Some(rest) = after_opening.strip_prefix('\n') {
        rest
    } else if after_opening.is_empty() {
        after_opening
    } else {
        // Something unexpected after ---, not valid front matter
        return ParsedContent {
            front_matter: None,
            content: content.to_string(),
        };
    };

    // Find the closing ---
    // First, check if the content starts with --- (empty front matter case)
    let (yaml_content, remaining) = if let Some(rest) = after_opening.strip_prefix("---\r\n") {
        ("", rest)
    } else if let Some(rest) = after_opening.strip_prefix("---\n") {
        ("", rest)
    } else if after_opening == "---" {
        ("", "")
    } else {
        // Look for the closing delimiter: a line that is exactly "---".
        // A loose substring search (e.g. "\n---") would also match lines
        // like "----" and silently corrupt the front matter / body split.
        let mut found: Option<(usize, usize)> = None; // (yaml_end, body_start)
        let mut search = 0usize;

        while let Some(nl) = after_opening[search..].find('\n') {
            let line_start = search + nl + 1;
            let line_end = after_opening[line_start..]
                .find('\n')
                .map(|p| line_start + p)
                .unwrap_or(after_opening.len());
            let line = after_opening[line_start..line_end].trim_end_matches('\r');

            if line == "---" {
                let body_start = if line_end < after_opening.len() {
                    line_end + 1
                } else {
                    after_opening.len()
                };
                found = Some((search + nl, body_start));
                break;
            }
            search = line_start;
        }

        match found {
            Some((yaml_end, body_start)) => {
                let yaml = after_opening[..yaml_end].trim_end_matches('\r');
                let after_closing = &after_opening[body_start..];
                (yaml, after_closing)
            }
            None => {
                // No closing delimiter found
                return ParsedContent {
                    front_matter: None,
                    content: content.to_string(),
                };
            }
        }
    };

    // Parse the YAML content
    match serde_yaml::from_str::<FrontMatter>(yaml_content) {
        Ok(fm) => ParsedContent {
            front_matter: Some(fm),
            content: remaining.to_string(),
        },
        Err(_) => {
            // YAML parsing failed, return original content
            ParsedContent {
                front_matter: None,
                content: content.to_string(),
            }
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_parse_with_front_matter() {
        let content = r#"---
title: My Custom Title
description: This is a description
---

# Hello World

Some content here.
"#;
        let parsed = parse_front_matter(content);
        assert!(parsed.front_matter.is_some());

        let fm = parsed.front_matter.unwrap();
        assert_eq!(fm.title.as_deref(), Some("My Custom Title"));
        assert_eq!(fm.description.as_deref(), Some("This is a description"));
        assert!(parsed.content.contains("# Hello World"));
        assert!(!parsed.content.contains("My Custom Title"));
    }

    #[test]
    fn test_parse_without_front_matter() {
        let content = r#"# Hello World

Some content here.
"#;
        let parsed = parse_front_matter(content);
        assert!(parsed.front_matter.is_none());
        assert_eq!(parsed.content, content);
    }

    #[test]
    fn test_parse_with_only_title() {
        let content = r#"---
title: Only Title
---

Content
"#;
        let parsed = parse_front_matter(content);
        assert!(parsed.front_matter.is_some());

        let fm = parsed.front_matter.unwrap();
        assert_eq!(fm.title.as_deref(), Some("Only Title"));
        assert!(fm.description.is_none());
    }

    #[test]
    fn test_parse_with_empty_front_matter() {
        let content = r#"---
---

Content
"#;
        let parsed = parse_front_matter(content);
        assert!(parsed.front_matter.is_some());

        let fm = parsed.front_matter.unwrap();
        assert!(fm.title.is_none());
        assert!(fm.description.is_none());
    }

    #[test]
    fn test_parse_with_extra_fields() {
        let content = r#"---
title: Test
author: John Doe
custom_field: value
---

Content
"#;
        let parsed = parse_front_matter(content);
        assert!(parsed.front_matter.is_some());

        let fm = parsed.front_matter.unwrap();
        assert_eq!(fm.title.as_deref(), Some("Test"));
        assert!(fm.extra.contains_key("author"));
        assert!(fm.extra.contains_key("custom_field"));
    }

    #[test]
    fn test_parse_invalid_yaml() {
        let content = r#"---
title: [invalid yaml
---

Content
"#;
        let parsed = parse_front_matter(content);
        // Invalid YAML should return original content
        assert!(parsed.front_matter.is_none());
        assert_eq!(parsed.content, content);
    }

    #[test]
    fn test_parse_not_at_start() {
        let content = r#"Some text first

---
title: Not Front Matter
---

Content
"#;
        let parsed = parse_front_matter(content);
        // Front matter must be at the start
        assert!(parsed.front_matter.is_none());
        assert_eq!(parsed.content, content);
    }

    #[test]
    fn test_parse_no_closing_delimiter() {
        let content = r#"---
title: No Closing

Content
"#;
        let parsed = parse_front_matter(content);
        assert!(parsed.front_matter.is_none());
        assert_eq!(parsed.content, content);
    }

    #[test]
    fn test_parse_japanese_content() {
        let content = r#"---
title: Japanese Title
description: Japanese description
---

# Japanese Content
"#;
        let parsed = parse_front_matter(content);
        assert!(parsed.front_matter.is_some());

        let fm = parsed.front_matter.unwrap();
        assert_eq!(fm.title.as_deref(), Some("Japanese Title"));
        assert_eq!(fm.description.as_deref(), Some("Japanese description"));
    }

    // ── Fuzz-like edge case tests ──

    #[test]
    fn test_fuzz_empty_input() {
        let parsed = parse_front_matter("");
        assert!(parsed.front_matter.is_none());
    }

    #[test]
    fn test_fuzz_only_delimiters() {
        let parsed = parse_front_matter("---\n---");
        assert!(parsed.front_matter.is_some());
    }

    #[test]
    fn test_fuzz_triple_delimiters() {
        let parsed = parse_front_matter("---\ntitle: A\n---\n---\ntitle: B\n---");
        // Only the first front matter block should be parsed
        assert!(parsed.front_matter.is_some());
    }

    #[test]
    fn test_fuzz_binary_in_yaml() {
        let content = "---\ntitle: \x00\x01\x7f\n---\nContent";
        let parsed = parse_front_matter(content);
        // Should not panic, may or may not parse
        let _ = parsed;
    }

    #[test]
    fn test_fuzz_very_long_yaml() {
        let title = "T".repeat(100_000);
        let content = format!("---\ntitle: {}\n---\nContent", title);
        let parsed = parse_front_matter(&content);
        assert!(parsed.front_matter.is_some());
    }

    #[test]
    fn test_fuzz_nested_yaml() {
        let content = "---\ntitle:\n  nested:\n    deep: value\n---\nContent";
        let parsed = parse_front_matter(content);
        // Should handle nested YAML without panic
        let _ = parsed;
    }

    #[test]
    fn test_fuzz_yaml_with_special_chars() {
        let content = "---\ntitle: \"quote: \\\"escaped\\\"\"\ndescription: 'single: \\'quoted\\''\n---\nContent";
        let parsed = parse_front_matter(content);
        let _ = parsed;
    }

    #[test]
    fn test_four_dash_line_is_not_closing_delimiter() {
        // Regression: the loose "\n---" pattern matched "----" lines and
        // silently corrupted the front matter / body split
        let content = "---\ntitle: Test\n----\nBody content here\n";
        let parsed = parse_front_matter(content);
        // "----" must NOT close the front matter; with no real closing
        // delimiter the whole content is returned untouched
        assert!(parsed.front_matter.is_none());
        assert_eq!(parsed.content, content);
    }

    #[test]
    fn test_dash_ruler_in_body_not_confused() {
        let content = "---\ntitle: Test\n---\nBody\n\n----\n\nMore body\n";
        let parsed = parse_front_matter(content);
        assert_eq!(
            parsed.front_matter.and_then(|f| f.title),
            Some("Test".to_string())
        );
        assert!(parsed.content.contains("----"));
        assert!(parsed.content.contains("More body"));
    }

    #[test]
    fn test_bom_prefixed_front_matter_detected() {
        // Regression: trim_start() does not strip U+FEFF, so BOM-prefixed
        // files silently lost their front matter
        let content = "\u{FEFF}---\ntitle: Bom\n---\nBody\n";
        let parsed = parse_front_matter(content);
        assert_eq!(
            parsed.front_matter.and_then(|f| f.title),
            Some("Bom".to_string())
        );
        assert_eq!(parsed.content, "Body\n");
    }

    #[test]
    fn test_closing_delimiter_with_crlf() {
        let content = "---\r\ntitle: Test\r\n---\r\nBody\r\n";
        let parsed = parse_front_matter(content);
        assert_eq!(
            parsed.front_matter.and_then(|f| f.title),
            Some("Test".to_string())
        );
        assert!(parsed.content.starts_with("Body"));
    }
}