diff options
author | Jonas Smedegaard <dr@jones.dk> | 2022-06-19 21:48:10 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2024-04-06 10:37:09 +0200 |
commit | 30b9669ea95e6b3b4f48a25c8045c2b4f551dacd (patch) | |
tree | 2388bf9d3c5a3b617341285f284e888f5dd4c41e /foredrag/bybrand | |
parent | e30097f4a9ffc42d57df2c463ae4770b61ff8769 (diff) |
convert img and template directives to shortcodes
command:
```
find * -type f -name '*.md' -execdir perl -gpi -e 's/\[\[!img\s+([^\s\]"]+)(\s(?:[^\]]|"[^"]*")+?)?\s*\]\]/{{ img(path="$1"$2) }}/g; s/\[\[!template\s+id="?(columns|note|video)"?\s+([^\]]+?)\s*\]\]/{{ $1($2) }}/g;' '{}' +
```
Diffstat (limited to 'foredrag/bybrand')
-rw-r--r-- | foredrag/bybrand/index.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/foredrag/bybrand/index.md b/foredrag/bybrand/index.md index 9ea0c53a..28bf0c9e 100644 --- a/foredrag/bybrand/index.md +++ b/foredrag/bybrand/index.md @@ -2,7 +2,7 @@ [[!meta title="Byen brænder"]] [[!if test="included()" then=""" -[[!img /bybrand/kbh-brand-1795.jpg class="overview" link="/foredrag/bybrand" ]] +{{ img(path="/bybrand/kbh-brand-1795.jpg" class="overview" link="/foredrag/bybrand") }} København brændte i 1728, 1795 og 1807. Hør om de uheld og fejltrin, @@ -15,9 +15,9 @@ og hvordan det indre København stadig er præget af katastroferne. """ else=""" [[!template id="deco" text=" -[[!img /bybrand/bombardement1807.jpg class="deco"]] -[[!img /bybrand/kbh-brand-1795.jpg class="deco"]] -[[!img /bybrand/trekanthat.jpg class="deco"]] +{{ img(path="/bybrand/bombardement1807.jpg" class="deco") }} +{{ img(path="/bybrand/kbh-brand-1795.jpg" class="deco") }} +{{ img(path="/bybrand/trekanthat.jpg" class="deco") }} "]] # Byen brænder **Foredrag** |