blob: b95118dffbbd6de65bd99acdaa007922b16a09d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
% Deal with meta *list* attributes
For reasons presented meta lists are not working in page templates
(see above, "meta attribute list of hashes").
Suggestion is to always transform them to list of hashes with a
default key (e.g. 'name'). That would be in accordance to "Deal with
author field" above.
Configuration would be:
```
my %list_meta_keys = (
author => 'name',
bibliography => 'path',
);
```
|