X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fupstream%2Fblosxom-plugins.git;a=blobdiff_plain;f=gavinc%2Fuf_xfolk_meta;fp=gavinc%2Fuf_xfolk_meta;h=9d5963d60210e900fd7f7bd228f7f60511c2d671;hp=e99988c3777e16ba99fd13e558c6bcc043741039;hb=9446c25f45057b9feb2233d9f7774dbdbda5c39b;hpb=cfa1ab85ac34941b67829ff99004ff576d0f44e8 diff --git a/gavinc/uf_xfolk_meta b/gavinc/uf_xfolk_meta index e99988c..9d5963d 100644 --- a/gavinc/uf_xfolk_meta +++ b/gavinc/uf_xfolk_meta @@ -12,30 +12,28 @@ use strict; # --- Configurable variables ----- -my %config = ( - - # URL to use as base URL for tag links - tagbase => "$blosxom::url/tags", - - # Extra CSS classes to add to the microformat container e.g. to turn display off - class => '', - #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, - - # 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', - -); +my %config = (); + +# 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 +$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. +$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 +#$config{style} = 'div-span'; +#$config{style} = 'ul'; +$config{style} = 'dl'; # -------------------------------- # __END_CONFIG__