> ## Documentation Index
> Fetch the complete documentation index at: https://dotnetdocs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# MintlifyRendererOptions

> Configuration options for the Mintlify documentation renderer.

## Definition

**Assembly:** CloudNimble.DotNetDocs.Mintlify.dll

**Namespace:** CloudNimble.DotNetDocs.Mintlify

**Inheritance:** System.Object

## Syntax

```csharp theme={"dark"}
CloudNimble.DotNetDocs.Mintlify.MintlifyRendererOptions
```

## Summary

Configuration options for the Mintlify documentation renderer.

## Constructors

### <Icon icon="hammer" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> .ctor

#### Syntax

```csharp theme={"dark"}
public MintlifyRendererOptions()
```

### <Icon icon="hammer" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> .ctor <Badge color="gray">Inherited</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
public Object()
```

## Properties

### <Icon icon="tag" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> GenerateDocsJson

Gets or sets whether to generate the docs.json navigation file.

#### Syntax

```csharp theme={"dark"}
public bool GenerateDocsJson { get; set; }
```

#### Property Value

Type: `bool`
True to generate docs.json alongside MDX files; otherwise, false.
Default is true.

### <Icon icon="tag" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> GenerateNamespaceIndex

Gets or sets whether to generate index files for namespaces.

#### Syntax

```csharp theme={"dark"}
public bool GenerateNamespaceIndex { get; set; }
```

#### Property Value

Type: `bool`
True to generate index.mdx files for namespace documentation; otherwise, false.
Default is true.

### <Icon icon="tag" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> IncludeIcons

Gets or sets whether to include icons in navigation and frontmatter.

#### Syntax

```csharp theme={"dark"}
public bool IncludeIcons { get; set; }
```

#### Property Value

Type: `bool`
True to include FontAwesome icons; otherwise, false.
Default is true.

### <Icon icon="tag" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> NamespaceOrder

Gets or sets the custom order for namespaces in navigation.

#### Syntax

```csharp theme={"dark"}
public System.Collections.Generic.List<string> NamespaceOrder { get; set; }
```

#### Property Value

Type: `System.Collections.Generic.List<string>?`
A list of namespace patterns in the desired order, or null for alphabetical ordering.
Supports wildcards (e.g., "System.\*" matches all System namespaces).

### <Icon icon="tag" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> Navigation

Gets or sets the navigation configuration for DotNetDocs-specific properties.

#### Syntax

```csharp theme={"dark"}
public CloudNimble.DotNetDocs.Mintlify.DocsNavigationConfig Navigation { get; set; }
```

#### Property Value

Type: `CloudNimble.DotNetDocs.Mintlify.DocsNavigationConfig`
A DocsNavigationConfig instance that controls navigation mode, type, and name.
Default is a new instance with Mode=Unified, Type=Pages, and Name=null.

### <Icon icon="tag" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> Template

Gets or sets a custom template for the docs.json configuration.

#### Syntax

```csharp theme={"dark"}
public Mintlify.Core.Models.DocsJsonConfig Template { get; set; }
```

#### Property Value

Type: `Mintlify.Core.Models.DocsJsonConfig?`
A DocsJsonConfig instance to use as a template, or null to use defaults.
The navigation section will be generated automatically.

### <Icon icon="tag" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> UnifiedGroupName

Gets or sets the group name used when NavigationMode is Unified.

#### Syntax

```csharp theme={"dark"}
public string UnifiedGroupName { get; set; }
```

#### Property Value

Type: `string`
The name of the unified API reference group. Default is "API Reference".

## Methods

### <Icon icon="code-fork" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> Equals <Badge color="gray">Inherited</Badge> <Badge color="orange">Virtual</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
public virtual bool Equals(object obj)
```

#### Parameters

| Name  | Type      | Description |
| ----- | --------- | ----------- |
| `obj` | `object?` | -           |

#### Returns

Type: `bool`

### <Icon icon="thumbtack" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> Equals <Badge color="gray">Inherited</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
public static bool Equals(object objA, object objB)
```

#### Parameters

| Name   | Type      | Description |
| ------ | --------- | ----------- |
| `objA` | `object?` | -           |
| `objB` | `object?` | -           |

#### Returns

Type: `bool`

### <Icon icon="code-fork" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> GetHashCode <Badge color="gray">Inherited</Badge> <Badge color="orange">Virtual</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
public virtual int GetHashCode()
```

#### Returns

Type: `int`

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> GetType <Badge color="gray">Inherited</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
public System.Type GetType()
```

#### Returns

Type: `System.Type`

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> MemberwiseClone <Badge color="gray">Inherited</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
protected internal object MemberwiseClone()
```

#### Returns

Type: `object`

### <Icon icon="thumbtack" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> ReferenceEquals <Badge color="gray">Inherited</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
public static bool ReferenceEquals(object objA, object objB)
```

#### Parameters

| Name   | Type      | Description |
| ------ | --------- | ----------- |
| `objA` | `object?` | -           |
| `objB` | `object?` | -           |

#### Returns

Type: `bool`

### <Icon icon="code-fork" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> ToString <Badge color="gray">Inherited</Badge> <Badge color="orange">Virtual</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
public virtual string ToString()
```

#### Returns

Type: `string?`
