Skip to content

Commit cc7d15d

Browse files
build: fix
1 parent f08894a commit cc7d15d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ impl PreProcessor for LinkOrInclude {
112112
*/
113113
struct AlwaysInclude;
114114

115-
impl PreProcessor for LinkOrInclude {
115+
impl PreProcessor for AlwaysInclude {
116116
fn transform(&self, build_context: &BuildContext<'_>, content: String) -> String {
117117
let pattern = Regex::from_str(r#"\{\{include\|./((?:\w+/)+)(\w+)\}\}"#).unwrap();
118118
pattern.replace_all(content.as_str(), |captures: &Captures| {

0 commit comments

Comments
 (0)