Concept Topics
Concept topics introduce and explain subjects, providing background knowledge before procedural or reference content.
Use
Concept topics are used to introduce and explain a subject, tool, feature, or process. They provide background knowledge that users need before performing a task or understanding a reference. They are ideal for overviews, product introductions, or clarifying abstract ideas. Concept topics are especially important early in the user journey, explaining "why" something matters before showing "how" to use it.
User Intent
"I need to understand this before I can do anything with it."
Common Tags
- <concept>: Root element for the topic.
- <title>: Name of the concept.
- <shortdesc>: A brief summary or abstract.
- <conbody>: Main body content.
- <section> or <p>: Structured explanation.
Structural Best Practices
- Start with a clear definition or overview.
- Explain the "why" before the "what".
- Use analogies and examples for complex concepts.
- Organize from general to specific.
- Link to related procedural content (tasks).
- Avoid embedding task steps within concept explanations; instead, link to separate task topics.
Sample XML Code
<concept id="twofactorauth">
<title>What is Two-Factor Authentication?</title>
<shortdesc>Two-factor authentication (2FA) adds an extra layer of security.</shortdesc>
<conbody>
<p>2FA requires users to provide two forms of identity verification...</p>
<section>
<title>Benefits of 2FA</title>
<p>It protects against phishing, stolen passwords, and more.</p>
</section>
</conbody>
</concept>