This might work for you (GNU sed):
sed 'N;/^\[tr\]\n\[\/tr\]$/d;P;D' file
Open a two line window using the N command.
If the first line of the window is [tr] and second line [/tr], delete both lines.
Otherwise, print and delete the first of the two lines and repeat.
N.B. The D deletes upto and including the first newline. It also has the side effect in that if the pattern space still contains characters after it has been executed the implicit fetch of the next line into the pattern is not carried out and as the first command of the above program is the N command the two line window is preserved i.e. the next line is appended to what would have been the second line of the pattern space or more simply the last line that was appended.
sed '/^\[tr]$/{N;/\n\[\/tr]$/d}', maybe.