This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / web / src / lib / markup / format.ts
208 B 4 lines
1// the extensions appview/pages/markup/format.go treats as markdown 2const MARKDOWN = /\.(md|markdown|mdown|mkdn|mkd)$/i; 3 4export const isMarkdownFile = (filename: string): boolean => MARKDOWN.test(filename);