File: test_language_support.html

package info (click to toggle)
rust-microformats 0.18.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,096 kB
  • sloc: javascript: 71; sh: 36; makefile: 26
file content (25 lines) | stat: -rw-r--r-- 847 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Language Support Test</title>
</head>
<body>
    <!-- Test different language scenarios -->
    <article class="h-entry" lang="fr">
        <h1 class="p-name" lang="es">Titre en español</h1>
        <p class="p-content" lang="de">Inhalt auf Deutsch</p>
        <div class="e-description">
            <p lang="it">Contenuto in italiano</p>
        </div>
        <a class="u-url" href="http://example.com" hreflang="pt">Link em português</a>
        <time class="dt-published" lang="nl">2024-01-01</time>
    </article>
    
    <!-- Another item with mixed languages -->
    <div class="h-card" lang="ja">
        <span class="p-name" lang="ko">한국어 이름</span>
        <img class="u-photo" src="avatar.jpg" alt="Avatar" lang="zh">
    </div>
</body>
</html>