mirror of
https://github.com/LCPQ/QUESTDB_website.git
synced 2024-11-03 20:53:59 +01:00
11 lines
199 B
JavaScript
11 lines
199 B
JavaScript
class MathJaxUtils {
|
|
static get start(){
|
|
return '\\('
|
|
}
|
|
static get end(){
|
|
return '\\)'
|
|
}
|
|
static getMathJaxString(string){
|
|
return MathJaxUtils.start+string+MathJaxUtils.end
|
|
}
|
|
} |