X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fupstream%2Fblosxom-plugins.git;a=blobdiff_plain;f=gavinc%2Fuf_geo_meta;fp=gavinc%2Fuf_geo_meta;h=e2ac567961c7635befac46a836cc967ac6a9d4db;hp=94c2ee9c273a252967756ffd06b32553a2c17e50;hb=9446c25f45057b9feb2233d9f7774dbdbda5c39b;hpb=cfa1ab85ac34941b67829ff99004ff576d0f44e8 diff --git a/gavinc/uf_geo_meta b/gavinc/uf_geo_meta index 94c2ee9..e2ac567 100644 --- a/gavinc/uf_geo_meta +++ b/gavinc/uf_geo_meta @@ -12,27 +12,25 @@ use strict; # --- Configurable variables ----- -my %config = ( - - # 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 = (); + +# 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__