We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27b5544 commit 0875527Copy full SHA for 0875527
2 files changed
apps/web/src/data/blogs.ts
@@ -21,7 +21,7 @@ export const blogs: BlogPost[] = [
21
},
22
{
23
date: "06-12-25",
24
- linkText: "why opensox ai doesn't do \"follow-ups\"?",
+ linkText: 'why opensox ai doesn\'t do "follow-ups"?',
25
link: "https://x.com/ajeetunc/status/1997309049910730995?s=20",
26
tag: "startup",
27
apps/web/types/sanitize-html.d.ts
@@ -0,0 +1,12 @@
1
+declare module "sanitize-html" {
2
+ export interface IOptions {
3
+ allowedTags?: string[];
4
+ allowedAttributes?: Record<string, string[]>;
5
+ allowedSchemes?: string[];
6
+ [key: string]: any;
7
+ }
8
+
9
+ function sanitizeHtml(dirty: string, options?: IOptions): string;
10
+ export default sanitizeHtml;
11
+}
12
0 commit comments