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 /blog/bagomborsen/index.md | |
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 'blog/bagomborsen/index.md')
-rw-r--r-- | blog/bagomborsen/index.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/blog/bagomborsen/index.md b/blog/bagomborsen/index.md index 65e5df47..67d815f2 100644 --- a/blog/bagomborsen/index.md +++ b/blog/bagomborsen/index.md @@ -2,7 +2,7 @@ [[!if test="included()" then=""" -[[!img 120723boersen.jpg]] +{{ img(path="120723boersen.jpg") }} ### **Vidste du det?** Læs om Christian IV's berømte bygning of få svar på: @@ -19,10 +19,10 @@ Læs om Christian IV's berømte bygning of få svar på: """ else=""" [[!template id="deco" text=" -[[!img 120723boersen.jpg class="deco" ]] -[[!img boersneptun.jpg class="deco"]] -[[!img dragespir.jpg class="deco"]] -[[!img boersvaeg.jpg class="deco"]] +{{ img(path="120723boersen.jpg" class="deco") }} +{{ img(path="boersneptun.jpg" class="deco") }} +{{ img(path="dragespir.jpg" class="deco") }} +{{ img(path="boersvaeg.jpg" class="deco") }} "]] # Bag om Børsen |