[header]
language = idi
charset = utf-8

[data]
/\bS\.\s*Parman\b/ --> "s parman" 
/\bH\.\s*Agus\b/   -->   "haji agus"
/\bTj\./   -->   "tanjung"
/\bKh\./   -->   "kyai haji"
/\bJend\./   -->   "jenderal"
/\bno[\.]?\s+telp?[\.]?\b/i   -->   "\x1b/+no.'mor\x1b/+ telepon"
/\bno(\s+\d+)/   -->   "\x1b/+no.'mor\x1b/+ $1"
#
# avoid '.' at the end when an audio file is inserted
!(audio=\".*\"\\)+(\.)!   -->   "$1"
#
# replace slash with 100ms pause to avoid slash being read out literally (Bug JIRA: GI-704)
!(\D\d+)\/(\D\d+)!    -->   " $1 \\pause=100\\ $2 "
!(\D[-]\d+)\/(\D\d+)!    -->   " $1 \\pause=100\\ $2 "
!(\D\d+)\/(\d+)!    -->   " $1 \\pause=100\\ $2 "
!(\D[-]\d+)\/(\d+)!    -->   " $1 \\pause=100\\ $2 "
!(\D\d+)\/(\D[-]\d+)!    -->   " $1 \\pause=100\\ $2 "
!(\D[-]\d+)\/(\D[-]\d+)!    -->   " $1 \\pause=100\\ $2 "

