Open kingdase opened 10 months ago
The parser removes heading statements if there is no empty line after the front-matter block
Example:
--- date: "2024-01-11" description: "Hello World" title: "Hello World" --- ## Hello World
becomes
--- date: "2024-01-11" description: "Hallo Welt" title: "Hallo Welt" --- Hallo Welt
as a workaround, insert a blank line after the front-matter block
--- date: "2024-01-11" description: "Hallo Welt" title: "Hallo Welt" --- ## Hallo Welt
@kingdase The properly linted hugo syntax requires a blank line after finishing the frontmatter. Will look into fixing
The parser removes heading statements if there is no empty line after the front-matter block
Example:
becomes
as a workaround, insert a blank line after the front-matter block
becomes