Terence Eden on Nostr: Hello #SemanticWeb & #SchemaOrg people - I have a conundrum. My blog posts' #HTML is, ...
Hello #SemanticWeb & #SchemaOrg people - I have a conundrum.
My blog posts' #HTML is, essentially:
```
<main>
<article itemprop="blogPost">
<header>
<h1 itemprop="headline">…</h1>
</header>
<div itemprop="articleBody">
Content
…
```
Given that "div is the element of last resort" - what should I use instead?
It isn't a sub-<article> (and wouldn't have a separate heading).
The <header> isn't part of the articleBody (I think).
I guess it is a <section>?
My blog posts' #HTML is, essentially:
```
<main>
<article itemprop="blogPost">
<header>
<h1 itemprop="headline">…</h1>
</header>
<div itemprop="articleBody">
Content
…
```
Given that "div is the element of last resort" - what should I use instead?
It isn't a sub-<article> (and wouldn't have a separate heading).
The <header> isn't part of the articleBody (I think).
I guess it is a <section>?