mirror of
https://github.com/BradNut/graphbrainz
synced 2025-09-08 17:40:32 +00:00
Fix arg rendering
This commit is contained in:
parent
2acc80d50e
commit
6a9e4b721c
2 changed files with 258 additions and 258 deletions
514
doc/types.md
514
doc/types.md
File diff suppressed because it is too large
Load diff
|
|
@ -52,7 +52,7 @@ function renderObject (type, { skipTitle = false } = {}) {
|
||||||
field.args.forEach((arg, i) => {
|
field.args.forEach((arg, i) => {
|
||||||
console.log(' <tr>')
|
console.log(' <tr>')
|
||||||
console.log(` <td align="right" valign="top">${arg.name}</td>`)
|
console.log(` <td align="right" valign="top">${arg.name}</td>`)
|
||||||
console.log(` <td valign="top">${renderType(arg.type)}</td>`)
|
console.log(` <td valign="top">${markdown(renderType(arg.type))}</td>`)
|
||||||
console.log(` <td>${markdown(arg.description)}</td>`)
|
console.log(` <td>${markdown(arg.description)}</td>`)
|
||||||
console.log(' </tr>')
|
console.log(' </tr>')
|
||||||
})
|
})
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue