Skip to content

Commit f35abe4

Browse files
Update prevent-text-cut-off-pdf-conversion-radwordsprocessing.md
1 parent 237fffd commit f35abe4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

knowledge-base/prevent-text-cut-off-pdf-conversion-radwordsprocessing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ This KB article also answers the following questions:
3030
## Solution
3131
To resolve the issue with text cut off and ensure all characters, including special ones, are correctly displayed, implement a custom `FontsProvider`. This provider will supply the necessary font data to the PdfProcessing library, enabling it to correctly render all characters.
3232

33-
1\. Implement a custom [FontsProvider]({%slug pdfprocessing-implement-fontsprovider%}) by extending `FontsProviderBase` and override the `GetFontData` method. This method should return the font data for the required fonts, including those with special characters.
33+
1/. Implement a custom [FontsProvider]({%slug pdfprocessing-implement-fontsprovider%}) by extending `FontsProviderBase` and override the `GetFontData` method. This method should return the font data for the required fonts, including those with special characters.
3434

3535
The following example shows how to handle *Tahoma, Arial and Segoe UI* fonts. When using other fonts, the custom implementation should be modified and further extended with the respective fonts.
3636

@@ -81,7 +81,7 @@ The following example shows how to handle *Tahoma, Arial and Segoe UI* fonts. Wh
8181
}
8282
```
8383

84-
2\. Before converting your HTML document to PDF, set the custom `FontsProvider` to the `FontsProvider` property of the `FixedExtensibilityManager`.
84+
2/. Before converting your HTML document to PDF, set the custom `FontsProvider` to the `FontsProvider` property of the `FixedExtensibilityManager`.
8585

8686
```csharp
8787
Telerik.Windows.Documents.Extensibility.FontsProviderBase fontsProvider = new FontsProvider();

0 commit comments

Comments
 (0)