10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-03 18:06:06 +02:00
QUESTDB_website/static/js/MathJaxUtils.js

11 lines
199 B
JavaScript
Raw Normal View History

2020-04-23 17:12:33 +02:00
class MathJaxUtils {
static get start(){
return '\\('
}
static get end(){
return '\\)'
}
static getMathJaxString(string){
return MathJaxUtils.start+string+MathJaxUtils.end
}
}