chore: Issue closure 125 cleanup
This commit is contained in:
43
capabilities/markitect-content/tests/fixtures/content_test_files/complete_document.md
vendored
Normal file
43
capabilities/markitect-content/tests/fixtures/content_test_files/complete_document.md
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
---
|
||||
title: "Complete Test Document"
|
||||
author: "Test Author"
|
||||
date: 2025-10-02
|
||||
tags: ["test", "markdown", "matters"]
|
||||
---
|
||||
|
||||
# Complete Test Document
|
||||
|
||||
This is the main content of the document. It contains multiple paragraphs and various elements to test content extraction.
|
||||
|
||||
Author: John Doe
|
||||
Project: MarkdownMatters Implementation
|
||||
Status: In Progress
|
||||
|
||||
## Section 1
|
||||
|
||||
Here is some content in the first section. This paragraph contains exactly twenty-five words to help with word counting tests.
|
||||
|
||||
## Section 2
|
||||
|
||||
Another section with different content. This helps test paragraph counting and ensures that the content parser works correctly across multiple sections.
|
||||
|
||||
The final paragraph of the main content area.
|
||||
|
||||
---
|
||||
|
||||
```yaml tailmatter
|
||||
qa_checklist:
|
||||
- requirement: "All headers verified"
|
||||
complete: true
|
||||
- requirement: "Links checked"
|
||||
complete: false
|
||||
|
||||
editorial:
|
||||
status: "In Review"
|
||||
reviewer: "jane.doe"
|
||||
version: 1.2
|
||||
|
||||
agent_config:
|
||||
role: "documentation_reviewer"
|
||||
access_scope: "content"
|
||||
```
|
||||
21
capabilities/markitect-content/tests/fixtures/content_test_files/contentmatter_inline.md
vendored
Normal file
21
capabilities/markitect-content/tests/fixtures/content_test_files/contentmatter_inline.md
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
# Document with Contentmatter
|
||||
|
||||
This document contains MultiMarkdown key-value pairs within the content body.
|
||||
|
||||
Author: Jane Smith
|
||||
Project: Content Testing
|
||||
Keywords: markdown, contentmatter, testing
|
||||
|
||||
## Introduction
|
||||
|
||||
This section demonstrates contentmatter usage. The key-value pairs above are part of the content but provide metadata.
|
||||
|
||||
Reference: https://example.com/docs
|
||||
Version: 2.1
|
||||
License: MIT
|
||||
|
||||
The content continues here with more text for testing purposes. This paragraph helps verify that contentmatter is preserved in content extraction.
|
||||
|
||||
## Conclusion
|
||||
|
||||
Final section with summary content. Word counting should include the contentmatter lines as part of the content.
|
||||
15
capabilities/markitect-content/tests/fixtures/content_test_files/frontmatter_only.md
vendored
Normal file
15
capabilities/markitect-content/tests/fixtures/content_test_files/frontmatter_only.md
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
---
|
||||
title: "Frontmatter Only Document"
|
||||
author: "Test Author"
|
||||
date: 2025-10-02
|
||||
---
|
||||
|
||||
# Frontmatter Only Document
|
||||
|
||||
This document only has frontmatter, no tailmatter. The content should be extracted without the frontmatter block.
|
||||
|
||||
This is a simple paragraph for testing. It has exactly twelve words for counting purposes.
|
||||
|
||||
## Simple Section
|
||||
|
||||
Another paragraph here. This helps test the content extraction when only frontmatter is present.
|
||||
13
capabilities/markitect-content/tests/fixtures/content_test_files/plain_markdown.md
vendored
Normal file
13
capabilities/markitect-content/tests/fixtures/content_test_files/plain_markdown.md
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
# Plain Markdown Document
|
||||
|
||||
This is a simple markdown document without any frontmatter or tailmatter. Just pure content.
|
||||
|
||||
This paragraph contains exactly fifteen words for testing the word counting functionality of the parser.
|
||||
|
||||
## Section One
|
||||
|
||||
Another section with regular content. This helps test the basic content extraction without any matter zones.
|
||||
|
||||
## Section Two
|
||||
|
||||
The final section with some more content. Multiple paragraphs help test paragraph counting and line counting features.
|
||||
19
capabilities/markitect-content/tests/fixtures/content_test_files/tailmatter_only.md
vendored
Normal file
19
capabilities/markitect-content/tests/fixtures/content_test_files/tailmatter_only.md
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
# Tailmatter Only Document
|
||||
|
||||
This document only has tailmatter, no frontmatter. The content should be extracted without the tailmatter block.
|
||||
|
||||
This is a test paragraph. It contains exactly ten words for counting purposes.
|
||||
|
||||
Another paragraph for testing content extraction with tailmatter present but no frontmatter.
|
||||
|
||||
---
|
||||
|
||||
```yaml tailmatter
|
||||
qa_checklist:
|
||||
- requirement: "Document structure validated"
|
||||
complete: true
|
||||
|
||||
editorial:
|
||||
status: "Draft"
|
||||
reviewer: "test.reviewer"
|
||||
```
|
||||
Reference in New Issue
Block a user