1/* 2 * format-jats-paths.ts 3 * 4 * Copyright (C) 2020-2023 Posit Software, PBC 5 */ 6 7import { join } from "../../deno_ral/path.ts"; 8 9import { formatResourcePath } from "../../core/resources.ts"; 10 11export const subarticleTemplatePath = formatResourcePath( 12 "jats", 13 join("pandoc", "subarticle", "template.xml"), 14); 15 16