From 52774bbe6402aee076b2e0648bd1f4764924da8a Mon Sep 17 00:00:00 2001 From: syuilo Date: Sat, 23 Feb 2019 11:20:58 +0900 Subject: Introduce OpenAPI specs (#4351) * wip * wip * wip * Update index.ts * Update gen-openapi-spec.ts * Update api.ja-JP.md * Fix * Improve doc * Update gen-openapi-spec.ts * Update redoc.html * Improve doc * Update gen-openapi-spec.ts * Improve doc * Update CHANGELOG.md --- src/docs/api/mixins.pug | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 src/docs/api/mixins.pug (limited to 'src/docs/api/mixins.pug') diff --git a/src/docs/api/mixins.pug b/src/docs/api/mixins.pug deleted file mode 100644 index 563739d52b..0000000000 --- a/src/docs/api/mixins.pug +++ /dev/null @@ -1,34 +0,0 @@ -mixin type(prop) - i= prop.type - if prop.kind == 'id' - if prop.entity - | ( - a(href=`/docs/${lang}/api/entities/${kebab(prop.entity)}`)= prop.entity - | ID) - else - | (ID) - else if prop.kind == 'entity' - | ( - a(href=`/docs/${lang}/api/entities/${kebab(prop.entity)}`)= prop.entity - | ) - else if prop.kind == 'object' - if prop.hasDef - | ( - a(href=`#${prop.name}`)= prop.name - | ) - else if prop.kind == 'date' - | (Date) - -mixin propTable(props) - table.props - thead: tr - th= i18n('docs.api.props.name') - th= i18n('docs.api.props.type') - th= i18n('docs.api.props.description') - tbody - each prop in props - tr - td.name= prop.name - td.type - +type(prop) - td.desc!= prop.desc ? prop.desc[lang] || prop.desc['ja-JP'] : null -- cgit v1.2.3-freya