publish.sh 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. #!/bin/bash
  2. #
  3. # Copyright (C) 2017 Alyssa Rosenzweig <alyssa@rosenzweig.io>
  4. # Copyright (C) 2017 Leah Rowe <info@minifree.org>
  5. #
  6. # This program is free software: you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation, either version 3 of the License, or
  9. # (at your option) any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License
  17. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. [ "x${DEBUG+set}" = 'xset' ] && set -v
  19. set -e
  20. echo $1
  21. FILE=${1%.md}
  22. cat $1 > temp.md
  23. OPTS=
  24. if [ "${FILE}" != "./index" ]; then
  25. if [[ $FILE == *index ]]
  26. then
  27. DEST="../"
  28. else
  29. DEST="./"
  30. fi
  31. RETURN="<a href='$DEST'>Back to previous index</a>"
  32. OPTS="--css /headerleft.css -T Libreboot"
  33. fi
  34. echo "" >> temp.md
  35. printf "[License](/license.md) --\n" >> temp.md
  36. printf "[Information about the Libreboot authors](/contrib.md) --\n" >> temp.md
  37. printf "[Guidelines for good conduct](/conduct.md) --\n" >> temp.md
  38. printf "[Project Management Guidelines, plus leadership information](/management.md) \n" >> temp.md
  39. # change out .md -> .html
  40. sed temp.md -i -e 's/\.md\(#[a-z\-]*\)*)/.html\1)/g'
  41. sed temp.md -i -e 's/\.md\(#[a-z\-]*\)*]/.html\1]/g'
  42. # work around issue #2872
  43. TOC=$(grep -q "^x-toc-enable: true$" temp.md && echo "--toc --toc-depth=2") || TOC=""
  44. # work around heterogenous pandoc versions
  45. SMART=$(pandoc -v | grep -q '2\.0' || echo "--smart") || SMART=""
  46. # chuck through pandoc
  47. pandoc $TOC $SMART temp.md -s --css /global.css $OPTS \
  48. --template template.html --metadata return="$RETURN"> $FILE.html
  49. # additionally, produce bare file for RSS
  50. pandoc $1 > $FILE.bare.html