Run artifact

workspace/targets/commonmark/blueprint/FEATURE-INLINE-EMPHASIS.md

FEATURE: Emphasis and Strong Emphasis

FieldValue
Version20260812 V1
DescriptionDefines CommonMark delimiter-run parsing for emphasis and strong emphasis.
Depends OnFEATURE-INLINE-CODE-BREAKS.md
Providesemphasis parser, strong emphasis parser
Consumesblock parser, code span parser

Programmatic Acceptance

Requires: executable=python3; scope=test

=== AC emphasis-delimiters ===
Intent: The implementation passes delimiter-run, flanking, intraword, and modulo-three emphasis examples.
Suite: scoped

import subprocess import sys

result = subprocess.run( [sys.executable, "spec_tests.py", "--spec", "spec.txt", "--program", "./program", "--pattern", r"^(Emphasis and strong emphasis)$"], capture_output=True, text=True, ) print(result.stdout) print(result.stderr, file=sys.stderr) assert result.returncode == 0 === END AC emphasis-delimiters ===

=== AC emphasis-nesting ===
Intent: The implementation passes nested, overlapping, precedence, and unmatched delimiter examples.
Suite: scoped

import subprocess import sys

result = subprocess.run( [sys.executable, "spec_tests.py", "--spec", "spec.txt", "--program", "./program", "--pattern", r"^(Emphasis and strong emphasis)$"], capture_output=True, text=True, ) print(result.stdout) print(result.stderr, file=sys.stderr) assert result.returncode == 0 === END AC emphasis-nesting ===

User Acceptance

Guardrails