Skip to main content
ESC

Headings

Headings are standard markdown elements that structure your documentation hierarchy. Robindoc automatically generates anchor links for headings, making them directly linkable and enabling smooth navigation within your documentation.

Basic Usage 

Headings follow standard markdown syntax with # symbols:

# H1 Heading
## H2 Heading
### H3 Heading
#### H4 Heading
##### H5 Heading
###### H6 Heading

Robindoc automatically generates anchor IDs for headings using GitHub's slug algorithm . This ensures consistent, URL-friendly identifiers that match GitHub's behavior.

## Getting Started
### Installation
### Configuration

Result:

Getting Started 

Installation 

Configuration 

The above generates:

You can link to these headings directly:

[Installation](#installation)
[Go to Getting Started](#getting-started)

Implementation Details 

Important Notes 

LinksText Formatting
Return to navigation