--- type: docs title: "Conceptual article template" linkTitle: "Conceptual template" weight: 10 description: Suggested template and guidance for creating a concept article --- ## Contributing a new conceptual or overview article Conceptual (or overview) articles answer the questions: - Why should you care about this feature? - What problems does it help you solve? While a component, API, or SDK spec may help readers understand how to use or work with these features, a conceptual article provides more depth and context. Link off to the spec article, but try not to simply repeat the spec. When naming your conceptual article, make sure it is consistent with the spec in terms of names, parameters, and terminology. Make sure you update both as needed. {{% alert title="Note" color="primary" %}} This template is only a suggestion. Feel free to change based on your document's purpose. {{% /alert %}} Learn more about [contributing to the Dapr docs]({{< ref contributing-docs.md >}}), like [front-matter]({{< ref "contributing-docs.md#front-matter" >}}) and [shortcodes]({{< ref "contributing-docs.md#shortcodes" >}}). ### Template ```md --- type: #Required; docs title: #Required; Brief, clear title linkTitle: #Required; Brief title weight: #Required; Use the correct weight based on hierarchy description: #Required; One-sentence description of what to expect in the article --- ##
##
##
## Try out ### Quickstarts and tutorials Want to put the Dapr API to the test? Walk through the following quickstart and tutorials to see in action: | Quickstart/tutorial | Description | | ------------------- | ----------- | | [ quickstart](link) | Description of the quickstart. | | [ tutorial](link) | Description of the tutorial. | ### Start using directly in your app Want to skip the quickstarts? Not a problem. You can try out the building block directly in your application. After [Dapr is installed](link), you can begin using the API, starting with [the how-to guide](link). --> ## Next steps ```