Select the types of activity you want to include in your feed.
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);