--- type: docs title: "How-to guide template" linkTitle: "How-to template" weight: 30 description: Suggested template and guidance for creating a how-to guide --- ## Contributing a new how-to guide How-to guides provide step-by-step practical guidance to readers who wish to: - Enable a feature - Integrate a technology - Use Dapr in a specific scenario How-to guides can be considered "next-level", self-guided docs compared to quickstarts. How-to scenarios will take longer and can be more easily applied to the reader's individual project or environment. When naming your how-to document, include the sub-directory name in the file name. If you need to create a new sub-directory, make sure it's descriptive and includes the relevant component or concept name. For example, _pubsub-namespaces_. {{% 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 %}}), like [front-matter]({{% ref "contributing-docs#front-matter" %}}) and [shortcodes]({{% ref "contributing-docs#shortcodes" %}}). ### Template ```md --- type: #Required; docs title: #Required; "How to: Brief, clear title" linkTitle: #Required; "How to: Shorter than regular title, to show in table of contents" weight: #Required; Use the correct weight based on hierarchy description: #Required; One-sentence description of what to expect in the article --- ## ## ## Next steps ```