A CLI for publishing standard.site documents to ATProto sequoia.pub
standard site lexicon cli publishing
57
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: fixed frontmatter regex to account for windows carriage return

authored by

Steve and committed by tangled.org c85362f6 6ad685fb

+1 -1
+1 -1
packages/cli/src/lib/markdown.ts
··· 18 18 // --- (YAML) - Jekyll, Astro, most SSGs 19 19 // +++ (TOML) - Hugo 20 20 // *** - Alternative format 21 - const frontmatterRegex = /^(---|\+\+\+|\*\*\*)\n([\s\S]*?)\n\1\n([\s\S]*)$/; 21 + const frontmatterRegex = /^(---|\+\+\+|\*\*\*)\r?\n([\s\S]*?)\r?\n\1\r?\n([\s\S]*)$/; 22 22 const match = content.match(frontmatterRegex); 23 23 24 24 if (!match) {