Skip to content

Commit de52b42

Browse files
103095: Create Markdown sample added
1 parent c513437 commit de52b42

5 files changed

Lines changed: 430 additions & 0 deletions

File tree

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.14.37314.3 d17.14
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Create-markdown", "Create-markdown\Create-markdown.csproj", "{B488B68A-FD97-4AA0-B6A6-B29B5A577BB6}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{B488B68A-FD97-4AA0-B6A6-B29B5A577BB6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{B488B68A-FD97-4AA0-B6A6-B29B5A577BB6}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{B488B68A-FD97-4AA0-B6A6-B29B5A577BB6}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{B488B68A-FD97-4AA0-B6A6-B29B5A577BB6}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {7F2449BA-7D62-4F78-AC45-0D195EAB7750}
24+
EndGlobalSection
25+
EndGlobal
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>net8.0</TargetFramework>
6+
<RootNamespace>Create_markdown</RootNamespace>
7+
<ImplicitUsings>enable</ImplicitUsings>
8+
<Nullable>enable</Nullable>
9+
</PropertyGroup>
10+
11+
<ItemGroup>
12+
<PackageReference Include="Syncfusion.Markdown" Version="*" />
13+
</ItemGroup>
14+
15+
<ItemGroup>
16+
<None Update="Output\.gitkeep">
17+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
18+
</None>
19+
</ItemGroup>
20+
21+
</Project>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
# The Giant Panda
2+
3+
![Giant Panda eating bamboo](https://cdn.syncfusion.com/content/images/company-logos/Syncfusion_Logo_Image.png)
4+
5+
*Figure 1: Syncfusion logo used for demonstration purposes.*
6+
7+
The giant panda, which only lives in **China** outside of captivity, has captured the hearts of people of all ages across the globe.
8+
> 🐼 Quick Fact: The estimated number of giant pandas in the wild varies between 1,500 and 3,000.
9+
10+
---
11+
12+
## Intriguing Giant Panda Mysteries
13+
14+
While most adore their fluffy fur and round heads, others are fascinated by the many mysteries of the giant panda. Did you know that the giant panda may actually be a raccoon, they have an ***opposable pseudo thumb***, and that they're technically a ~~tennis ball~~carnivore even though their diet is primarily vegetarian?
15+
16+
The table below lists the main characteristics the giant panda shares with bears and red pandas:
17+
|**Characteristic**|**Bear**|**Red Panda**|
18+
|:---|:---:|:---:|
19+
|Shape|||
20+
|Diet|||
21+
|Size|||
22+
|Paws|||
23+
|Cat\-like eyes|||
24+
25+
> 🌿 Quick Fact: As the seasons change, the giant panda prefers different species and parts of bamboo.
26+
>> For comparison, humans eat about 2 kilograms (5 pounds) of food a day.
27+
28+
---
29+
30+
### Other Fun Giant Panda Facts
31+
32+
- Unlike other bears, giant pandas do not hibernate during winter.
33+
34+
- A newborn giant panda is blind and looks like a tiny, pink, hairless mouse.
35+
36+
---
37+
38+
## Conservation Steps
39+
40+
Key steps taken to protect giant pandas in the wild:
41+
42+
1. Protect and expand bamboo forest reserves across Sichuan and Shaanxi.
43+
44+
2. Establish wildlife corridors to connect isolated panda habitats.
45+
46+
---
47+
48+
## Researcher's Checklist
49+
50+
- [X] Review existing population data
51+
52+
- [ ] Deploy GPS tracking collars on selected individuals
53+
54+
---
55+
56+
## Scientific Classification
57+
58+
Species: *Ailuropoda melanoleuca* | Family: **Ursidae** | Status: ***Vulnerable*** (IUCN Red List)
59+
60+
Cellulose formula: (C<sub>6</sub>H<sub>10</sub>O<sub>5</sub>) <sup>n</sup> — the primary component of bamboo that pandas struggle to digest.
61+
62+
---
63+
64+
## Panda Population Tracker — Code Sample
65+
66+
The following C\# snippet demonstrates how a simple panda population record might be modelled:
67+
```
68+
public class GiantPanda
69+
{
70+
public string Name { get; set; }
71+
public double WeightKg { get; set; }
72+
public string Habitat { get; set; }
73+
public bool IsEndangered { get; set; }
74+
public override string ToString()
75+
=> $"{Name} ({WeightKg} kg) — Habitat: {Habitat}";
76+
}
77+
```
78+
79+
Inline usage: instantiate with `new GiantPanda { Name \= "Mei Xiang", WeightKg \= 124.7 }`.
80+
81+
---
82+
83+
## Further Reading
84+
85+
Explore more about giant pandas through these authoritative sources:
86+
87+
- [Panda Info](https://example.com/panda)
88+
89+
- [Documentation](https://example.com/docs)
90+
91+
- [API Reference](https://example.com/api)
92+
93+
---
94+
95+
*Document generated using Syncfusion Markdown library.*

0 commit comments

Comments
 (0)