chore: worker cleanup

This commit is contained in:
Cory Dransfeldt 2024-10-18 11:44:47 -07:00
parent 8b2648f23f
commit 3aadaeb741
No known key found for this signature in database
10 changed files with 464 additions and 425 deletions

View file

@ -0,0 +1,4 @@
import markdownIt from 'markdown-it'
export const formatDate = (date) => new Date(date).toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' })
export const md = markdownIt({ html: true, linkify: true })