I need to remove "." that occurs after year (it would be great If it could be replaced with a comma):
This is the Function that defines the periods used after blocks (red colour is what I added):Melnikov, I. The arctic sea ice ecosystem. Gordon and Breach Science Publishers, 1997. 204 ss.
Code: Select all
FUNCTION {output.nonnull}
{ 's :=
output.state mid.sentence =
{ add.period$ " " * write$ }
{ output.state after.block =
{ add.period$ write$
newline$
"\newblock " write$
}
{ output.state before.all =
'write$
{ add.period$ " " * write$ }
if$
}
if$
mid.sentence 'output.state :=
}
if$
s
}