@nx-dotnet/nxdoc
Version:
> This package is unstable! Documentation formatting could change in the future. See something that you think should be different? [Open an issue](https://github.com/nx-dotnet/nx-dotnet/issues) on github and help shape this plugin.
33 lines (21 loc) • 713 B
Markdown
<% if(frontMatter) {%>---
<% if(frontMatter.title) { %>title: "<%= frontMatter.title %>"<%}%>
sidebar_position: 0
sidebar_label: "Getting Started"
slug: /<%=projectFileName%>/
<%}%>---
<%if (gettingStartedMd && gettingStartedMd.length) {%># Getting Started
<%-gettingStartedMd%>
<%}%>
# API Reference
<% if(Object.values(generators).length > 0) {%>
## Generators
<% Object.entries(generators).forEach(([key, config]) => { %>
### [<%= key %>](./Generators/<%=key%>.md)
<%= config.description %>
<% })} %><% if(Object.values(executors).length > 0) {%>
## Executors
<% Object.entries(executors).forEach(([key, config]) => { %>
### [<%= key %>](./Executors/<%=key%>.md)
<%= config.description %>
<% })} %>