roc/examples/static-site-gen/platform/main.roc

10 lines
350 B
Plaintext

platform "static-site-gen"
requires {} { transformFileContent : Str, Str -> Str }
exposes []
packages {}
imports []
provides [transformFileContentForHost]
transformFileContentForHost : Box Str, Box Str -> Str
transformFileContentForHost = \relPath, htmlContent -> transformFileContent (Box.unbox relPath) (Box.unbox htmlContent)