Skip to content

Commit 97dd74b

Browse files
chore: sync markdown files from source repo
1 parent abe6b27 commit 97dd74b

File tree

40 files changed

+590
-25
lines changed

40 files changed

+590
-25
lines changed

content/sites/groupdocs/markdown/english/net/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,6 @@ version:
1313
| Namespace | Description |
1414
| --- | --- |
1515
| [GroupDocs.Markdown](./groupdocs.markdown) | The namespace contains some specific exceptions that are thrown by the library during file reading and updating. |
16+
| [GroupDocs.Markdown.DocumentConversion](./groupdocs.markdown.documentconversion) | |
1617

1718
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.Markdown.dll -->
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
title: GroupDocs.Markdown.DocumentConversion
3+
second_title: GroupDocs.Markdown for .NET API Reference
4+
description:
5+
type: docs
6+
weight: 20
7+
url: /net/groupdocs.markdown.documentconversion/
8+
---
9+
10+
11+
## Interfaces
12+
13+
| Interface | Description |
14+
| --- | --- |
15+
| [IExportStrategy](./iexportstrategy) | Defines the interface for handling resource export during document conversion to Markdown. |
16+
17+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.Markdown.dll -->
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
title: IExportStrategy
3+
second_title: GroupDocs.Markdown for .NET API Reference
4+
description: Defines the interface for handling resource export during document conversion to Markdown.
5+
type: docs
6+
weight: 70
7+
url: /net/groupdocs.markdown.documentconversion/iexportstrategy/
8+
---
9+
## IExportStrategy interface
10+
11+
Defines the interface for handling resource export during document conversion to Markdown.
12+
13+
```csharp
14+
public interface IExportStrategy
15+
```
16+
17+
### See Also
18+
19+
* namespace [GroupDocs.Markdown.DocumentConversion](../../groupdocs.markdown.documentconversion)
20+
* assembly [GroupDocs.Markdown](../../)
21+
22+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.Markdown.dll -->

content/sites/groupdocs/markdown/english/net/groupdocs.markdown/_index.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ The namespace contains some specific exceptions that are thrown by the library d
1515
| [CustomImageSavingArgs](./customimagesavingargs) | User arguments for saving item. |
1616
| [CustomImagesStrategy.CustomImageSavingHandler](./customimagesstrategy.customimagesavinghandler) | Delegate through which you can define the mechanism for saving images when creating a .md file |
1717
| [CustomImagesStrategy](./customimagesstrategy) | Implements an image export strategy that user control how images are saved when a document is saved to Markdown format. |
18+
| [CustomUriExportStrategy](./customuriexportstrategy) | Implements a URI export strategy that lets users customize how resource URIs are written to Markdown. |
19+
| [DefaultUriExportStrategy](./defaulturiexportstrategy) | Provides default URI handling that keeps the URIs generated by the library unchanged. |
1820
| [DocumentConverterOptions](./documentconverteroptions) | Provides options for customizing the document conversion process to Markdown format. |
1921
| [DocumentConverterResult](./documentconverterresult) | Represents the result of a document conversion operation to Markdown format. |
2022
| [DocumentProtectedException](./documentprotectedexception) | The exception that is thrown when document is protected by password. |
@@ -28,11 +30,15 @@ The namespace contains some specific exceptions that are thrown by the library d
2830
| [MarkdownConverter](./markdownconverter) | Converts various document formats to Markdown format. |
2931
| [Metered](./metered) | Provides methods to set a metered key. |
3032
| [SkipImagesStrategy](./skipimagesstrategy) | Implements an image export strategy that skips saving images during document conversion. |
33+
| [UriExportContext](./uriexportcontext) | Represents the context for resource URI handling during document conversion to Markdown. |
34+
| [UriSavingArgs](./urisavingargs) | User arguments for saving a resource URI. |
35+
| [CustomUriExportStrategy.UriSavingHandler](./customuriexportstrategy.urisavinghandler) | Delegate through which you can define the URI generation logic when creating a .md file. |
3136
## Interfaces
3237

3338
| Interface | Description |
3439
| --- | --- |
3540
| [IImageExportStrategy](./iimageexportstrategy) | Defines the interface for handling image export during document conversion to Markdown. Implement this interface to customize how images are exported from source documents. |
41+
| [IUriExportStrategy](./iuriexportstrategy) | Defines the interface for handling resource URI export during document conversion to Markdown. |
3642
## Enumeration
3743

