# lltag internal format database
# each entry is composed of:
#   [natural format]
#	format will be shown when matching
#   type = filename or path
#	does this format apply to the wall path or only the filename ?
#   regexp = 
#	internal regexp with	%L for limiting space
#				%S for a space
#				%N for a numeric string
#				%A for an alphanumeric string without /
#				%P for any path (alphanumeric string with /)
#				%% for %
#				any other character will remain unchanged
#   indices = list of comma-separed letter indicated what %N or %A means
#	      in the regexp:	a for author
#				A for album
#				g for genre
#				n for track number
#				t for title
#				y for year

[%n - %a - %t]
type = filename
regexp = %L%N%S-%S%A%S-%S%A%L
indices = n,a,t

[%n - %t]
type = filename
regexp = %L%N%S-%S%A%L
indices = n,t

[%n. %t]
type = filename
regexp = %L%N.%S%A%L
indices = n,t

[%n) %t]
type = filename
regexp = %L%N)%S%A%L
indices = n,t

[%a - %n - %t]
type = filename
regexp = %L%A%S-%S%N%S-%S%A%L
indices = a,n,t

[%a - %t]
type = filename
regexp = %L%A%S-%S%A%L
indices = a,t

[%t]
type = filename
regexp = %L%A%L
indices = t

[%a/%a - %A]
type = path
regexp = %P%L%A%L/%L%A%S-%S%A%L
indices = a,a,A

[%a/%A]
type = path
regexp = %P%L%A%L/%L%A%L
indices = a,A

[%a - %A]
type = path
regexp = %P%L%A%S-%S%A%L
indices = a,A

[%a]
type = path
regexp = %P%L%A%L
indices = a

[%A]
type = path
regexp = %P%L%A%L
indices = A

