<!--
title: Markdown formatting consistency
domain: app-frameworks
topic: Code Style
language: Markdown
source: ant-design/ant-design
updated: 2025-09-03
url: https://awesomereviewers.com/reviewers/ant-design-markdown-formatting-consistency/
-->

Ensure consistent markdown formatting in documentation by wrapping all technical terms, API names, property names, and code-related content in backticks. This improves readability and maintains visual consistency across documentation.

**Examples of proper formatting:**
- Property names: `classNames`, `styles`, `href`, `variant`
- API attributes: `aria-*`, `shape="round"`
- Technical terms: `@layer antd`

**Common mistakes to avoid:**
- Writing `classNames` instead of `classNames`
- Using plain text for property values like `variant="filled"` instead of `variant="filled"`
- Missing backticks around technical terms in changelog entries

This standard ensures that code-related content is visually distinguished from regular text, making documentation easier to scan and understand for developers.
