mirror of
https://github.com/borbann-platform/srs-document.git
synced 2025-12-18 12:14:04 +01:00
31 lines
898 B
JavaScript
31 lines
898 B
JavaScript
const macros = {
|
|
cref: { signature: "s m" },
|
|
Cref: { signature: "s m" },
|
|
crefrange: { signature: "s m m" },
|
|
Crefrange: { signature: "s m m" },
|
|
cpageref: { signature: "s m" },
|
|
Cpageref: { signature: "s m" },
|
|
ref: { signature: "m" },
|
|
pageref: { signature: "m" },
|
|
namecref: { signature: "m" },
|
|
nameCref: { signature: "m" },
|
|
lcnamecref: { signature: "m" },
|
|
namecrefs: { signature: "m" },
|
|
nameCrefs: { signature: "m" },
|
|
lcnamecrefs: { signature: "m" },
|
|
labelcref: { signature: "m" },
|
|
labelcpageref: { signature: "m" },
|
|
crefalias: { signature: "m m" },
|
|
crefname: { signature: "m m m" },
|
|
// XXX there are many more obscure commands to add here
|
|
// https://ctan.org/pkg/cleveref
|
|
crefdefaultlabelformat: { signature: "m" },
|
|
crefrangeconjunction: { signature: "m" }
|
|
};
|
|
const environments = {};
|
|
export {
|
|
environments,
|
|
macros
|
|
};
|
|
//# sourceMappingURL=index.js.map
|