mirror of
https://github.com/onkelbeh/cheatsheets.git
synced 2025-06-15 06:37:26 +02:00
- Update some sheets which have very long sections - Remove `layout: 2017/sheet` (everything has the same layout now) - Remove outdated sheets
21 lines
480 B
Markdown
21 lines
480 B
Markdown
---
|
|
title: Microformats
|
|
category: HTML
|
|
---
|
|
|
|
### Author
|
|
|
|
``` html
|
|
<span class="entry-author" itemprop="author" itemscope="itemscope" itemtype="https://schema.org/Person">
|
|
<a href="https://AUTHORPAGE" class="entry-author-link" itemprop="url" rel="author">
|
|
<span class="entry-author-name" itemprop="name">AUTHORNAME</span>
|
|
</a>
|
|
</span>
|
|
```
|
|
|
|
### Time
|
|
|
|
``` html
|
|
<time class="entry-time" itemprop="datePublished" datetime="2009-02-09T20:04:00+00:00">February 9, 2009</time>
|
|
```
|