feat: created recipe files

This commit is contained in:
Leyla Becker 2026-02-12 18:48:42 -06:00
parent 0d5bb62775
commit 0152503a52
120 changed files with 3471 additions and 2 deletions

View file

@ -59,7 +59,7 @@ const isReleased = (post) => {
}
const markdownItHashtag = (md) => {
const hashtagRegex = /^#([a-zA-Z][a-zA-Z0-9_]*)(?![a-zA-Z0-9_-])/;
const hashtagRegex = /^#([a-zA-Z][a-zA-Z0-9_\/]*)(?![a-zA-Z0-9_-])/;
const HASH_CODE = '#'.charCodeAt(0);
const SPACE_CODE = ' '.charCodeAt(0);