mirror of
https://github.com/LCPQ/QUESTDB_website.git
synced 2024-12-25 05:43:46 +01:00
Support $\sim$
This commit is contained in:
parent
c897c5e1ff
commit
4d4f1acf30
@ -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))
|
||||
|
Loading…
Reference in New Issue
Block a user