Quote:
Originally Posted by JimmXinu
You have:
Code:
include_in_warnings:freeformtags
## and:
freefromtags,warnings==Graphic Depictions of Violence
You want:
Code:
include_in_warnings:freeformtags,warnings
## and:
freefromtags,warnings~=Graphic Depictions [Oo]f Violence
|
Thanks as always for the quick response!

You're the best!!
Btw, when I use this:
Quote:
freefromtags,warnings~=Graphic Depictions [Oo]f Violence
|
It says 428: Error 'list' object has no attribute 'split' in (include_metadata_post:...
but it works fine when I replace the ~= with ==
Edit: I figured out that it seems to be a typo? =~ works. I could be totally wrong and it's not a typo, but equal tilde is an operator I can find documentation on. It seems to allow inexact matching in regex? I'm learning!