diff mrjunejune/src/tools/markdown_to_html/index.html @ 258:60a876c4587a

[ui] Add semantic primitive ownership Build a layered Zenbu token and sizing system, make authored controls use native-underneath primitives, migrate mrjunejune without imposing visual surfaces, and document/enforce HTML ownership in the catalog and wiki. Co-authored-by: Copilot <[email protected]>
author MrJuneJune <me@mrjunejune.com>
date Wed, 05 Aug 2026 05:25:40 -0700
parents 4c725fde6999
children
line wrap: on
line diff
--- a/mrjunejune/src/tools/markdown_to_html/index.html	Tue Aug 04 16:49:11 2026 -0700
+++ b/mrjunejune/src/tools/markdown_to_html/index.html	Wed Aug 05 05:25:40 2026 -0700
@@ -15,7 +15,8 @@
     
     <div class="container">
         <div class="panel">
-            <div class="label">Markdown Input</div>
+          <zen-field appearance="plain" size="md">
+            <label class="label" for="input">Markdown Input</label>
             <textarea id="input" placeholder="Type your markdown here..."># Welcome to Markdown Converter
 
 ## Features
@@ -57,12 +58,15 @@
 ![Alt text](https://mrjunejune.com/public/epi_favicon.svg)
 
 **Try editing this text!**</textarea>
+          </zen-field>
         </div>
         
         <div class="panel">
             <div class="title">
               <div class="label">HTML Output</div>
-              <button id="copy"> Copy </button>
+              <zen-button appearance="plain" size="sm">
+                <button id="copy"> Copy </button>
+              </zen-button>
             </div>
             <div id="output"></div>
         </div>