Go to file
urosm de3779546b update `public_html` static files 2024-06-26 16:03:06 +02:00
pandoc update `pandoc` data dir 2024-06-26 16:02:58 +02:00
public_html update `public_html` static files 2024-06-26 16:03:06 +02:00
.gitignore update `.gitignore` 2024-06-21 15:21:36 +02:00
Makefile update `Makefile` 2024-06-26 16:01:51 +02:00
README.md update notes 2024-06-21 15:32:15 +02:00
antiranciere.md update notes 2024-06-21 15:32:15 +02:00
arhitekt_kot_intelektualec.md update notes 2024-06-26 16:02:45 +02:00
arhitekturno_delo_in_kapitalisticni_razvoj.md update notes 2024-06-26 16:02:45 +02:00
asorrosa_prva_ocena.md update notes 2024-05-02 20:37:35 +02:00
aureli_arhitektura_in_abstrakcija.md update notes 2024-05-02 20:37:35 +02:00
benjamin_avtor_kot_proizvajalec.md update notes 2024-05-02 20:37:35 +02:00
broken_links.lua add lua scripts 2024-06-21 15:31:13 +02:00
delitev_cutnega.md update notes 2024-05-21 00:58:52 +02:00
dependencies.lua add lua scripts 2024-06-21 15:31:13 +02:00
engels_ludwig_feuerbach.md update notes 2024-05-02 20:37:35 +02:00
ferro_nacrt_gradbisce.md update notes 2024-05-02 20:37:35 +02:00
fortini_dve_avantgardi.md update notes 2024-05-02 20:37:35 +02:00
fragmenti_o_strojih.md update notes 2024-05-02 20:37:35 +02:00
greppi_produkcija_in_prostorsko_nacrtovanje.md update notes 2024-05-02 20:37:35 +02:00
index.md update notes 2024-06-21 15:32:15 +02:00
intelektualno_delo.md update notes 2024-06-26 16:02:45 +02:00
koncept_kritike_in_kritika_politicne_ekonomije.md update notes 2024-05-21 00:58:52 +02:00
kritika_arhitekturne_ideologije.md update notes 2024-05-24 10:40:32 +02:00
mladi_lukacs.md update notes 2024-06-21 15:32:15 +02:00
neusmerjeno_pisanje.md update notes 2024-06-26 16:02:45 +02:00
organiziranje_pesimizma.md update notes 2024-06-21 15:32:15 +02:00
panzieri_o_kapitalisticni_rabi_strojev.md update notes 2024-05-02 20:37:35 +02:00
planiranje_metropole.md update notes 2024-05-02 20:37:35 +02:00
produktivno_delo.md update notes 2024-06-21 15:32:15 +02:00
razredna_zavest.md update notes 2024-06-26 16:02:45 +02:00
realna_subsumpcija_arhitekture.md update notes 2024-06-26 16:02:45 +02:00
tafuri_avstromarksizem_in_mesto.md update notes 2024-05-02 20:37:35 +02:00
tafuri_h_kritiki_arhitekturne_ideologije.md update notes 2024-05-02 20:37:35 +02:00
tafuri_il_socialismo_realizzato.md update notes 2024-05-02 20:37:35 +02:00
tafuri_norma_in_program.md update notes 2024-05-02 20:37:35 +02:00
tafuri_renesansa.md update notes 2024-05-02 20:37:35 +02:00
tafuri_socialdemokracija_in_mesto.md update notes 2024-05-02 20:37:35 +02:00
tafuri_teorije_in_zgodovina_arhitekture.md update notes 2024-05-02 20:37:35 +02:00
teorije_tehnologij.md update notes 2024-05-21 00:58:52 +02:00
tujost_kapitala.md update notes 2024-05-21 00:58:52 +02:00
zadnji_posnetki_evropske_inteligence.md update notes 2024-05-21 00:58:52 +02:00
zgodovina_estetike.md update notes 2024-05-16 23:12:35 +02:00

README.md

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:

.PHONY: all
all: dependencies.mk

dependencies.mk:
	pandoc lua pandoc/dependencies.lua index.md $@

include dependencies.mk

PANDOCFLAGS := --data-dir pandoc
BAVBAVHAUSFLAGS = $(PANDOCFLAGS) -M slug=$*

public_html/%.html: parts = $(filter-out $<,$^)
public_html/%.html: %.md
	pandoc $(BAVBAVHAUSFLAGS) -d bavbavhaus.net.yaml $(patsubst %,-M parts=%,$(parts)) -o $@ $<

public_html/%.html.part: %.md
	pandoc $(BAVBAVHAUSFLAGS) -d bavbavhaus.net.part.yaml --id-prefix $* -o $@ $<

Navodila za uporabo:

# install dependencies (debian)
sudo apt install pandoc
make