Skip to content

Commit 6e96282

Browse files
committed
changes made
1 parent 16ea035 commit 6e96282

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

MarkdownViewerGettingStarted/MainPage.xaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@
88
<markdown:SfMarkdownViewer.Source>
99
<x:String>
1010
<![CDATA[
11-
# What is Markdown Viewer?
12-
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.
11+
# What is the Markdown Viewer?
12+
The Markdown Viewer is a UI control in .NET MAUI that allows developers to render Markdown content with full formatting support. It was designed to work efficiently on both mobile and desktop platforms. The viewer supports headings, bold and italic text, lists, tables, images, code blocks and more.
1313
1414
# Header 1
1515
Used for the main title or top-level heading in a Markdown document.
1616
1717
## Header 2
1818
Used to define major sections within your Markdown content.
1919
20-
## Table
20+
### Table
2121
2222
| | Column 1 | Column 2 | Column 3 |
2323
|--------------|----------|----------|----------|

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ This guide details the initial setup and basic usage of the [SfMarkdownViewer]()
1616
<markdown:SfMarkdownViewer.Source>
1717
<x:String>
1818
<![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.
19+
# What is the Markdown Viewer?
20+
The Markdown Viewer is a UI control in .NET MAUI that allows developers to render Markdown content with full formatting support. It was designed to work efficiently on both mobile and desktop platforms. The viewer supports headings, bold and italic text, lists, tables, images, code blocks and more.
2121
2222
# Header 1
2323
Used for the main title or top-level heading in a Markdown document.
2424
2525
## Header 2
2626
Used to define major sections within your Markdown content.
2727
28-
## Table
28+
### Table
2929
3030
| | Column 1 | Column 2 | Column 3 |
3131
|--------------|----------|----------|----------|
@@ -43,22 +43,22 @@ This guide details the initial setup and basic usage of the [SfMarkdownViewer]()
4343
```C#
4444
public partial class MainPage : ContentPage
4545
{
46-
private const string markdownContent = @"# What is Markdown Viewer?
47-
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.
46+
private const string markdownContent = @"# What is the Markdown Viewer?
47+
The Markdown Viewer is a UI control in .NET MAUI that allows developers to render Markdown content with full formatting support. It was designed to work efficiently on both mobile and desktop platforms. The viewer supports headings, bold and italic text, lists, tables, images, code blocks and more.
4848
49-
# Header 1
50-
Used for the main title or top-level heading in a Markdown document.
49+
# Header 1
50+
Used for the main title or top-level heading in a Markdown document.
5151
52-
## Header 2
53-
Used to define major sections within your Markdown content.
52+
## Header 2
53+
Used to define major sections within your Markdown content.
5454
55-
## Table
55+
### Table
5656
57-
| | Column 1 | Column 2 | Column 3 |
58-
|--------------|----------|----------|----------|
59-
| Row 1 | Content | Content | Content |
60-
| Row 2 | Content | Content | Content |
61-
| Row 3 | Content | Content | Content |";
57+
| | Column 1 | Column 2 | Column 3 |
58+
|--------------|----------|----------|----------|
59+
| Row 1 | Content | Content | Content |
60+
| Row 2 | Content | Content | Content |
61+
| Row 3 | Content | Content | Content |";
6262

6363
public MainPage()
6464
{

0 commit comments

Comments
 (0)