Created
February 5, 2019 21:14
-
-
Save Stephanevg/14ac3948bf302bbcfef59dd20dd47a65 to your computer and use it in GitHub Desktop.
Creation of Basic PSHTMLTable.ps1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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