aboutsummaryrefslogtreecommitdiff
path: root/docs/publish.sh
diff options
context:
space:
mode:
authorAlyssa Rosenzweig <alyssa@rosenzweig.io>2017-03-20 20:26:48 -0700
committerAlyssa Rosenzweig <alyssa@rosenzweig.io>2017-03-20 20:26:48 -0700
commita62fe03d3e84150e6186f57f53029d5a9abe3d7b (patch)
tree1a1276b32fcc5388165bd42b685c0d9e83380a7b /docs/publish.sh
parent07da8fb0c7d513bc73470b69be99f1add0cb95e5 (diff)
downloadlibrebootfr-a62fe03d3e84150e6186f57f53029d5a9abe3d7b.tar.gz
librebootfr-a62fe03d3e84150e6186f57f53029d5a9abe3d7b.zip
undo breakages
Diffstat (limited to 'docs/publish.sh')
-rwxr-xr-xdocs/publish.sh10
1 files changed, 0 insertions, 10 deletions
diff --git a/docs/publish.sh b/docs/publish.sh
deleted file mode 100755
index c634f30b..00000000
--- a/docs/publish.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-
-# see equivalent script in libreboot-website for more info
-
-FILE=${1%.md}
-echo $FILE
-cat $FILE.md > temp.md
-sed temp.md -i -e 's/.md\(#[a-z\-]*\)*)/.html\1)/g'
-TOC=$(grep -q "^x-toc-enable: true$" temp.md && echo "--toc")
-pandoc -t html temp.md -s --css /global.css --section-divs -T Libreboot $TOC > $FILE.html