| Left align the current tag !
| If we're inside a tag, move to the end
TMT_IF "INHTMLTAG THEN SEARCHFORWARD "">"""
| If we're at the end of a tag, we'll centre
LEFT
#IfText ">"
 SEARCHBACK "<"
 SEARCHFORWARD "align\|>"
 LEFT
 | Did we find an 'align' tag ?
 #IfText "n"
  | Yes, so let's delete it !
  BLOCKUNTIL " >"
  CUT
 #Else
  INSERT " "
 #EndIf
 INSERT "align=left"
 SEARCHFORWARD ">"
#Else
 RIGHT
#EndIf
