Page 1 of 1
Show attachments inline
Posted: Fri Sep 15, 2006 3:03 am
by tommyd
How can I change the default file extensions shown inline?
Posted: Fri Sep 15, 2006 3:24 am
by alex
the syntax is boolean wildmats, the same as described here
http://www.netwu.com/ue/help/patterns.htm
so if e.g. you want to leave only nfo and txt extensions you can use
*.nfo|*.txt
or even
.nfo|.txt
since the asterisk is not actually needed
in short you can put in properties->articles->show attachments inline anything within the revised in v1.7 boolean wildmat syntax
| in boolean wildmats means OR (so you cannot use something like "*.nfo, *.txt" or "*.nfo *.txt" because it won't give any matches)