diff options
author | Jonas Smedegaard <dr@jones.dk> | 2022-06-19 21:53:30 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2024-04-06 10:37:11 +0200 |
commit | 2babefddb5b38b7a2d65c528c246a2e6705660a4 (patch) | |
tree | 0b9d90361db41fedd853e4a1e0fa82c07e1b7984 /skole/slotsholmen | |
parent | 30b9669ea95e6b3b4f48a25c8045c2b4f551dacd (diff) |
convert meta and tag directives to TOML frontmatter
command:
```
find * -type f -name '*.md' -execdir perl -MTOML::Tiny=to_toml -C63 -gni -E '%x=();s/\[\[!meta\s+(title|date)="?([^\]"]+?)\s*"?\s*\]\]\s*\n*/$x{$1}=$2;""/eg; s/\[\[!meta\s+stylesheet="?edu"?\s+rel="?stylesheet"?\s*\]\]\n*/$x{taxonomies}{categories}=["education"];""/e; s/\[\[!tag((?:\s+[^\]\s]+)+)\s*\]\]\n*/push @{$x{taxonomies}{tags}}, $1=~m{\S+}g;""/eg; s/\[\[!meta\s+(?:author|name)="?([^\]"]+?)\s*"?\s*\]\]\s*\n*/$x{extra}{author}=$1;""/eg; say "+++"; say to_toml({%x}); say "+++"; say $_' '{}' +
```
Diffstat (limited to 'skole/slotsholmen')
-rw-r--r-- | skole/slotsholmen/index.md | 25 |
1 files changed, 20 insertions, 5 deletions
diff --git a/skole/slotsholmen/index.md b/skole/slotsholmen/index.md index 86535806..d259287e 100644 --- a/skole/slotsholmen/index.md +++ b/skole/slotsholmen/index.md @@ -1,7 +1,23 @@ -[[!meta stylesheet=edu rel=stylesheet]] - -[[!meta title="Magtens Labyrint - Undervisningstur på Slotsholmen"]] - ++++ +title="Magtens Labyrint - Undervisningstur på Slotsholmen" + +[taxonomies] +categories=[ + "education", +] +tags=[ + "citybydel", + "city", + "vesterbro", + "edu", + "ture", + "skole", + "danskfag", + "samfundsfag", + "historiefag", + "designfag", +] ++++ [[!if test="included()" then=""" {{ img(path="/slotsholmen/chrIXstatue.jpg" link="/skole/slotsholmen" class="overview") }} Kom tæt på magtens centrum før og nu @@ -54,5 +70,4 @@ Dette betyder at der er mindre tid til den udendørs oplevelse af Slotsholmen. """]] -[[!tag citybydel city vesterbro edu ture skole danskfag samfundsfag historiefag designfag]] |