Skip to content
This repository has been archived by the owner on Apr 5, 2023. It is now read-only.

Generate HTML with fluent API

License

Notifications You must be signed in to change notification settings

guneysus-archieve/dotnet-html-gen

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

csharp-html-gen

var doc = document(
    doctype(

    ),

    head(
        title()
    ),
    body (
      h1(

      ),
      p(

      ),
      a().href().text(),
      
      a(href="", text=""),
      
      a(
          img(

          )
      )
    )
);

public class HtmlDocument {

}

public static class html {
    public static HtmlDocument document();
}

About

Generate HTML with fluent API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages