mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-24 21:12:38 -04:00
9875e55a27
GitOrigin-RevId: ec8788fdbc8aea73ca33ec2810f4e588fe9476b5
17 lines
318 B
JavaScript
17 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}`
|
|
}
|
|
},
|
|
}
|