- Add intelligent auto-enhancement that detects viable content elements - Replace manual enhancement with automated container-first detection - Support inline formatting (strong, em, span, links) within editable content - Streamline demo workflow: just demo shows options, auto-enhances on demand - Clean up legacy commands and simplify directory structure - Auto-enhancement goes directly from source to demo-ready (no intermediate dirs) - Add Dan Eden portfolio and simple test sites for real-world validation - Auto-enhanced 40 elements in Dan Eden portfolio, 5 in simple site - Achieve true zero-configuration CMS experience
16 lines
320 B
HTML
16 lines
320 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Simple Test</title>
|
|
</head>
|
|
<body>
|
|
<h1>Welcome</h1>
|
|
<p>This is a <strong>test</strong> paragraph with <a href="/">a link</a>.</p>
|
|
<div>
|
|
<h2>Section Title</h2>
|
|
<p>Another paragraph here.</p>
|
|
<button>Click Me</button>
|
|
</div>
|
|
</body>
|
|
</html>
|