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
//! Shared markdown parsing configuration
//!
//! This module provides centralized ParseOptions for consistent markdown parsing
//! across the Sherwood codebase, eliminating duplication.
use ParseOptions;
/// Creates ParseOptions with frontmatter support enabled
///
/// This is the most common configuration used throughout the codebase
/// for parsing markdown content that contains frontmatter.
/// Creates ParseOptions with frontmatter and GFM strikethrough support
///
/// This configuration is used when parsing markdown that may contain
/// GitHub-flavored markdown strikethrough syntax.
/// Creates default ParseOptions for basic markdown parsing
///
/// Use this when you need standard markdown parsing without frontmatter
/// or other specific constructs.