mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-18 09:39:47 +00:00
9 lines
350 B
Text
9 lines
350 B
Text
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)
|