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 /mercurius | |
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 'mercurius')
-rw-r--r-- | mercurius/index.md | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/mercurius/index.md b/mercurius/index.md index 691fc6b2..17314653 100644 --- a/mercurius/index.md +++ b/mercurius/index.md @@ -1,6 +1,6 @@ [[!meta title="Den danske Mercurius"]] [[!if test="included()" then=""" -[[!img mercuriuslandscape.jpg class="overview" size="200x" link="/mercurius"]] +{{ img(path="mercuriuslandscape.jpg" class="overview" size="200x" link="/mercurius") }} Oplev København i selskab med digteren, journalisten og vinkenderen Anders Bording, med vers om royale nyheder, krig, kærlighed og kaffe vs. brændevin. @@ -10,12 +10,12 @@ med vers om royale nyheder, krig, kærlighed og kaffe vs. brændevin. """ else=""" [[!template id="deco" text=" -[[!img bording421pix.jpg class="deco" size="200x"]] -[[!img bordinggaende.jpg class="deco" size="200x"]] -[[!img mercuriuslandscape.jpg class="deco" size="200x"]] -[[!img arvehyldning.jpg class="deco" size="200x"]] -[[!img eyeinsky.jpg class="deco" size="200x"]] -[[!img heimbachkro.jpg class="deco" size="200x"]] +{{ img(path="bording421pix.jpg" class="deco" size="200x") }} +{{ img(path="bordinggaende.jpg" class="deco" size="200x") }} +{{ img(path="mercuriuslandscape.jpg" class="deco" size="200x") }} +{{ img(path="arvehyldning.jpg" class="deco" size="200x") }} +{{ img(path="eyeinsky.jpg" class="deco" size="200x") }} +{{ img(path="heimbachkro.jpg" class="deco" size="200x") }} "]] # Den danske Mercurius |