{{/*{ This is the action template. It determines how the formatting actions are rendered. */}} {{define "section"}}

{{.Title}}

{{range .Elem}}{{elem $.Template .}}{{end}} {{end}} {{define "list"}} {{end}} {{define "text"}} {{if .Pre}}
{{range .Lines}}{{.}}{{end}}
{{else}}

{{range $i, $l := .Lines}}{{if $i}}{{template "newline"}} {{end}}{{style $l}}{{end}}

{{end}} {{end}} {{define "code"}} {{if .Play}} {{/* playable code is not displayed in the slides */}} {{else}}
{{.Text}}
{{end}} {{end}} {{define "image"}} {{end}} {{define "link"}} {{end}} {{define "html"}}{{.HTML}}{{end}} {{define "newline"}} {{/* No automatic line break. Paragraphs are free-form. */}} {{end}}