Skip to content

Instantly share code, notes, and snippets.

@Stephanevg
Created February 5, 2019 21:14
Show Gist options
  • Select an option

  • Save Stephanevg/14ac3948bf302bbcfef59dd20dd47a65 to your computer and use it in GitHub Desktop.

Select an option

Save Stephanevg/14ac3948bf302bbcfef59dd20dd47a65 to your computer and use it in GitHub Desktop.
Creation of Basic PSHTMLTable.ps1
p{
h2 "Example with HTML table"
table{
caption "This is a table generated with PSHTML"
thead {
tr{
th "number1"
th "number2"
th "number3"
}
}
tbody{
tr{
td "Child 1.1"
td "Child 1.2"
td "Child 1.3"
}
tr{
td "Child 2.1"
td "Child 2.2"
td "Child 2.3"
}
}
tfoot{
tr{
td "Table footer"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment