feat: added keyword codec (partially works)
This commit is contained in:
14
testdata/data/typo_section_header/input.md
vendored
Normal file
14
testdata/data/typo_section_header/input.md
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
@type: Recipe
|
||||
name: Typo Recipe
|
||||
---
|
||||
|
||||
# Typo Recipe
|
||||
|
||||
## Ingredints
|
||||
- Item 1
|
||||
- Item 2
|
||||
|
||||
## Stps
|
||||
1. Step 1
|
||||
2. Step 2
|
13
testdata/data/typo_section_header/output.json
vendored
Normal file
13
testdata/data/typo_section_header/output.json
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Recipe",
|
||||
"name": "Typo Recipe",
|
||||
"recipeIngredient": [
|
||||
"Item 1",
|
||||
"Item 2"
|
||||
],
|
||||
"recipeInstructions": [
|
||||
"Step 1",
|
||||
"Step 2"
|
||||
]
|
||||
}
|
Reference in New Issue
Block a user