Skip to content

Instantly share code, notes, and snippets.

@bielawb
Last active August 29, 2015 14:03
Show Gist options
  • Save bielawb/f6b2f7a655902d3868f4 to your computer and use it in GitHub Desktop.
Save bielawb/f6b2f7a655902d3868f4 to your computer and use it in GitHub Desktop.
Select-Xml -Path .\TestPage.xhtml -XPath "//h1[@id = 'title']"
Select-Xml -Path .\TestPage.xhtml -XPath "//x:h1[@id = 'title']" -Namespace @{
x = 'http://www.w3.org/1999/xhtml'
} | ForEach-Object { $_.Node } | Format-Table -AutoSize
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Test Page</title>
</head>
<body>
<h1 id="title">This is first H1 directly under 'body'</h1>
<ol>
<li><h1>This is my h1 in list!</h1></li>
<li>This won't show up...</li>
</ol>
<h2>Header, but smaller...</h2>
<h3>Even smaller one.</h3>
<h6>Smallest?</h6>
<table>
<colgroup>
<col/>
<col/>
<col/>
</colgroup>
<tr>
<th id="testing">Test</th>
<th><h1>Another h1 in table header...</h1></th>
<th id="othertest">Another Test</th>
</tr>
<tr>
<td><h1>and h1 hidden in the table cell...</h1></td>
<td>Select-Xml-Test</td>
<td>Oops?</td>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment