File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
dist/lib/resources/helpers
src/lib/resources/helpers Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,8 @@ function default_1(theme) {
9797 } ) ;
9898 md . push ( "### Builtin" ) ;
9999 for ( const child of builtin !== null && builtin !== void 0 ? builtin : [ ] ) {
100- if ( child . name == "iasql_functions" ) {
100+ if ( child . name == "iasql_functions" ||
101+ child . name == "iasql_platform" ) {
101102 const content = displayChild ( child , builtin !== null && builtin !== void 0 ? builtin : [ ] ) ;
102103 md . push ( ...content ) ;
103104 }
Original file line number Diff line number Diff line change 11{
22 "name" : " docusaurus-plugin-iasql" ,
3- "version" : " 1.1.0 " ,
3+ "version" : " 1.1.1 " ,
44 "description" : " A Docusaurus v2 plugin to build API documentation with TypeDoc for IaSQL." ,
55 "main" : " dist/index.js" ,
66 "files" : [
Original file line number Diff line number Diff line change @@ -90,7 +90,10 @@ export default function (theme: MarkdownTheme) {
9090 md . push ( "### Builtin" ) ;
9191
9292 for ( const child of builtin ?? [ ] ) {
93- if ( child . name == "iasql_functions" ) {
93+ if (
94+ child . name == "iasql_functions" ||
95+ child . name == "iasql_platform"
96+ ) {
9497 const content = displayChild ( child , builtin ?? [ ] ) ;
9598 md . push ( ...content ) ;
9699 }
You can’t perform that action at this time.
0 commit comments