Definition

Assembly: Mintlify.Core.dll Namespace: Mintlify.Core.Models Inheritance: System.Object

Syntax

Mintlify.Core.Models.SeoConfig

Summary

Represents the SEO (Search Engine Optimization) configuration for the Mintlify documentation site.

Remarks

This configuration controls how search engines index and display the documentation, including meta tags and indexing behavior.

Constructors

.ctor

Syntax

public SeoConfig()

Properties

Indexing

Gets or sets which pages should be indexed by search engines.

Syntax

public string Indexing { get; set; }

Property Value

Type: string?

Remarks

Valid values are “navigable” (only pages in navigation) or “all” (all pages). The “navigable” setting indexes only pages that appear in the site navigation, while “all” indexes every page in the documentation. Defaults to “navigable”.

Metatags

Gets or sets custom meta tags to be added to every page.

Syntax

public System.Collections.Generic.Dictionary<string, string> Metatags { get; set; }

Property Value

Type: System.Collections.Generic.Dictionary<string, string>?

Remarks

Each key-value pair represents a meta tag name and its content. These tags are included in the HTML head section of all pages to provide additional information to search engines.