From efd5a8180689d0f5b369183c4e5e73ac13494716 Mon Sep 17 00:00:00 2001 From: Julien Palard Date: Fri, 10 Feb 2023 17:45:35 +0100 Subject: [PATCH] Make a README file. --- Makefile | 6 +++++- README.md | 13 +++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 README.md diff --git a/Makefile b/Makefile index 36fc285..c473894 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ static: $(DEST) output/%.html: %.md mkdir -p output - sed 's/#!//e;' $< | mdtoreveal /dev/stdin --output $@ + mdtoreveal $< --output $@ .PHONY: rsync rsync: static @@ -30,3 +30,7 @@ test: if [ -f test.py ]; then \ python test.py *.md; \ fi + +README.md: + @printf "# My talks\n\n" > README.md + @printf -- "- https://mdk.fr/talks/%s\n" $(SRCS:.md=.html) >> README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..0236c38 --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ +# My talks + +- https://mdk.fr/talks/2016-pyconfr-i18n.html +- https://mdk.fr/talks/2017-paris.py-13-i18n.html +- https://mdk.fr/talks/2018-paris.py-14-asyncio.html +- https://mdk.fr/talks/2018-paris.py-16-hackinscience.html +- https://mdk.fr/talks/2018-pyconfr-emergence.html +- https://mdk.fr/talks/2019-paris.py-19-retours-sur-la-pycon.html +- https://mdk.fr/talks/2019-write-the-docs-paris-python-translation.html +- https://mdk.fr/talks/2020-en-attendant-la-pycon-fr-perf.html +- https://mdk.fr/talks/2021-en-attendant-la-pycon-fr-packaging.html +- https://mdk.fr/talks/2022-campus-du-libre-hackinscience.html +- https://mdk.fr/talks/2023-pyconfr-sphinx-lint.html