line one
line two
This text is bold.
This text is strong.
This text is italic.
This text is emphasized.
This text is normal
This text is red
This text is blue
This text is big
preformatted
monospace
text
Name
Block quote
An Unordered HTML List
An Ordered HTML List
Use Powershell Hash or Array file format here
File to Hash
------------
PS> $x = get-content ./a.txt -raw | `
convertfrom-stringdata; $x
Name Value
---- -----
Version 1.3
Name First
PS> $x = get-content ./a.txt -raw | `
convertfrom-stringdata; $x.Name
First
File to Array
-------------
PS> $x = @(get-content ./a.txt ) ; $x
Name = First
Version = 1.3
PS> $x = @(get-content ./a.txt ) ; $x[1]
Version = 1.3