diff options
-rw-r--r-- | core/views/expo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/views/expo.py b/core/views/expo.py index 3432ac3..d0b721e 100644 --- a/core/views/expo.py +++ b/core/views/expo.py @@ -419,7 +419,7 @@ def editexpopage(request, path): # detect if this is a text file for editing filepath = Path(settings.EXPOWEB) / path - if filepath.suffix in [".txt", ".sty", ".tex"] or filepath.name == "Makefile": + if filepath.suffix in [".txt", ".sty", ".tex"] or filepath.name == "Makefile" or filepath.name == "cave-number-index": print("Editing TEXT file", filepath) return edittxtpage(request, path, filepath) |