summaryrefslogtreecommitdiff
path: root/support/texplate/source/main/kotlin/org/islandoftex/texplate/util/HandlerUtils.kt
diff options
context:
space:
mode:
Diffstat (limited to 'support/texplate/source/main/kotlin/org/islandoftex/texplate/util/HandlerUtils.kt')
-rw-r--r--support/texplate/source/main/kotlin/org/islandoftex/texplate/util/HandlerUtils.kt4
1 files changed, 3 insertions, 1 deletions
diff --git a/support/texplate/source/main/kotlin/org/islandoftex/texplate/util/HandlerUtils.kt b/support/texplate/source/main/kotlin/org/islandoftex/texplate/util/HandlerUtils.kt
index 44eebb2b69..9f6c65d8e6 100644
--- a/support/texplate/source/main/kotlin/org/islandoftex/texplate/util/HandlerUtils.kt
+++ b/support/texplate/source/main/kotlin/org/islandoftex/texplate/util/HandlerUtils.kt
@@ -3,6 +3,7 @@ package org.islandoftex.texplate.util
import org.islandoftex.texplate.model.handlers.BooleanHandler
import org.islandoftex.texplate.model.handlers.CSVListHandler
+import org.islandoftex.texplate.model.handlers.FileReaderHandler
import org.islandoftex.texplate.model.handlers.Handler
/**
@@ -20,6 +21,7 @@ object HandlerUtils {
@JvmStatic
val handlers: Map<String, Handler> = mapOf(
"to-csv-list" to CSVListHandler(),
- "to-boolean" to BooleanHandler()
+ "to-boolean" to BooleanHandler(),
+ "to-string-list-from-file" to FileReaderHandler()
)
}