Skip to content

Commit 01dac78

Browse files
committed
Fix file extension for latex files in download script.
1 parent 134b838 commit 01dac78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

layouts/partials/download.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
console.log(currentFileName)
1212

1313
// data types NO CATCH FOR NONEXISTENT FILES; provide everything listed here with pandoc
14-
const fileTypes = ["pdf", "tex", "odt", "docx"];
14+
const fileTypes = ["pdf", "latex", "odt", "docx"];
1515

1616
// dropdown-menu dynamically filled with the aforementioned list
1717
const fileTypeSelect = document.getElementById('fileType');

0 commit comments

Comments
 (0)