Sharkey/src/docs/api/entities/view.pug

21 lines
375 B
Text
Raw Normal View History

2018-07-15 19:05:19 +09:00
extends ../../base
2017-12-15 00:23:45 +09:00
include ../mixins
block meta
2018-04-18 18:39:04 +09:00
link(rel="stylesheet" href="/docs/assets/api/entities/style.css")
2017-12-15 00:23:45 +09:00
block main
h1= name
2018-08-29 06:59:43 +09:00
p#desc= desc[lang] || desc['ja-JP']
2017-12-15 00:23:45 +09:00
section
2018-07-06 20:27:48 +09:00
h2= i18n('docs.api.entities.properties')
2017-12-15 00:23:45 +09:00
+propTable(props)
if propDefs
each propDef in propDefs
section(id= propDef.name)
h3= propDef.name
2018-07-07 13:34:42 +09:00
+propTable(propDef.props)