I think there might be a bug with {category} tag pairs. When I have the tag-pair as a single line, the last category retrieved is not closed properly
/// as one single line of code
{categories backspace="2"}<a href="http://{path=notes/archives}">{category_name}</a>, {/categories}Will generate the last closing </a> without the >
<a href="http://url">category 1</a>, <a href="http://url">category 2</a>, <a href="http://url">category X</a/// as multi line of code_{categories backspace="2"}_ <a href="{path='notes/archives'}">{category_name}</a>,
{/categories}Will generate html code as intended
<a href="http://url">category 1</a>, <a href="http://url">category 2</a>, <a href="http://url">category X</a>Or this tag-pair is intended to be used as per 2nd example?