# Copyright (C) 2016-2020 Free Software Foundation # # This program is free software: you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see # . all: @echo "Give me something to make." # for f in $(find -name '*.mdwn' -type f); do python -m markdown $f > ${f%mdwn}html; done # todo: edit below command so it translates ALL markdown files. use above command instead until then. wikipages: for dir in fun getting-around raffle safe-space-policy speaker-release sponsors volunteer; do \ if [ -f $$dir/index.mdwn ] ; then \ python -m markdown $$dir/index.mdwn > $$dir/index.html ; \ fi \ done speakers: curl -s https://my.fsf.org/lp-talk/30| sed -n 's=/lp-talk/30=/2020/speakers/=g; s=/lp-schedule-2020=/2020/program/=g; s/fa fa-/glyphicon glyphicon-/g; /pagestart/s/<\/div>//; /pagestart/,/pageend/p; ' > includes/generated-bios.html sessions: curl -s https://my.fsf.org/lp-schedule-2020| sed -n 's=/lp-talk/30=/2020/speakers/=g; s=/lp-schedule-2020=/2020/program/=g; s/fa fa-/glyphicon glyphicon-/g; /pagestart/s/<\/div>//; /pagestart/,/pageend/p; ' > includes/generated-sessions.html clean: rm -f includes/generated-sessions.html includes/generated-bios.html both: sessions speakers .PHONY: all speakers sessions both clean