You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+27-25Lines changed: 27 additions & 25 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,30 +11,32 @@ This guide details the initial setup and basic usage of the [SfMarkdownViewer]()
11
11
#### XAML
12
12
13
13
```xaml
14
-
<markdown:SfMarkdownViewer>
15
-
<markdown:SfMarkdownViewer.Source>
16
-
<x:String>
17
-
<![CDATA[
18
-
# What is Markdown Viewer?
19
-
Markdown View is a UI control in .NET MAUI that allows developers to render Markdown content with full formatting support. It is designed to work efficiently across both mobile and desktop platforms. The viewer supports headings, bold and italic text, lists, tables, images, code blocks, etc.
20
-
21
-
# Header 1
22
-
Used for the main title or top-level heading in a Markdown document.
23
-
24
-
## Header 2
25
-
Used to define major sections within your Markdown content.
26
-
27
-
## Table
28
-
29
-
| | Column 1 | Column 2 | Column 3 |
30
-
|--------------|----------|----------|----------|
31
-
| Row 1 | Content | Content | Content |
32
-
| Row 2 | Content | Content | Content |
33
-
| Row 3 | Content | Content | Content |
34
-
]]>
35
-
</x:String>
36
-
</markdown:SfMarkdownViewer.Source>
37
-
</markdown:SfMarkdownViewer>
14
+
<ContentPage>
15
+
<markdown:SfMarkdownViewer>
16
+
<markdown:SfMarkdownViewer.Source>
17
+
<x:String>
18
+
<![CDATA[
19
+
# What is Markdown Viewer?
20
+
Markdown View is a UI control in .NET MAUI that allows developers to render Markdown content with full formatting support. It is designed to work efficiently across both mobile and desktop platforms. The viewer supports headings, bold and italic text, lists, tables, images, code blocks, etc.
21
+
22
+
# Header 1
23
+
Used for the main title or top-level heading in a Markdown document.
24
+
25
+
## Header 2
26
+
Used to define major sections within your Markdown content.
27
+
28
+
## Table
29
+
30
+
| | Column 1 | Column 2 | Column 3 |
31
+
|--------------|----------|----------|----------|
32
+
| Row 1 | Content | Content | Content |
33
+
| Row 2 | Content | Content | Content |
34
+
| Row 3 | Content | Content | Content |
35
+
]]>
36
+
</x:String>
37
+
</markdown:SfMarkdownViewer.Source>
38
+
</markdown:SfMarkdownViewer>
39
+
</ContentPage>
38
40
```
39
41
#### C#
40
42
@@ -77,4 +79,4 @@ Used to define major sections within your Markdown content.
77
79
78
80
If you are facing a "Path too long" exception when building this example project, close Visual Studio and rename the repository to a shorter name before building the project.
79
81
80
-
Refer to the User Guide documentation on [getting started with .NET MAUI SfMarkdownViewer]().
82
+
Refer to the User Guide documentation on [getting started with .NET MAUI SfMarkdownViewer](https://help.syncfusion.com/maui/markdownviewer/getting-started).
0 commit comments