Consider hgroup handling
Hello,
I seek it would be nice to have the possibility to generate associated content to a title from Markdown file. This is handled in html by hgroup.
I imagine than indented content next to a title line, could be considered as heading related content.
Like with li where an indented line content is associated with previous line : Example 256
Example :
# CommonMark
A strongly defined, highly compatible specification of Markdown
Next of content
Thank you
Nice idea. It also very readable from the source. Not sure about the rich-ness. Usually people use Markdown only to write article content, so the usage for this syntax would be very rare. Must be only to mark up the very first heading and its description. And if you are using CMS to manage your content, chance that your main title and description data would be stored in their own separated table column in the database.
FYI, I do have made similar syntax to provide image and table caption on my own Markdown parser:
Image Caption

Image caption.

Image caption in a paragraph.
Table Caption
| Table Header
| ------------
| Table data.
Table caption.
| Table Header
| ------------
| Table data.
Table caption in a paragraph.
They should be degraded gracefully when parsed by other Markdown parser (usually becomes regular paragraph).
Markdown is also a relatively widespread use in slideshow creation with tools like Marp. It is in this context that I missed this functionality.