Skip to content

Commit

Permalink
add readme
Browse files Browse the repository at this point in the history
  • Loading branch information
whistyun committed Jan 10, 2023
1 parent f65a43d commit a3788fa
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 0 deletions.
6 changes: 6 additions & 0 deletions MdXaml.Html/MdXaml.Html.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<Copyright>© Simon Baynes 2013; whistyun 2022</Copyright>
<PackageProjectUrl>https://github.com/whistyun/MdXaml</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>MdXaml.Html.md</PackageReadmeFile>
<PackageTags>Markdown WPF Xaml FlowDocument</PackageTags>
<Configurations>Debug;Release</Configurations>

Expand All @@ -20,6 +21,11 @@
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\key.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>

<ItemGroup>
<None Include="..\pack_readme\MdXaml.Html.md" Pack="true" PackagePath="\"/>
</ItemGroup>

<ItemGroup>
<None Remove="Core\Parsers\TypicalBlockParser.tsv" />
<None Remove="Core\Parsers\TypicalInlineParser.tsv" />
Expand Down
5 changes: 5 additions & 0 deletions MdXaml.Svg/MdXaml.Svg.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<Copyright>Copyright (c) 2022 whistyun</Copyright>
<PackageProjectUrl>https://github.com/whistyun/MdXaml</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>MdXaml.Svg.md</PackageReadmeFile>
<PackageTags>Markdown WPF Xaml FlowDocument</PackageTags>
<Configurations>Debug;Release</Configurations>

Expand All @@ -22,6 +23,10 @@
<AssemblyOriginatorKeyFile>..\key.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>

<ItemGroup>
<None Include="..\pack_readme\MdXaml.Svg.md" Pack="true" PackagePath="\"/>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Svg" Version="3.0.84" />
</ItemGroup>
Expand Down
2 changes: 2 additions & 0 deletions MdXaml/MdXaml.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<Copyright>Copyright (c) 2010 Bevan Arps, 2020 whistyun</Copyright>
<PackageProjectUrl>https://github.com/whistyun/MdXaml</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>MdXaml.md</PackageReadmeFile>
<PackageTags>Markdown WPF Xaml FlowDocument</PackageTags>
<Configurations>Debug;Release</Configurations>
<LangVersion>9</LangVersion>
Expand All @@ -24,6 +25,7 @@
<ItemGroup>
<None Remove="EmojiTable.txt" />
<EmbeddedResource Include="EmojiTable.txt" />
<None Include="..\pack_readme\MdXaml.md" Pack="true" PackagePath="\"/>
</ItemGroup>

<ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions pack_readme/MdXaml.Html.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
A plugin for converting HTML to FlowDocument in MdXaml
1 change: 1 addition & 0 deletions pack_readme/MdXaml.Svg.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
A plugin for rendering SVG in MdXaml
17 changes: 17 additions & 0 deletions pack_readme/MdXaml.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
Transform Markdown to FlowDocument(WPF).

**How to use**
[How to transform markdown to FlowDocument-object.](https://whistyun.github.io/MdXaml/transform_markdow_to_flowdocument.html)
[How to render markdown in WPF Control.](https://whistyun.github.io/MdXaml/render_markdown_in_control.html)
[for more](https://github.com/whistyun/MdXaml/wiki)

**Migration from Markdown.Xaml**
MdXaml change namespace from Markdown.Xaml to MdXaml. So you should change namespace in your code.
Or use [migration free edition](https://www.nuget.org/packages/MdXaml_migfree/)

**Preview**
![sc1](https://raw.githubusercontent.com/whistyun/MdXaml/master/docs/img.demo/sc1.png)
![sc2](https://raw.githubusercontent.com/whistyun/MdXaml/master/docs/img.demo/sc2.png)
![sc3](https://raw.githubusercontent.com/whistyun/MdXaml/master/docs/img.demo/sc3.png)
![sc4](https://raw.githubusercontent.com/whistyun/MdXaml/master/docs/img.demo/sc4.png)
![sc5](https://raw.githubusercontent.com/whistyun/MdXaml/master/docs/img.demo/sc5.png)

0 comments on commit a3788fa

Please sign in to comment.