Skip to content

Instantly share code, notes, and snippets.

@75lb
Created December 19, 2018 11:40
Show Gist options
  • Save 75lb/b4e781ea8d3461c71b35b78a2ff417c6 to your computer and use it in GitHub Desktop.
Save 75lb/b4e781ea8d3461c71b35b78a2ff417c6 to your computer and use it in GitHub Desktop.
CUSTOM MODULE LIST
{{#modules~}}
{{log this}}
MODULE: {{name}}
SIG-LINK:
{{>sig-link}}
{{/modules}}
CUSTOM MODULE LIST END
{{#unless (optionEquals "module-index-format" "none")~}}
{{#if (optionEquals "module-index-format" "dl")}}{{>module-index-dl ~}}{{/if~}}
{{#if (optionEquals "module-index-format" "grouped")}}{{>module-index-grouped ~}}{{/if~}}
{{#if (optionEquals "module-index-format" "table")}}{{>module-index-table ~}}{{/if~}}
{{#if (optionEquals "module-index-format" "krinkle")}}{{>module-index-krinkle ~}}{{/if~}}
{{/unless~}}
/**
* @module something
*/
module.exports = function () {}
/**
* @module anotherthing
*/
module.exports = function () {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment