You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The AssUnknownTag approach won't work because we don't know the grammar of unknown tags. We don't know where they end and where a comment should start.
Since I don't have time to actively maintain this project, please consider opening a pull request that introduces strict argument to the parse function which ignores exceptions and treats unknown tags as comments.
Currently, ass_tag_parser can't parse VSFilterMod tag which is totally ok, because they have they are useless.
But, it would be better if it could not raise an exception. It should simply have a class for unknowtag.
Here is the code I have:
What it currently does:
ass_tag_parser.errors.BadAssTagArgument: syntax error at pos 16: \fs requires an integer
What it could do:
[AssTagListOpening(), AssTagFontName(name='Jester'), AssUnknowTag(text=fsc20), AssTagListEnding(), AssText(text='test')]
The text was updated successfully, but these errors were encountered: