summaryrefslogtreecommitdiff
path: root/src/docs/api/entities/view.pug
blob: 1f166d053c588f19d13ddfed317d3a02871e131b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
extends ../../base
include ../mixins

block meta
	link(rel="stylesheet" href="/docs/assets/api/entities/style.css")

block main
	h1= name

	p#desc= desc[lang] || desc['ja-JP']

	section
		h2= i18n('docs.api.entities.properties')
		+propTable(props)

		if propDefs
			each propDef in propDefs
				section(id= propDef.name)
					h3= propDef.name
					+propTable(propDef.props)