10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-22 10:47:42 +02:00

Support $\sim$

This commit is contained in:
Mickaël Véril 2020-02-05 09:51:54 +01:00
parent c897c5e1ff
commit 4d4f1acf30

View File

@ -23,8 +23,13 @@ def desarg(tex):
return nodify(lst,tex.name,tex.parent)
def getValFromCell(cell):
unsafe=False
val= list(cell.contents)[0]
if type(val) is TexNode and val.name=='emph':
lst= list(cell.contents)
val= lst[0]
if type(val) is TexNode and str(val.expr)=='$\sim$' :
unsafe=True
val = lst[1]
val=checkFloat(str(val))
elif type(val) is TexNode and val.name=='emph':
unsafe=True
val=val.string
val=checkFloat(str(val))