31 lines
1.1 KiB
Markdown
31 lines
1.1 KiB
Markdown
Zapiski in skripte za pretvarjanje zapiskov v različne formate in generiranje
|
|
<https://bavbavhaus.net>. Glavni repozitorij se nahaja na
|
|
<https://git.kompot.si/urosm/bavbavhaus.net>.
|
|
|
|
Recepti za generiranje <https://bavbavhaus.net> so opisani v `Makefile`:
|
|
|
|
```make
|
|
NOTES := $(shell pandoc lua pandoc/collect_notes.lua index.md)
|
|
PAGES := $(patsubst %.md,public_html/%.html,$(NOTES))
|
|
GETDEPS = $(patsubst %.md,public_html/%.html.part,$(shell pandoc lua pandoc/collect_links.lua $(1))) public_html/sitemap.html.part
|
|
|
|
.PHONY: all
|
|
all: $(PAGES)
|
|
|
|
public_html/%.html: flags = $(patsubst %,-M linkparts=%,$(filter-out $<,$^))
|
|
.SECONDEXPANSION:
|
|
public_html/%.html: %.md $$(call GETDEPS,%.md)
|
|
pandoc --data-dir pandoc -d bavbavhaus.net.yaml -M slug=$* $(flags) -o $@ $<
|
|
```
|
|
|
|
[`Makefile`](https://git.kompot.si/urosm/bavbavhaus.net/Makefile). Za delovanje potrebuje `pandoc`. Gl. tudi
|
|
[`pandoc/links.lua`](pandoc/links.lua) za skript, ki išče interne povezave. Gl.
|
|
tudi filtre v [`pandoc/filters`](pandoc/filters).
|
|
|
|
Navodila za uporabo:
|
|
|
|
```sh
|
|
sudo apt install pandoc # namestitev potrebščin (debian)
|
|
make
|
|
```
|