Markupolation 2.0.0

dotnet add package Markupolation --version 2.0.0
NuGet\Install-Package Markupolation -Version 2.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="Markupolation" Version="2.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Markupolation --version 2.0.0
#r "nuget: Markupolation, 2.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 Markupolation as a Cake Addin
#addin nuget:?package=Markupolation&version=2.0.0

// Install Markupolation as a Cake Tool
#tool nuget:?package=Markupolation&version=2.0.0

Markupolation <📜>

build CodeFactor

Markupolation is a library for HTML templating with a fluent API:

$@"{DOCTYPE() +
html(lang("en"),
    head(
        meta(charset("utf-8")),
        e.title("Markupolation"),
        meta(name("description"), content("Sample of how to use Markupolation")),
        meta(name("viewport"), content("width=device-width, initial-scale=1"))
    ),
    body(
        h1("Hello, World!"),
        p("This is ", mark(a.title("Markup with string interpolation"), "Markupolation"), " in action.")
    )
)}";

Result (formatted):

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="utf-8" />
  <title>Markupolation</title>
  <meta name="description" content="Sample of how to use Markupolation" />
  <meta name="viewport" content="width=device-width, initial-scale=1" />
</head>

<body>
  <h1>Hello, World!</h1>
  <p>This is <mark title="Markup with string interpolation">Markupolation</mark> in action.</p>
</body>

</html>

Configuration in csproj file:

<PropertyGroup>
  <ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>

<ItemGroup>
  <PackageReference Include="Markupolation" Version="2.0.0" />
</ItemGroup>

Would you like to know more? 🤔

Further documentation is available at https://github.com/hlaueriksson/Markupolation

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Markupolation:

Package Downloads
Markupolation.Extensions

Markupolation = Markup + String Interpolation Extensions for HTML templating in C# with a fluent API: ⌨️ var links = new[] { new { Url = "#", Title = "Foo", Active = true }, new { Url = "#", Title = "Bar", Active = false } }; ⌨️ links.Each((x, index) => a(href(x.Url), id($"link{index}"), x.IfMatch(x => x.Active, x => class_("active")), x.Title)); 🖨️ <a href="#" id="link0" class="active">Foo</a><a href="#" id="link1">Bar</a>

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.0 344 4/8/2023
1.0.0 344 11/13/2021

Regenerated elements and attributes from https://html.spec.whatwg.org/
Living Standard — Last Updated 6 April 2023

When ImplicitUsings are enabled, the following using directives are now applied:

<Using Include="Markupolation" />
<Using Include="Markupolation.Elements" Static="True" />
<Using Include="Markupolation.Elements" Alias="e" />
<Using Include="Markupolation.Element" Alias="E" />
<Using Include="Markupolation.Attributes" Static="True" />
<Using Include="Markupolation.Attributes" Alias="a" />
<Using Include="Markupolation.Attribute" Alias="A" />
<Using Include="Markupolation.EventHandlerContentAttributes" Static="True" />