File: nested_values.html

package info (click to toggle)
mf2py 2.0.1-2
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 664 kB
  • sloc: python: 1,917; makefile: 19
file content (22 lines) | stat: -rw-r--r-- 595 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
  <head>
    <title>Nested h-* value parsing test</title>
  </head>
  <body>
    <div class="h-entry">
      <p>
        <!-- value should be parsed as p-* -->
        <a class="p-author h-card" href="http://about.me/kyle">Kyle</a>
      </p>
      <p>
        <!-- value should be parsed as u-* -->
        Liked <a class="u-like-of h-cite" href="http://example.com/foobar">foobar</a>.
      </p>

      Oh by the way I should mention
      <a class="h-card" href="http://people.com/george">George</a>
      who will not have a nested value.
    </div>
  </body>
</html>