authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-08-07 18:35:43 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-08-07 18:35:43 -07:00
logbfa43208947f3608d2c04bf96936801837e27e7f
tree32eb525df9925e6b892744fa6b0a96bdcb8fb39a
parent0c4b6bca9b5c601bba5cbbc25abd8d81c58bc1cb

add extra meta tag to example document


2 files changed, 24 insertions(+), 0 deletions(-)

src/main.zig+23
......@@ -7,6 +7,7 @@ const example_document =
77 \\ meta[charset="utf-8"]
88 \\ title("Pek Example")
99 \\ meta[name="viewport" content="width=device-width,initial-scale=1"]
10 \\ meta[http-equiv="X-UA-Compatible" content="IE=edge"]
1011 \\ )
1112 \\ body(
1213 \\ h1("Pek Example")
......@@ -22,6 +23,22 @@ const example_document =
2223 \\ /each/
2324 \\ )
2425 \\ p("Spooky text: "{spooky})
26 \\
27 // \\ {#if am_i_a_girl}
28 // \\ p("#1")
29 // \\ /if/
30 // \\
31 // \\ {#ifnot is_it_my_birthday}
32 // \\ p("#2")
33 // \\ /ifnot/
34 // \\
35 // \\ {#ifequal top_cities.len best_rating}
36 // \\ p("#3")
37 // \\ /ifequal/
38 // \\
39 // \\ {#ifnotequal favorite.color sky}
40 // \\ p("#4")
41 // \\ /ifnotequal/
2542 \\ )
2643 \\)
2744;
......@@ -32,6 +49,8 @@ pub fn main() !void {
3249 .author = "Meghan D",
3350 .favorite = .{
3451 .flower = "Sunflower",
52 .program_lang = "Zig",
53 .color = "Pink",
3554 },
3655 .top_cities = .{
3756 .{ .name = "New York", .state = .{ .code = "NY" } },
......@@ -41,5 +60,9 @@ pub fn main() !void {
4160 .{ .name = "Phoenix", .state = .{ .code = "AZ" } },
4261 },
4362 .spooky = "<strong>I better not be in bold.</strong>",
63 .am_i_a_girl = true,
64 .sky = "Blue",
65 .best_rating = 5,
66 .is_it_my_birthday = false,
4467 });
4568}
test.html+1
......@@ -4,6 +4,7 @@
44 <meta charset="utf-8" />
55 <title>Pek Example</title>
66 <meta name="viewport" content="width=device-width,initial-scale=1" />
7 <meta http-equiv="X-UA-Compatible" content="IE=edge" />
78 </head>
89 <body>
910 <h1>Pek Example</h1>