Upgrading docs return value schema. Added button template for tutorial and screencast on ladder.

This commit is contained in:
Nick Winter 2014-02-20 11:57:04 -08:00
parent bce184b9da
commit 7266142c02
4 changed files with 28 additions and 0 deletions
app
server/levels/components

View file

@ -4,3 +4,7 @@
.play-button
margin-bottom: 10px
.intro-button
width: 45%
margin: 0 2.5%

View file

@ -6,6 +6,10 @@ block content
div#level-description
!{description}
a(href="something").intro-button.btn.btn-primary.btn-lg Watch the Video
a(href="somethingelse").intro-button.btn.btn-primary.btn-lg Play the Tutorial
hr
div#columns.row
for team in teams

View file

@ -42,3 +42,14 @@ if doc.args && doc.args.length
em Default value:
code= arg.default
if doc.returns
p.returns
strong Returns:
div
code= doc.returns.type
if doc.returns.example
| (ex:
code= doc.returns.example
| )
if doc.returns.description
div!= marked(doc.returns.description)

View file

@ -30,6 +30,15 @@ PropertyDocumentationSchema = c.object {
args: c.array {title: "Arguments", description: "If this property has type 'function', then provide documentation for any function arguments."}, c.FunctionArgumentSchema
owner: {title: "Owner", type: 'string', description: 'Owner of the property, like "this" or "Math".'}
example: {title: "Example", type: 'string', description: 'An optional example code block.', format: 'javascript'}
returns: c.object {
title: "Return Value"
description: 'Optional documentation of any return value.'
required: ['type']
default: {type: 'null'}
},
type: c.shortString(title: "Type", description: "Type of the return value")
example: c.shortString(title: "Example", description: "Example return value")
description: {title: "Description", type: 'string', description: "Description of the return value.", maxLength: 1000}
DependencySchema = c.object {
title: "Component Dependency"