Style question
Hi, I've made a couple of brief changes to the CMS Full note style to fit with a style guide I am currently following, I have a brief question about adding access dates to the URLs.
I do some programming, so have a vague idea on how CSL works, but would like some general assistance. I currently edited the 'access' macro to read something like this:
rather than the original
However, on the output it now gives me:
URL, accessed 31 March 2009 ].
How can I make it get rid of the trailing space after the date?
Cheers,
S
I do some programming, so have a vague idea on how CSL works, but would like some general assistance. I currently edited the 'access' macro to read something like this:
<group>
<group prefix="[" suffix="]" delimiter=" ">
<text variable="URL" suffix=","/>
<text term="accessed" text-case="lowercase" suffix=""/>
<date variable="accessed" suffix=" ">
<date-part name="day" suffix=" "/>
<date-part name="month" suffix=" "/>
<date-part name="year"/>
</date>
</group>
</group>
rather than the original
<text variable="URL" suffix=","/>
or so:However, on the output it now gives me:
URL, accessed 31 March 2009 ].
How can I make it get rid of the trailing space after the date?
Cheers,
S
<date variable="accessed">
Thanks
S