feat: renderer
This commit is contained in:
8
testdata/data/article_simple/input.md
vendored
Normal file
8
testdata/data/article_simple/input.md
vendored
Normal 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.
|
10
testdata/data/article_simple/output.json
vendored
Normal file
10
testdata/data/article_simple/output.json
vendored
Normal 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."
|
||||
}
|
Reference in New Issue
Block a user