We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 068195c commit 1f7aea6Copy full SHA for 1f7aea6
1 file changed
apps/api/services/markdown/MarkdownService.ts
@@ -94,7 +94,8 @@ export class MarkdownService {
94
/^[-*+]\s+/m, // Lists
95
/^>\s+/m, // Blockquotes
96
/`[^`]+`/, // Inline code
97
- /^```/m // Code blocks
+ /^```/m, // Code blocks
98
+ /\|.+\|.+\|/m // Tables (GFM)
99
];
100
101
return markdownPatterns.some((pattern) => pattern.test(content));
0 commit comments