X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=gavinc%2Fuf_xfolk_meta;h=9d5963d60210e900fd7f7bd228f7f60511c2d671;hb=9446c25f45057b9feb2233d9f7774dbdbda5c39b;hp=4f310e5958a33ee3a0af626f728f810233f7b361;hpb=2c18c54630ee453b3074c153a92438ebdec8e726;p=matthijs%2Fupstream%2Fblosxom-plugins.git diff --git a/gavinc/uf_xfolk_meta b/gavinc/uf_xfolk_meta index 4f310e5..9d5963d 100644 --- a/gavinc/uf_xfolk_meta +++ b/gavinc/uf_xfolk_meta @@ -12,32 +12,31 @@ use strict; # --- Configurable variables ----- -my %config = ( +my %config = (); - # URL to use as base URL for tag links - tagbase => "$blosxom::url/tags", +# URL to use as base URL for tag links +$config{tagbase} = "$blosxom::url/tags"; - # Extra CSS classes to add to the microformat container e.g. to turn display off - class => '', - #class => 'nodisplay', +# Extra CSS classes to add to the microformat container e.g. to turn display off +$config{class} = ''; +#$config{class} = 'nodisplay'; - # Whether to automatically add microformat to story bodies. If not set, - # you must explicitly add $uf_adr_meta::adr to a template somewhere. - auto_append_to_body => 1, +# Whether to automatically add microformat to story bodies. If not set, +# you must explicitly add $uf_adr_meta::adr to a template somewhere. +$config{auto_append_to_body} = 1; - # What markup style to use for your adr, if auto-appending. - # 3 styles are currently defined: - # 'div-span' uses a 'div' elt for the container, and 'span' elements for the fields - # 'ul' uses a 'ul' list for the container, and 'li' elements for the fields - # 'dl' uses a 'dl' list for the container, 'dt' elements for field names, and - # 'dd' elements for the fields themselves - #style => 'div-span', - #style => 'ul', - style => 'dl', - -); +# What markup style to use for your adr, if auto-appending. +# 3 styles are currently defined: +# 'div-span' uses a 'div' elt for the container, and 'span' elements for the fields +# 'ul' uses a 'ul' list for the container, and 'li' elements for the fields +# 'dl' uses a 'dl' list for the container, 'dt' elements for field names, and +# 'dd' elements for the fields themselves +#$config{style} = 'div-span'; +#$config{style} = 'ul'; +$config{style} = 'dl'; # -------------------------------- +# __END_CONFIG__ use vars qw($xfolk);