- New /api/render-markdown proxy to Gitea (configured via config.yaml) - lib/config.mjs loads config.yaml with yaml-js - Edit/Preview tabs on the body field in the task dialog - Title and body rendered as markdown inline in the task list - Gitea markup+chroma CSS extracted and vendored to public/gitea-markup.css - Markdown cached in memory per text string Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
21 lines
494 B
HTML
21 lines
494 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Task Inventory</title>
|
|
<link rel="stylesheet" href="/gitea-markup.css">
|
|
<link rel="stylesheet" href="/style.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Task Inventory</h1>
|
|
<nav>
|
|
<button data-nav="tasks" class="nav-btn active">Tasks</button>
|
|
</nav>
|
|
</header>
|
|
<main id="main"></main>
|
|
<script type="module" src="/app.mjs"></script>
|
|
</body>
|
|
</html>
|