-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathutils.ts
30 lines (25 loc) · 934 Bytes
/
utils.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import { type ClassValue, clsx } from 'clsx'
import { twMerge } from 'tailwind-merge'
export const cn = (...inputs: ClassValue[]) => twMerge(clsx(inputs))
export const markdownToText = (markdown: string): string => {
let text: string = markdown
?.split('---')[2]
?.replace(/(^#+\s*)|(\n#+\s*)/g, '')
?.replace(/(\*{1,2}|_{1,2})(.*?)\1/g, '$2')
?.replace(/`{1,3}([\s\S]*?)`{1,3}/g, '')
?.replace(/!\[.*?\]\((.*?)\)|\[.*?\]\((.*?)\)/g, '$1$2')
?.replace(/^\s*[-+*]\s*/gm, '')
?.replace(/^\s*>/gm, '')
?.replace(/^\s*[-*_]\s*$/gm, '')
?.replace(/\s+/g, ' ')
?.trim()
return text || ''
}
export const getStartEndDate = () => {
const today = new Date()
today.setHours(0, 0, 0, 0)
const startOfDay = today.toISOString()
today.setHours(23, 59, 59, 999)
const endOfDay = today.toISOString()
return { startOfDay, endOfDay }
}