Guest User

Untitled

a guest
Mar 2nd, 2020
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.72 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3.  
  4. <body>
  5.   <h1><?= .title ?></h1>
  6.   <ol>
  7.   <?[] .chapters?>
  8.     <li><?= [].heading ?>
  9.   <?/>
  10.   </ol>
  11.  
  12.   <?[] .chapters?>
  13.   <h2><?= [].heading ?></h2>
  14.     <?[] [].paragraphs?>
  15.     <p><?= [] ?>
  16.     <?/>
  17.   <?/>
  18.  
  19. </body>
  20.  
  21. </html>
  22.  
  23. <!--
  24. // zig input / usage:
  25.  
  26. const document = .{
  27.  .title = "A small document about Zig",
  28.  .chapters = .{
  29.    .{
  30.      .heading = "Introduction",
  31.      .paragraphs = .{
  32.        "This is the first paragraph.",
  33.        "This is the second paragraph.",
  34.      }
  35.    },
  36.    .{
  37.      .heading = "Finishing Words",
  38.      .paragraphs = .{
  39.        "And that's all, folks!",
  40.      }
  41.    }
  42.  },
  43. };
  44.  
  45. HTML.renderDoc(outStream, templateCode, document);
  46.  
  47. -->
Add Comment
Please, Sign In to add comment