Skip to content

Commit 2acb0f5

Browse files
committed
CI: truly disable pandoc template
1 parent 189921b commit 2acb0f5

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ test: test/Tests.agda
1313
test/Tests.agda: test/Main.hs test/typed/*.agda test/untyped/*.agda
1414
cabal test
1515

16-
html : test
16+
html: test
1717
make -C test html
1818

1919
clean:

test/Agda.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,3 +81,4 @@
8181
.tab-content { height: 100%; }
8282
.tabs__tab { height: 100%; }
8383
embed { height: 100%; width: 100%; }
84+
.code { white-space: pre-wrap; }

test/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
MAIN=Tests
33
.PHONY : html clean
44

5-
html :
5+
html:
66
@echo == Generating HTML ==
77
mkdir -p html/ && cp Agda.css html/
88
-cabal run -- agda2lambox --html --css=Agda.css $(MAIN).agda

test/renderTranslations.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ for f in $BUILD_DIR/**/**; do
2626
echo "\`\`\`" >> $mdFn
2727

2828
targetHtml="$f".html
29-
pandoc --quiet -M document-css=false -i "$mdFn" -o "$targetHtml" -s --highlight-style=tango
29+
pandoc --quiet -i "$mdFn" -o "$targetHtml" --highlight-style=tango
3030
done
3131

3232
mkdir -p "$AGDA_HTML_DIR/$BUILD_DIR"

0 commit comments

Comments
 (0)