mirror of
https://github.com/LCPQ/QUESTDB_website.git
synced 2024-12-25 05:43:46 +01:00
Skip bug
This commit is contained in:
parent
4c72f4ff5d
commit
ee1ab50501
@ -51,7 +51,11 @@ class newCommand(commandBase):
|
||||
if str(tex)==str(cmd):
|
||||
tex.expr=fres.expr
|
||||
else:
|
||||
try:
|
||||
tex.replace(cmd,fres)
|
||||
except:
|
||||
return False
|
||||
return True
|
||||
def tryRun(self,tex):
|
||||
cmds=list(tex.find_all(self.commandName))
|
||||
if len(cmds)!=0:
|
||||
@ -68,7 +72,9 @@ class newCommand(commandBase):
|
||||
cmds=[cmd for cmd in collection if cmd.exist(tex)]
|
||||
if(len(cmds)>0):
|
||||
for cmd in cmds:
|
||||
cmd.run(tex)
|
||||
if not cmd.run(tex):
|
||||
cmds.remove(cmd)
|
||||
collection.remove(cmd)
|
||||
newCommand.runAll(tex,collection)
|
||||
class columnAlignment(Enum):
|
||||
Left = "l"
|
||||
|
Loading…
Reference in New Issue
Block a user