aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/html/microformats
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/html/microformats
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/html/microformats')
-rw-r--r--files/ja/web/html/microformats/index.html462
1 files changed, 462 insertions, 0 deletions
diff --git a/files/ja/web/html/microformats/index.html b/files/ja/web/html/microformats/index.html
new file mode 100644
index 0000000000..fa21d22000
--- /dev/null
+++ b/files/ja/web/html/microformats/index.html
@@ -0,0 +1,462 @@
+---
+title: マイクロフォーマット
+slug: Web/HTML/microformats
+tags:
+ - HTML
+ - Microformat
+ - NeedsContent
+ - NeedsMarkupWork
+ - Reference
+translation_of: Web/HTML/microformats
+---
+<h2 id="Summary" name="Summary">概要</h2>
+
+<p><span class="seoSummary"><ruby><a href="http://microformats.org/"><dfn>マイクロフォーマット</dfn></a><rp> (</rp><rt>Microformat</rt><rp>)</rp></ruby> (<strong>μF</strong> と略記されることもあります) は、意味情報と構造化データを HTML に埋め込むために使用される規格で、検索エンジンやアグリゲーター、その他のツールが使用するための API を提供します。HTML のこれらの最小限のパターンは、人、組織、イベント、場所などの基本的な情報からドメイン固有の情報まで、さまざまなものをマークアップするために使用されます。マイクロフォーマットは、オブジェクトを記述するためにサポートする語彙を使用し、そのプロパティに値を割り当てるために名前と値のペアを使用します。プロパティはクラス属性で運ばれ、任意の HTML 要素に追加することができ、データ値は HTML 要素のコンテンツとセマンティック属性を再利用します。マイクロフォーマット 2 はマイクロフォーマットの更新版で、HTML の構造化された構文や語彙に注釈を付けるために新しい属性を学習する必要がある RDFa やマイクロデータを使用する以前のアプローチよりもシンプルな方法を提供します。</span></p>
+
+<p>マイクロフォーマットは、すべての主要な検索エンジンが対応しています。検索エンジンは、この構造化データに直接アクセスすることで、ウェブページ上の情報を理解し、より関連性の高い結果をユーザーに提供することができるため、大きな利益を得ることができます。マイクロフォーマットは機械可読性があることにくわえ、人間も簡単に読めるように設計されています。</p>
+
+<ul>
+ <li>マイクロフォーマットのオブジェクトを生成するには、class 属性に h-* というクラス名を付けてください。</li>
+ <li>オブジェクトへプロパティを追加するには、p-*, u-*, dt-*, e-* のクラス名がオブジェクトの子孫の一つに使用されます。</li>
+</ul>
+
+<p>マイクロフォーマット 2 には<a href="http://microformats.org/wiki/microformats2#Parsers">オープンソースの主要言語における解釈ライブラリ</a>があります。</p>
+
+<h2 id="How_Microformats_Work" name="How_Microformats_Work"><span id="How_do_Microformats_Work">マイクロフォーマットはどのように動作するのか</span></h2>
+
+<p>An author of a webpage can add microformats to their HTML. For example if they wanted to identify themselves they could use an <a href="http://microformats.org/wiki/h-card">h-card</a> such as:</p>
+
+<h3 id="HTML_Example" name="HTML_Example">HTML の例</h3>
+
+<div dir="ltr" style="text-align: left;">
+<pre class="source-html4strict notranslate">&lt;a class="h-card" href="http://alice.example.com"&gt;Alice Blogger&lt;/a&gt;</pre>
+
+<p>When a parser encounters this data, it will know that this page contains a "card" which describes a person or organization named <code>Alice Blogger</code> with a URL of <code>http://alice.example.com/</code>. The parser makes this data available via APIs that can be used for different applications.</p>
+
+<p>As in this example, some markup patterns require only a single microformat root class name, which parsers use to find a few generic properties such as <code>name</code>, <code>url</code>, <code>photo</code>.</p>
+</div>
+
+<h2 id="Microformats_Prefixes" name="Microformats_Prefixes">マイクロフォーマットの接頭辞</h2>
+
+<p>All microformats consist of a root, and a collection of properties. Properties are all optional and potentially multivalued - applications needing a singular value may use the first instance of a property. Hierarchical data is represented with nested microformats, typically as property values themselves.</p>
+
+<p>All microformats class names use prefixes. Prefixes are <strong>syntax independent from vocabularies</strong>, which are developed separately.</p>
+
+<ul>
+ <li><strong>"h-*" for root class names</strong>, e.g. "h-card", "h-entry", "h-feed", and many more. These top-level root classes usually indicate a type and corresponding expected vocabulary of properties. For example:
+
+ <ul>
+ <li><a href="http://microformats.org/wiki/h-card">h-card</a> describes a person or organization</li>
+ <li><a href="http://microformats.org/wiki/h-entry">h-entry</a> describes episodic or date stamped online content like a blog post</li>
+ <li><a href="http://microformats.org/wiki/h-feed">h-feed</a> describes a stream or feed of posts</li>
+ <li>You can find many more <a href="http://microformats.org/wiki/microformats2#v2_vocabularies">vocabularies on the microformats2 wiki.</a></li>
+ </ul>
+ </li>
+ <li><strong>"p-*" for plain (text) properties</strong>, e.g. "p-name", "p-summary"
+ <ul>
+ <li>Generic plain text parsing, element text in general. On certain HTML elements, use special attributes first, e.g. img/alt, abbr/title.</li>
+ </ul>
+ </li>
+ <li><strong>"u-*" for URL properties</strong>, e.g. "u-url", "u-photo", "u-logo"
+ <ul>
+ <li>Special parsing: element attributes a/href, img/src, object/data etc. attributes over element contents.</li>
+ </ul>
+ </li>
+ <li><strong>"dt-*" for datetime properties</strong>, e.g. "dt-start", "dt-end", "dt-bday"
+ <ul>
+ <li>Special parsing: time element datetime attribute, <a href="http://microformats.org/wiki/value-class-pattern" title="value-class-pattern">value-class-pattern</a> and separate date time value parsing for readability.</li>
+ </ul>
+ </li>
+ <li><strong>"e-*" for element tree properties</strong> where the entire contained element hierarchy is the value, e.g. "e-content". The "e-" prefix can also be mnemonically remembered as "element tree", "embedded markup", or "encapsulated markup".</li>
+</ul>
+
+<h2 id="Some_microformats_examples" name="Some_microformats_examples">マイクロフォーマットの例</h2>
+
+<h3 id="h-card" name="h-card">h-card</h3>
+
+<p>The <a href="http://microformats.org/wiki/h-card">h-card</a> microformat represents a a person or organization.</p>
+
+<p>The value of each property is defined in HTML using the class property any element can carry</p>
+
+<h4 id="Example_h-card" name="Example_h-card">h-card の例</h4>
+
+<div dir="ltr" style="text-align: left;">
+<pre class="source-html4strict notranslate">&lt;p class="h-card"&gt;
+ &lt;img class="u-photo" src="http://example.org/photo.png" alt="" /&gt;
+ &lt;a class="p-name u-url" href="http://example.org"&gt;Joe Bloggs&lt;/a&gt;
+ &lt;a class="u-email" href="mailto:joebloggs@example.com"&gt;joebloggs@example.com&lt;/a&gt;,
+ &lt;span class="p-street-address"&gt;17 Austerstræti&lt;/span&gt;
+ &lt;span class="p-locality"&gt;Reykjavík&lt;/span&gt;
+ &lt;span class="p-country-name"&gt;Iceland&lt;/span&gt;
+&lt;/p&gt;</pre>
+</div>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th>プロパティ</th>
+ <th>説明</th>
+ </tr>
+ <tr>
+ <td><strong><code>p-name</code></strong></td>
+ <td>The full/formatted name of the person or organization.</td>
+ </tr>
+ <tr>
+ <td><strong><code>u-email</code></strong></td>
+ <td>email address</td>
+ </tr>
+ <tr>
+ <td><strong><code>u-photo</code></strong></td>
+ <td>a photo of the person or organization</td>
+ </tr>
+ <tr>
+ <td><strong><code>u-url</code></strong></td>
+ <td>home page or other URL representing the person or organization</td>
+ </tr>
+ <tr>
+ <td><strong><code>u-uid</code></strong></td>
+ <td>universally unique identifier, preferably canonical URL</td>
+ </tr>
+ <tr>
+ <td><strong><code>p-street-address</code></strong></td>
+ <td>street number + name</td>
+ </tr>
+ <tr>
+ <td><strong><code>p-locality</code></strong></td>
+ <td>city/town/village</td>
+ </tr>
+ <tr>
+ <td><strong><code>p-country-name</code></strong></td>
+ <td>country name</td>
+ </tr>
+ </tbody>
+</table>
+
+<h4 id="Nested_h-card_example" name="Nested_h-card_example">入れ子になった h-card の例</h4>
+
+<div dir="ltr" style="text-align: left;">
+<pre class="source-html4strict notranslate">&lt;div class="h-card"&gt;
+ &lt;a class="p-name u-url"
+ href="http://blog.lizardwrangler.com/"
+ &gt;Mitchell Baker&lt;/a&gt;
+ (&lt;a class="p-org h-card"
+ href="http://mozilla.org/"
+ &gt;Mozilla Foundation&lt;/a&gt;)
+&lt;/div&gt;</pre>
+</div>
+
+<p>Parsed JSON:</p>
+
+<div dir="ltr" style="text-align: left;">
+<pre class="source-javascript notranslate">{
+ "items": [{
+ "type": ["h-card"],
+ "properties": {
+ "name": ["Mitchell Baker"],
+ "url": ["http://blog.lizardwrangler.com/"],
+ "org": [{
+ "value": "Mozilla Foundation",
+ "type": ["h-card"],
+ "properties": {
+ "name": ["Mozilla Foundation"],
+ "url": ["http://mozilla.org/"]
+ }
+ }]
+ }
+ }]
+}</pre>
+</div>
+
+<p>Note: the nested h-card has implied 'name' and 'url' properties, just like any other root-class-name-only h-card on an <code>&lt;a href&gt;</code> would.</p>
+
+<h3 id="h-entry" name="h-entry">h-entry</h3>
+
+<p>The <a href="http://microformats.org/wiki/h-entry">h-entry</a> microformat represents episodic or datestamped content on the web. h-entry is often used with content intended to be syndicated, e.g. blog posts.</p>
+
+<p>Example h-entry as a blog post:</p>
+
+<div dir="ltr" style="text-align: left;">
+<pre class="source-html4strict notranslate">&lt;article class="h-entry"&gt;
+ &lt;h1 class="p-name"&gt;Microformats are amazing&lt;/h1&gt;
+ &lt;p&gt;Published by &lt;a class="p-author h-card" href="http://example.com"&gt;W. Developer&lt;/a&gt;
+ on &lt;time class="dt-published" datetime="2013-06-13 12:00:00"&gt;13&lt;sup&gt;th&lt;/sup&gt; June 2013&lt;/time&gt;&lt;/p&gt;
+
+ &lt;p class="p-summary"&gt;In which I extoll the virtues of using microformats.&lt;/p&gt;
+
+ &lt;div class="e-content"&gt;
+ &lt;p&gt;Blah blah blah&lt;/p&gt;
+ &lt;/div&gt;
+&lt;/article&gt;</pre>
+
+<h4 id="Properties" name="Properties">プロパティ</h4>
+</div>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th>プロパティ</th>
+ <th>説明</th>
+ </tr>
+ <tr>
+ <td><strong><code>p-name</code></strong></td>
+ <td>entry name/title</td>
+ </tr>
+ <tr>
+ <td><strong><code>p-author</code></strong></td>
+ <td>who wrote the entry, optionally embedded h-card</td>
+ </tr>
+ <tr>
+ <td><strong><code>dt-published</code></strong></td>
+ <td>when the entry was published</td>
+ </tr>
+ <tr>
+ <td><strong><code>p-summary</code></strong></td>
+ <td>short entry summary</td>
+ </tr>
+ <tr>
+ <td><strong><code>e-content</code></strong></td>
+ <td>full content of the entry</td>
+ </tr>
+ </tbody>
+</table>
+
+<h4 id="Parsed_reply_h-entry_example" name="Parsed_reply_h-entry_example">Parsed reply h-entry example</h4>
+
+<pre id="line1">&lt;div class="<a class="attribute-value">h-entry</a>"&gt;
+ &lt;p&gt;&lt;span class="p-author h-card"&gt;
+ &lt;a href="<a class="attribute-value">https://quickthoughts.jgregorymcverry.com/profile/jgmac1106</a>" &gt;&lt;img class="<a class="attribute-value">u-photo</a>" src="<a class="attribute-value">https://quickthoughts.jgregorymcverry.com/file/2d6c9cfed7ac8e849f492b5bc7e6a630/thumb.jpg</a>"/&gt;&lt;/a&gt;
+ &lt;a class="<a class="attribute-value">p-name u-url</a>" href="<a class="attribute-value">https://quickthoughts.jgregorymcverry.com/profile/jgmac1106</a>"&gt;Greg McVerry&lt;/a&gt;&lt;/span&gt;
+ Replied to &lt;a class="<a class="attribute-value">u-in-reply-to</a>" href="<a class="attribute-value">https://developer.mozilla.org/ja/docs/Web/HTML/microformats</a>"&gt;a post on
+ &lt;strong&gt;developer.mozilla.org&lt;/strong&gt; &lt;/a&gt;:
+ &lt;/p&gt;
+ &lt;p class="<a class="attribute-value">p-name e-content</a>"&gt;Hey thanks for making this microformats resource&lt;/p&gt;
+ &lt;p&gt; &lt;a href="<a class="attribute-value">https://quickthoughts.jgregorymcverry.com/profile/jgmac1106</a>"&gt;Greg McVerry&lt;/a&gt;
+ published this &lt;a class="<a class="attribute-value">u-url url</a>" href="<a class="attribute-value">https://quickthoughts.jgregorymcverry.com/2019/05/31/hey-thanks-for-making-this-microformats-resource</a>"&gt;&lt;time class="<a class="attribute-value">dt-published</a>"
+ datetime="<a class="attribute-value">2019-05-31T14:19:09+0000</a>"&gt;31 May 2019&lt;/time&gt;&lt;/a&gt;&lt;/p&gt;
+&lt;/div&gt;</pre>
+
+<div class="panelContent">
+<pre class="data notranslate">{
+ "items": [
+ {
+ "type": [ "h-entry" ],
+ "properties": {
+ "in-reply-to": [ "https://developer.mozilla.org/ja/docs/Web/HTML/microformats" ],
+ "name": [ "Hey thanks for making this microformats resource" ],
+ "url": [ "https://quickthoughts.jgregorymcverry.com/2019/05/31/hey-thanks-for-making-this-microformats-resource" ],
+ "published": [ "2019-05-31T14:19:09+0000" ],
+ "content": [
+ {
+ "html": "Hey thanks for making this microformats resource",
+ "value": "Hey thanks for making this microformats resource",
+ "lang": "en"
+ }
+ ],
+ "author": [
+ {
+ "type": [ "h-card" ],
+ "properties": {
+ "name": [ "Greg McVerry" ],
+ "photo": [ "https://quickthoughts.jgregorymcverry.com/file/2d6c9cfed7ac8e849f492b5bc7e6a630/thumb.jpg" ],
+ "url": [ "https://quickthoughts.jgregorymcverry.com/profile/jgmac1106" ]
+ },
+ "lang": "en",
+ "value": "Greg McVerry"
+ }
+ ]
+ },
+ "lang": "en"
+ }</pre>
+</div>
+
+<h3 id="h-feed" name="h-feed">h-feed</h3>
+
+<p>The <a href="http://microformats.org/wiki/h-feed">h-feed</a> is a stream or feed of <a href="http://microformats.org/wiki/h-entry" title="h-entry">h-entry</a> posts, like complete posts on a home page or archive pages, or summaries or other brief lists of posts</p>
+
+<h4 id="Example_h-feed" name="Example_h-feed">Example h-feed</h4>
+
+<div dir="ltr" style="text-align: left;">
+<pre class="source-html4strict notranslate">&lt;div class="h-feed"&gt;
+ &lt;h1 class="p-name"&gt;Microformats Blogs&lt;/h1&gt;
+ &lt;article class="h-entry"&gt;
+ &lt;h2 class="p-name"&gt;Microformats are amazing&lt;/h2&gt;
+ &lt;p&gt;Published by &lt;a class="p-author h-card" href="http://example.com"&gt;W. Developer&lt;/a&gt;
+ on &lt;time class="dt-published" datetime="2013-06-13 12:00:00"&gt;13&lt;sup&gt;th&lt;/sup&gt; June 2013&lt;/time&gt;
+ &lt;/p&gt;
+ &lt;p class="p-summary"&gt;In which I extoll the virtues of using microformats.&lt;/p&gt;
+ &lt;div class="e-content"&gt; &lt;p&gt;Blah blah blah&lt;/p&gt; &lt;/div&gt;
+ &lt;/article&gt;
+&lt;/div&gt;</pre>
+</div>
+
+<h4 id="Properties_2" name="Properties_2">プロパティ</h4>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th>プロパティ</th>
+ <th>説明</th>
+ </tr>
+ <tr>
+ <td><strong><code>p-name</code></strong></td>
+ <td>name of the feed</td>
+ </tr>
+ <tr>
+ <td><strong><code>p-author</code></strong></td>
+ <td>author of the feed, optionally embed an h-card</td>
+ </tr>
+ </tbody>
+</table>
+
+<h4 id="Children" name="Children">Children</h4>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <td><strong>Nested h-entry</strong></td>
+ <td></td>
+ </tr>
+ <tr>
+ <td>objects representing the items of the feed</td>
+ <td></td>
+ </tr>
+ </tbody>
+</table>
+
+<h3 id="h-event" name="h-event">h-event</h3>
+
+<p>The <code>h-event</code> is for events on the web. h-event is often used with both event listings and individual event pages</p>
+
+<div dir="ltr" style="text-align: left;">
+<pre class="source-html4strict notranslate">&lt;div class="h-event"&gt;
+ &lt;h1 class="p-name"&gt;Microformats Meetup&lt;/h1&gt;
+ &lt;p&gt;From
+ &lt;time class="dt-start" datetime="2013-06-30 12:00"&gt;30&lt;sup&gt;th&lt;/sup&gt; June 2013, 12:00&lt;/time&gt;
+ to &lt;time class="dt-end" datetime="2013-06-30 18:00"&gt;18:00&lt;/time&gt;
+ at &lt;span class="p-location"&gt;Some bar in SF&lt;/span&gt;&lt;/p&gt;
+ &lt;p class="p-summary"&gt;Get together and discuss all things microformats-related.&lt;/p&gt;
+&lt;/div&gt;</pre>
+</div>
+
+<h4 id="Properties_3" name="Properties_3">プロパティ</h4>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th>プロパティ</th>
+ <th>説明</th>
+ </tr>
+ <tr>
+ <td><strong><code>p-name</code></strong></td>
+ <td>event name (or title)</td>
+ </tr>
+ <tr>
+ <td><strong><code>p-summary</code></strong></td>
+ <td>short summary of the event</td>
+ </tr>
+ <tr>
+ <td><strong><code>dt-start</code></strong></td>
+ <td>datetime the event starts</td>
+ </tr>
+ <tr>
+ <td><strong><code>dt-end</code></strong></td>
+ <td>datetime the event ends</td>
+ </tr>
+ <tr>
+ <td><strong><code>p-location</code></strong></td>
+ <td>where the event takes place, optionally embedded h-card</td>
+ </tr>
+ </tbody>
+</table>
+
+<h4 id="Parsed_h-event_Example" name="Parsed_h-event_Example">Parsed h-event Example</h4>
+
+<div dir="ltr" style="text-align: left;">
+<pre class="notranslate">&lt;div class="h-event"&gt;
+ &lt;h2 class="p-name"&gt;IndieWeb Summit&lt;/h2&gt;
+ &lt;time class="dt-start" datetime="2019-06-29T09:00:00-07:00"&gt;June 29, 2019 at 9:00am (-0700)&lt;/time&gt;&lt;br&gt;through &lt;time class="dt-end" datetime="2019-06-30T18:00:00-07:00"&gt;June 30, 2019 at 6:00pm (-0700)&lt;/time&gt;&lt;br&gt;
+ &lt;div class="p-location h-card"&gt;
+ &lt;div&gt;
+ &lt;span class="p-name"&gt;Mozilla&lt;/span&gt;
+ &lt;/div&gt;
+ &lt;div&gt;
+ &lt;span class="p-street-address"&gt;1120 NW Couch St&lt;/span&gt;,
+ &lt;span class="p-locality"&gt;Portland&lt;/span&gt;,
+ &lt;span class="p-region"&gt;Oregon&lt;/span&gt;,
+ &lt;span class="p-country"&gt;US&lt;/span&gt;
+ &lt;/div&gt;
+ &lt;data class="p-latitude" value="45.52345"&gt;&lt;/data&gt;
+ &lt;data class="p-longitude" value="-122.682677"&gt;&lt;/data&gt;
+ &lt;/div&gt;
+ &lt;div class="e-content"&gt;Come join us
+ &lt;/div&gt;
+ &lt;div&gt;
+ &lt;span class="p-author h-card"&gt;&lt;a class="u-url p-name" href="https://aaronparecki.com"&gt;Aaron Parecki&lt;/a&gt;&lt;/span&gt; Published this &lt;a href="https://aaronparecki.com/2019/06/29/1/" class="u-url"&gt;event &lt;/a&gt;on &lt;time class="dt published" datetime="2019-05-25T18:00:00-07:00"&gt;May 5th, 2019&lt;/time&gt;
+ &lt;/div&gt;
+&lt;/div&gt;</pre>
+
+<div class="panelContent">
+<pre class="data notranslate">{
+ "items": [
+ {
+ "type": [ "h-event" ],
+ "properties": {
+ "name": [ "IndieWeb Summit" ],
+ "url": [ "https://aaronparecki.com/2019/06/29/1/" ],
+ "author": [
+ {
+ "type": [ "h-card" ],
+ "properties": {
+ "name": [ "Aaron Parecki" ],
+ "url": [ "https://aaronparecki.com"]
+ },
+ "lang": "en",
+ "value": "Aaron Parecki"
+ }
+ ],
+ "start": [ "2019-06-29T09:00:00-07:00" ],
+ "end": [ "2019-06-30T18:00:00-07:00" ],
+ "published": [ "2019-05-25T18:00:00-07:00" ],
+ "content": [
+ {
+ "html": "Come join us",
+ "value": "Come join us",
+ "lang": "en"
+ }
+ ],
+ "location": [
+ {
+ "type": [ "h-card" ],
+ "properties": {
+ "name": [ "Mozilla" ],
+ p-street-address: [ "1120 NW Couch St" ]
+ "locality": [ "Portland" ],
+ "region": [ "Oregon" ],
+ "country": [ "US" ],
+ "latitude": [ "45.52345" ],
+ "longitude": [ "-122.682677" ]
+ },
+ "lang": "en",
+ "value": "Mozilla"
+ }
+ ]
+ },
+ "lang": "en"
+ }
+ ],</pre>
+</div>
+</div>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
+
+<p>すべてのブラウザーが class 属性と DOM API に対応していることにより対応しています。</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li><a href="/ja/docs/Web/HTML/Global_attributes/class">class 属性</a></li>
+ <li>Wikipedia の {{interwiki("wikipedia", "Microformat")}}</li>
+ <li><a href="http://microformats.org/">Microformats 公式ウェブサイト</a></li>
+ <li><a href="http://microformats.org/wiki/search_engines">Search engines support</a> on Microformats official website</li>
+ <li><a href="https://indiewebcamp.com/microformats">Microformats on IndieWebCamp</a></li>
+</ul>