3844
| Enumeration | Description |
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
title: CustomUriExportStrategy.UriSavingHandler
3+
second_title: GroupDocs.Markdown for .NET API Reference
4+
description: Delegate through which you can define the URI generation logic when creating a .md file.
5+
type: docs
6+
weight: 50
7+
url: /net/groupdocs.markdown/customuriexportstrategy.urisavinghandler/
8+
---
9+
## CustomUriExportStrategy.UriSavingHandler delegate
10+
11+
Delegate through which you can define the URI generation logic when creating a .md file.
12+
13+
```csharp
14+
public delegate void UriSavingHandler(UriSavingArgs args);
15+
```
16+
17+
### See Also
18+
19+
* class [UriSavingArgs](../urisavingargs)
20+
* class [CustomUriExportStrategy](../customuriexportstrategy)
21+
* namespace [GroupDocs.Markdown](../../groupdocs.markdown)
22+
* assembly [GroupDocs.Markdown](../../)
23+
24+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.Markdown.dll -->
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
title: CustomUriExportStrategy
3+
second_title: GroupDocs.Markdown for .NET API Reference
4+
description: Implements a URI export strategy that lets users customize how resource URIs are written to Markdown.
5+
type: docs
6+
weight: 40
7+
url: /net/groupdocs.markdown/customuriexportstrategy/
8+
---
9+
## CustomUriExportStrategy class
10+
11+
Implements a URI export strategy that lets users customize how resource URIs are written to Markdown.
12+
13+
```csharp
14+
public class CustomUriExportStrategy : IUriExportStrategy
15+
```
16+
17+
## Constructors
18+
19+
| Name | Description |
20+
| --- | --- |
21+
| [CustomUriExportStrategy](customuriexportstrategy)(UriSavingHandler) | Initializes a new instance of the [`CustomUriExportStrategy`](../customuriexportstrategy) class. |
22+
23+
## Methods
24+
25+
| Name | Description |
26+
| --- | --- |
27+
| [UpdateResourceUri](../../groupdocs.markdown/customuriexportstrategy/updateresourceuri)(UriExportContext) | |
28+
29+
## Other Members
30+
31+
| Name | Description |
32+
| --- | --- |
33+
| delegate [UriSavingHandler](customuriexportstrategy.urisavinghandler) | Delegate through which you can define the URI generation logic when creating a .md file. |
34+
35+
### See Also
36+
37+
* interface [IUriExportStrategy](../iuriexportstrategy)
38+
* namespace [GroupDocs.Markdown](../../groupdocs.markdown)
39+
* assembly [GroupDocs.Markdown](../../)
40+
41+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.Markdown.dll -->
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
title: CustomUriExportStrategy
3+
second_title: GroupDocs.Markdown for .NET API Reference
4+
description: Initializes a new instance of the CustomUriExportStrategygroupdocs.markdown/customuriexportstrategy class.
5+
type: docs
6+
weight: 10
7+
url: /net/groupdocs.markdown/customuriexportstrategy/customuriexportstrategy/
8+
---
9+
## CustomUriExportStrategy constructor
10+
11+
Initializes a new instance of the [`CustomUriExportStrategy`](../../customuriexportstrategy) class.
12+
13+
```csharp
14+
public CustomUriExportStrategy(UriSavingHandler handler)
15+
```
16+
17+
| Parameter | Type | Description |
18+
| --- | --- | --- |
19+
| handler | UriSavingHandler | The custom handler used to override the URI that will be written to Markdown. |
20+
21+
### See Also
22+
23+
* delegate [UriSavingHandler](../../customuriexportstrategy.urisavinghandler)
24+
* class [CustomUriExportStrategy](../../customuriexportstrategy)
25+
* namespace [GroupDocs.Markdown](../../../groupdocs.markdown)
26+
* assembly [GroupDocs.Markdown](../../../)
27+
28+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.Markdown.dll -->
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
title: UpdateResourceUri
3+
second_title: GroupDocs.Markdown for .NET API Reference
4+
description:
5+
type: docs
6+
weight: 20
7+
url: /net/groupdocs.markdown/customuriexportstrategy/updateresourceuri/
8+
---
9+
## CustomUriExportStrategy.UpdateResourceUri method
10+
11+
```csharp
12+
public void UpdateResourceUri(UriExportContext context)
13+
```
14+
15+
### See Also
16+
17+
* class [UriExportContext](../../uriexportcontext)
18+
* class [CustomUriExportStrategy](../../customuriexportstrategy)
19+
* namespace [GroupDocs.Markdown](../../../groupdocs.markdown)
20+
* assembly [GroupDocs.Markdown](../../../)
21+
22+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.Markdown.dll -->
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
title: DefaultUriExportStrategy
3+
second_title: GroupDocs.Markdown for .NET API Reference
4+
description: Provides default URI handling that keeps the URIs generated by the library unchanged.
5+
type: docs
6+
weight: 60
7+
url: /net/groupdocs.markdown/defaulturiexportstrategy/
8+
---
9+
## DefaultUriExportStrategy class
10+
11+
Provides default URI handling that keeps the URIs generated by the library unchanged.
12+
13+
```csharp
14+
public class DefaultUriExportStrategy : IUriExportStrategy
15+
```
16+
17+
## Constructors
18+
19+
| Name | Description |
20+
| --- | --- |
21+
| [DefaultUriExportStrategy](defaulturiexportstrategy)() | The default constructor. |
22+
23+
## Methods
24+
25+
| Name | Description |
26+
| --- | --- |
27+
| [UpdateResourceUri](../../groupdocs.markdown/defaulturiexportstrategy/updateresourceuri)(UriExportContext) | |
28+
29+
### See Also
30+
31+
* interface [IUriExportStrategy](../iuriexportstrategy)
32+
* namespace [GroupDocs.Markdown](../../groupdocs.markdown)
33+
* assembly [GroupDocs.Markdown](../../)
34+
35+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.Markdown.dll -->
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: DefaultUriExportStrategy
3+
second_title: GroupDocs.Markdown for .NET API Reference
4+
description: The default constructor.
5+
type: docs
6+
weight: 10
7+
url: /net/groupdocs.markdown/defaulturiexportstrategy/defaulturiexportstrategy/
8+
---
9+
## DefaultUriExportStrategy constructor
10+
11+
The default constructor.
12+
13+
```csharp
14+
public DefaultUriExportStrategy()
15+
```
16+
17+
### See Also
18+
19+
* class [DefaultUriExportStrategy](../../defaulturiexportstrategy)
20+
* namespace [GroupDocs.Markdown](../../../groupdocs.markdown)
21+
* assembly [GroupDocs.Markdown](../../../)
22+
23+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.Markdown.dll -->

0 commit comments

Comments
 (0)