diff --git a/src/frontmatter/frontmatter.ts b/src/frontmatter/frontmatter.ts index e10fa7d..e849874 100644 --- a/src/frontmatter/frontmatter.ts +++ b/src/frontmatter/frontmatter.ts @@ -96,7 +96,7 @@ export class Frontmatter implements IFrontmatter { } public static getFrontmatterBlock(value: string): Optional { - const match = value.match(/^(\s*\n)?---.*?\n---/s); + const match = value.match(/^(\s*\n)?---(?:.|[\n\r\u2028\u2029])*?\n---/); return match === null ? void 0 : match[0]; }