blob: 7c23a09d5ff8fe000ec0cf5dc62af33ce989bbf5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
pub const REPLACEMENT_CHAPTER: &str = "lpm::new_chapter_name";
pub const REPLACEMENT_FIGURE: &str = "lpm::new_figure_name";
pub const REPLACMENT_SECTION: &str = "lpm::new_section_name";
pub const DATE: &str = "lpm::current_date";
pub const REPLACEMENT_CHAPTER_SECTION: &str = "lpm::current_chapter_name::title_case";
pub mod marker {
pub const NEXT_CHAPTER: &str = "% lpm::next_chapter_marker";
pub const NEXT_CHAPTER_INCLUDE_ONLY: &str = "% lpm::next_chapter_includeonly_marker";
}
|