Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/format/jats/format-jats-paths.ts
6468 views
1
/*
2
* format-jats-paths.ts
3
*
4
* Copyright (C) 2020-2023 Posit Software, PBC
5
*/
6
7
import { join } from "../../deno_ral/path.ts";
8
9
import { formatResourcePath } from "../../core/resources.ts";
10
11
export const subarticleTemplatePath = formatResourcePath(
12
"jats",
13
join("pandoc", "subarticle", "template.xml"),
14
);
15
16