11 lines
223 B
Plaintext
11 lines
223 B
Plaintext
import "golang/html"
|
|
import "fmt"
|
|
|
|
$text1 = html.unescape_string("<h1>MGMT!</h1>")
|
|
$text2 = html.escape_string("Test & Re-Test\n")
|
|
|
|
file "/tmp/index.html" {
|
|
state => "exists",
|
|
content => "${text1}${text2}",
|
|
}
|