diff options
author | Jonas Smedegaard <dr@jones.dk> | 2024-04-16 15:29:01 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2024-04-16 15:29:01 +0200 |
commit | b723527b3bc054184c20fa74355dfe8c749e3d18 (patch) | |
tree | 17b2cb3ee0465c4768acaea2e2f1f948a3b4ff4c | |
parent | ea0a38606fb2b10bc748fe4f4938b514f329e169 (diff) |
add make targets pad-export-worlding*
-rw-r--r-- | Makefile | 37 |
1 files changed, 36 insertions, 1 deletions
@@ -4,7 +4,7 @@ SSH_BASE_PATH = public_websites/thoughtroam.abcde.../ BASE_SSH = $(SSH_HOST):$(SSH_BASE_PATH) BASE_IRI = https://thoughtroam.abcdefghijklmnopqrstuvxyzæøå.dk/ -PAD_ARTICLES = learn code use +PAD_ARTICLES = learn code use worlding ARTICLES = learn code use worlding PERL_FILES = bin/hedgedoc2quarto bin/xmp2rdfxml @@ -53,6 +53,9 @@ pad-export-code: ref.bib code/index.qmd code/_gantt.qmd pad-export-use: ref.bib use/index.qmd +pad-export-worlding: ref.bib worlding/index.qmd \ + $(patsubst %,worlding/_%.qmd,baggrund teori_og_metode undersøgelser konklusion perspektivering kilder planer) + ref.bib: hedgedoc export --md 8krqOrqnR0iAIExDTtTrxw $@ perl -g -e 's/\s*\z/\n/' $@ @@ -73,6 +76,38 @@ use/index.qmd: hedgedoc export --md aFt_nNkYTQibl0CQrBJhtQ $@ perl -g -e 's/\s*\z/\n/' $@ +worlding/index.qmd: + hedgedoc export --md EXC6tW48SYu0_s_MA6cORw $@ + perl -g -e 's/\s*\z/\n/' $@ + +worlding/_baggrund.qmd: + hedgedoc export --md mGHhKvXyQ5SVeTIU11isQQ $@ + perl -g -e 's/\s*\z/\n/' $@ + +worlding/_teori_og_metode.qmd: + hedgedoc export --md 5AbKoR-mTOij6TsCMFFDRw $@ + perl -g -e 's/\s*\z/\n/' $@ + +worlding/_undersøgelser.qmd: + hedgedoc export --md 5XR69V5rSEm9LwsLNtSXcQ $@ + perl -g -e 's/\s*\z/\n/' $@ + +worlding/_konklusion.qmd: + hedgedoc export --md ofRbx2f4QcWLR-o_kqTNCQ $@ + perl -g -e 's/\s*\z/\n/' $@ + +worlding/_perspektivering.qmd: + hedgedoc export --md lU8aUxCkR5GNrP-8frklFA $@ + perl -g -e 's/\s*\z/\n/' $@ + +worlding/_kilder.qmd: + hedgedoc export --md Jt6S4tAhQM-BUrAP-OllCg $@ + perl -g -e 's/\s*\z/\n/' $@ + +worlding/_planer.qmd: + hedgedoc export --md qfFl3xiaQWCbpoyNPbNsEA $@~ + bin/hedgedoc2quarto $@~ $@ + $(PAD_ARTICLES:%=pad-import-%): pad-import-%: hedgedoc import $*/index.qmd |