29 lines
656 B
Markdown
29 lines
656 B
Markdown
|
|
---
|
||
|
|
title = "TOML Frontmatter Test Document"
|
||
|
|
author = "Test Author"
|
||
|
|
date = "2025-10-02"
|
||
|
|
tags = ["toml", "frontmatter", "testing"]
|
||
|
|
version = 1.4
|
||
|
|
published = true
|
||
|
|
|
||
|
|
[config]
|
||
|
|
theme = "light"
|
||
|
|
language = "en"
|
||
|
|
debug = false
|
||
|
|
|
||
|
|
[features]
|
||
|
|
search = true
|
||
|
|
toc = true
|
||
|
|
navigation = true
|
||
|
|
---
|
||
|
|
|
||
|
|
# TOML Frontmatter Test Document
|
||
|
|
|
||
|
|
This document uses TOML format for frontmatter instead of YAML or JSON.
|
||
|
|
|
||
|
|
The frontmatter parser should handle TOML format correctly and extract values like:
|
||
|
|
- title: "TOML Frontmatter Test Document"
|
||
|
|
- config.theme: "light"
|
||
|
|
- features.search: true
|
||
|
|
|
||
|
|
This tests the parser's ability to handle all three frontmatter formats as required by Issue #41.
|