diff --git a/Sources/Template.swift b/Sources/Template.swift index 75db2f5..c07be62 100644 --- a/Sources/Template.swift +++ b/Sources/Template.swift @@ -67,7 +67,7 @@ open class Template: ExpressibleByStringLiteral { } /// Render the given template with a context - func render(_ context: Context) throws -> String { + public func render(_ context: Context) throws -> String { let context = context let parser = TokenParser(tokens: tokens, environment: context.environment) let nodes = try parser.parse()