2014-05-05 15:55:27 -06:00
|
|
|
// Copyright 2011 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
/*
|
|
|
|
Present displays slide presentations and articles. It runs a web server that
|
|
|
|
presents slide and article files from the current directory.
|
|
|
|
|
|
|
|
It may be run as a stand-alone command or an App Engine app.
|
2014-05-12 17:17:18 -06:00
|
|
|
Instructions for deployment to App Engine are in the README of the
|
|
|
|
code.google.com/p/go.tools repository.
|
2014-05-05 15:55:27 -06:00
|
|
|
|
|
|
|
Usage of present:
|
|
|
|
-base="": base path for slide template and static resources
|
|
|
|
-http="127.0.0.1:3999": host:port to listen on
|
|
|
|
|
|
|
|
Input files are named foo.extension, where "extension" defines the format of
|
|
|
|
the generated output. The supported formats are:
|
|
|
|
.slide // HTML5 slide presentation
|
|
|
|
.article // article format, such as a blog post
|
|
|
|
|
|
|
|
The present file format is documented by the present package:
|
|
|
|
http://godoc.org/code.google.com/p/go.tools/present
|
|
|
|
*/
|
|
|
|
package main
|