Skip to content
Snippets Groups Projects

Ajout slides fonctions d'ordre supérieur.

Merged Michaël El Kharroubi requested to merge high-order-functions into master
Files
2
+ 3
3
@@ -26,13 +26,13 @@ all: $(PDF) $(HTML) # La cible par défaut (all) exécute les cibles %.html et %
markdown: $(MARKDOWN) # La markdown les cibles %.markdown
%.pdf: %.md metadata.yaml # %.pdf (chaque fichier %.md génère un fichier avec le même nom mais l'extension .pdf et la dépendance metadata.yaml)
%.pdf: metadata.yaml %.md # %.pdf (chaque fichier %.md génère un fichier avec le même nom mais l'extension .pdf et la dépendance metadata.yaml)
pandoc -s $(OPTIONS) $(PDFOPTIONS) -o $@ $^
%.html: %.md metadata.yaml
%.html: metadata.yaml %.md
pandoc -s $(OPTIONS) $(REVEALOPTIONS) -o $@ $^
%.markdown: %.md metadata.yaml yq
%.markdown: metadata.yaml %.md yq
sed '1 { /^---/ { :a N; /\n---/! ba; d} }' $< > no_header
grep -v -F -x -f no_header $< > header.yaml
echo "---" > tmp.yaml
Loading