forked from FoundKeyGang/FoundKey
✌️
This commit is contained in:
parent
5b66410031
commit
a357d5c6a5
4 changed files with 9 additions and 5 deletions
|
@ -15,8 +15,8 @@ params:
|
|||
type: "id(DriveFile)[]"
|
||||
optional: true
|
||||
desc:
|
||||
ja: "添付するメディア"
|
||||
en: "Media you want to attach"
|
||||
ja: "添付するメディア(1~4つ)"
|
||||
en: "Media you want to attach (1~4)"
|
||||
- name: "reply_id"
|
||||
type: "id(Post)"
|
||||
optional: true
|
||||
|
|
|
@ -11,6 +11,8 @@ table
|
|||
.name
|
||||
font-weight bold
|
||||
|
||||
.name
|
||||
.type
|
||||
.optional
|
||||
font-family Consolas, 'Courier New', Courier, Monaco, monospace
|
||||
|
||||
|
|
|
@ -17,10 +17,9 @@ mixin table(params)
|
|||
td.name= param.name
|
||||
td.type
|
||||
if param.kind == 'id'
|
||||
| #{param.type} (ID of
|
||||
= ' '
|
||||
| #{param.type} (
|
||||
a(href=`/docs/api/entities/${param.entity}`)= param.entity
|
||||
| )
|
||||
| ID)
|
||||
else if param.kind == 'entity'
|
||||
| #{param.type} (
|
||||
a(href=`/docs/api/entities/${param.entity}`)= param.entity
|
||||
|
|
|
@ -62,6 +62,9 @@ table
|
|||
tr
|
||||
border-bottom dashed 1px #eee
|
||||
|
||||
&:nth-child(odd)
|
||||
background #fbfbfb
|
||||
|
||||
th, td
|
||||
padding 8px 16px
|
||||
|
||||
|
|
Loading…
Reference in a new issue