HtmlGeneration.XmlToHtmlTree 1.0.0

dotnet add package HtmlGeneration.XmlToHtmlTree --version 1.0.0
NuGet\Install-Package HtmlGeneration.XmlToHtmlTree -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="HtmlGeneration.XmlToHtmlTree" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add HtmlGeneration.XmlToHtmlTree --version 1.0.0
#r "nuget: HtmlGeneration.XmlToHtmlTree, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install HtmlGeneration.XmlToHtmlTree as a Cake Addin
#addin nuget:?package=HtmlGeneration.XmlToHtmlTree&version=1.0.0

// Install HtmlGeneration.XmlToHtmlTree as a Cake Tool
#tool nuget:?package=HtmlGeneration.XmlToHtmlTree&version=1.0.0

Description

This is a fairly simple libary that converts any XML file into HTML format so it can be displayed in a browser.

For Example, the following file

<My>
    <Awesome>XML</Awesome>
    <File />
</My>

Would be displayed as <details> <summary>My</summary> <ul> <li> <details> <summary>Awesome</summary> <ul> XML </ul> </details> </li> <li> <details> <summary>File</summary> <ul> </ul> </details> </li> </ul> </details>

Usage

There are multiple options to call the Function. Both XDocuments and strings can be converted. Also you can optionally provide any writable Stream object to integrate the HTML generation into your own rendering pipeline without passing around strings.

You can optionally create an XmlToHtmlSerializationSettings instance and pass it to the function. This settings class contains a few useful options for serialization and HTML generation to customize the generated code.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0 239 5/16/2022

Initial Release