feat: renderer

This commit is contained in:
2025-08-19 17:20:24 +02:00
parent 6db87db325
commit 210b31aef8
38 changed files with 727 additions and 299 deletions

8
testdata/data/article_simple/input.md vendored Normal file
View File

@@ -0,0 +1,8 @@
---
@type: Article
author.name: John Doe
---
# My First Article
This is the content of my first article. It's a simple one.

View File

@@ -0,0 +1,10 @@
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "My First Article",
"author": {
"@type": "Person",
"name": "John Doe"
},
"articleBody": "This is the content of my first article. It's a simple one."
}