Closed lucamolteni closed 4 years ago
Ah thanks for pointing this out. I intended for the regex to match the last number in the field name but currently it doesn't allow numbers within the field. I'll update the documentation and improve the regex separately.
According to documentation
Note: You can have more than one field with cloze content per note. For example, you could have fields
Example1Cloze
andExample2Cloze
. Each can be used to generate cards.But this regexp
/^[^\d]+(\d+)$/
Will match the first number and use it for the field.By using
and
This works accordingly