Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/execute/qmd.ts
6453 views
1
/*
2
* qmd.ts
3
*
4
* Copyright (C) 2020-2022 Posit Software, PBC
5
*/
6
7
import { extname } from "../deno_ral/path.ts";
8
import { kQmdExtensions } from "./types.ts";
9
10
export function isQmdFile(file: string) {
11
const ext = extname(file).toLowerCase();
12
return kQmdExtensions.includes(ext);
13
}
14
15