mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-06 07:39:02 +02:00
5da684cace
GitOrigin-RevId: ec8788fdbc8aea73ca33ec2810f4e588fe9476b5
18 lines
318 B
JavaScript
18 lines
318 B
JavaScript
const version = {
|
|
// Upgrade instructions: https://github.com/overleaf/write_latex/wiki/Upgrading-Ace
|
|
mathjax: '2.7.9',
|
|
'mathjax-3': '3.2.2',
|
|
}
|
|
|
|
module.exports = {
|
|
version,
|
|
|
|
lib(name) {
|
|
if (version[name] != null) {
|
|
return `${name}-${version[name]}`
|
|
} else {
|
|
return `${name}`
|
|
}
|
|
},
|
|
}
|