overview next

Clickslide

a Compiler for Browser based Slideshows
previous next
previous next

Why Write another Slideshow System?

previous next

Why avoid JavaScript

previous next

Usage and Features

previous next

Simplifying HTML

Maintain the flexibility of plain HTML. Decrease verbosity of the code.

  <html>
    <head>
      <title>Demo</title>
    </head>
    <body id="frontpage">
      <h1 class="top">Headline</h1>
    </body>
  </html>
      
  [html
    [head
      [title Demo]
    ]
    [body #frontpage
      [h1 .top Headline]
    ]
  ]
      
previous next

Example Slide Show

  [html [head
    [title Example Slideshow]
  ][body
    [footer Title | Author | Date and Place]
    [slide [h1 Title]]
    [slide [h2 A Slide]
      [ul .uncover
        [li This list]
        [li gets uncovered]
        [li item by item]
  ]]]]
      
previous next

Syntax

previous next

Features

previous next

Thank you for listening!

previous10