Testing...

[pascal]
TestVar := 1;
[/pascal]

Hmmm, that should have been:
Code:
TestVar := 1;
it seems that have gotten rid of everything before the first number.

[pascal]
TestVar1 := 1;
TestVar2 := 2;
[/pascal]

Yeah looks like everything before the first number, that should have been:
Code:
TestVar1 := 1;
TestVar2 := 2;
Let's try this:
[pascal]
var
TestVar1 := 1;
TestVar2 := 2;
[/pascal]

Hmmm, if you could post a link to the file you're using maybe I can help in someway. Two heads are better than one.