Hi , I am using the plugin_wiki to generate a tag cloud . The cloud actions
return looks something like this:-
return DIV(_class='plugin_wiki_tag_cloud',*[SPAN(A(tag.name
,_href=URL(r=request,c='default',f='taglist',args=('tag',tag.id))),_style='font-size:%sem'
% (0.8+1.0*tag.links/mc),_class='mytagcloud') for tag in tags])
The issue happening here is that there is no space between the two span tags
which is causing the browser to treat the tags as a single word. Is there a
way I can add spaces between these spans.