Changes to wikiscroll.pub.scroll.pub

ScrollHub
ScrollHub
24 days ago
Initial commit
index.scroll
Changed around line 1
+ buildHtml
+ baseUrl https://wikiscroll.pub
+ metaTags
+ editButton /edit.html
+ title My Personal Wiki
+ style.css
+ header
+ class hero
+ nav
+ div WikiScroll
+ class logo
+ div
+ class nav-links
+ a Home
+ href /
+ a All Pages
+ href /pages
+ a New Page
+ class cta-button
+ href /new
+ div
+ class hero-content
+ h1 My Personal Wiki
+ p Knowledge organized my way
+ main
+ section
+ class recent-entries
+ h2 Recent Updates
+ div
+ class entry-grid
+ article
+ class entry-card
+ h3 Web Development Notes
+ p Updated 2 hours ago
+ a Read
+ class text-button
+ href /web-dev
+ article
+ class entry-card
+ h3 Book Summaries
+ p Updated yesterday
+ a Read
+ class text-button
+ href /books
+ article
+ class entry-card
+ h3 Travel Plans
+ p Updated 3 days ago
+ a Read
+ class text-button
+ href /travel
+ section
+ class quick-actions
+ h2 Quick Access
+ div
+ class action-grid
+ a
+ class action-card
+ div 📝
+ class action-icon
+ span New Note
+ a
+ class action-card
+ div 🔍
+ class action-icon
+ span Search
+ a
+ class action-card
+ div 📚
+ class action-icon
+ span Categories
+ a
+ class action-card
+ div ⭐
+ class action-icon
+ span Favorites
+ footer
+ div
+ class footer-content
+ p Last synced: Just now
+ div
+ class footer-links
+ a About
+ href /about
+ a Settings
+ href /settings
+ a Export
+ href /export
+ script.js
prompt.json
Changed around line 1
+ {
+ "id": "7c6fcb32-3b61-47e9-aabb-5d6e81e1131b",
+ "object": "chat.completion",
+ "created": 1746972365,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "Here's my suggestion for a personal wiki website using Scroll:\n\n---domain---\nwikiscroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://wikiscroll.pub\nmetaTags\neditButton /edit.html\ntitle My Personal Wiki\nstyle.css\nheader\n class hero\n nav\n div WikiScroll\n class logo\n div\n class nav-links\n a Home\n href /\n a All Pages\n href /pages\n a New Page\n class cta-button\n href /new\n div\n class hero-content\n h1 My Personal Wiki\n p Knowledge organized my way\nmain\n section\n class recent-entries\n h2 Recent Updates\n div\n class entry-grid\n article\n class entry-card\n h3 Web Development Notes\n p Updated 2 hours ago\n a Read\n class text-button\n href /web-dev\n article\n class entry-card\n h3 Book Summaries\n p Updated yesterday\n a Read\n class text-button\n href /books\n article\n class entry-card\n h3 Travel Plans\n p Updated 3 days ago\n a Read\n class text-button\n href /travel\n section\n class quick-actions\n h2 Quick Access\n div\n class action-grid\n a\n class action-card\n div 📝\n class action-icon\n span New Note\n a\n class action-card\n div 🔍\n class action-icon\n span Search\n a\n class action-card\n div 📚\n class action-icon\n span Categories\n a\n class action-card\n div ⭐\n class action-icon\n span Favorites\nfooter\n div\n class footer-content\n p Last synced: Just now\n div\n class footer-links\n a About\n href /about\n a Settings\n href /settings\n a Export\n href /export\nscript.js\n---style.css---\n:root {\n --primary: #4f46e5;\n --primary-light: #6366f1;\n --primary-dark: #4338ca;\n --text: #1f2937;\n --text-light: #6b7280;\n --bg: #f9fafb;\n --card-bg: #ffffff;\n --border: #e5e7eb;\n}\n\n* {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n}\n\nbody {\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\n line-height: 1.6;\n color: var(--text);\n background-color: var(--bg);\n min-height: 100vh;\n display: flex;\n flex-direction: column;\n}\n\nheader.hero {\n background: linear-gradient(135deg, var(--primary), var(--primary-light));\n color: white;\n padding: 2rem 1rem;\n box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);\n}\n\nnav {\n display: flex;\n justify-content: space-between;\n align-items: center;\n max-width: 1200px;\n margin: 0 auto;\n padding: 0 1rem;\n}\n\n.logo {\n font-size: 1.5rem;\n font-weight: 700;\n}\n\n.nav-links {\n display: flex;\n gap: 1.5rem;\n}\n\n.nav-links a {\n color: white;\n text-decoration: none;\n font-weight: 500;\n transition: opacity 0.2s;\n}\n\n.nav-links a:hover {\n opacity: 0.8;\n}\n\n.cta-button {\n background-color: white;\n color: var(--primary);\n padding: 0.5rem 1rem;\n border-radius: 0.375rem;\n font-weight: 600;\n}\n\n.hero-content {\n max-width: 1200px;\n margin: 2rem auto 0;\n padding: 0 1rem;\n text-align: center;\n}\n\n.hero-content h1 {\n font-size: 2.5rem;\n margin-bottom: 1rem;\n}\n\n.hero-content p {\n font-size: 1.25rem;\n opacity: 0.9;\n margin-bottom: 2rem;\n}\n\nmain {\n flex: 1;\n max-width: 1200px;\n width: 100%;\n margin: 2rem auto;\n padding: 0 1rem;\n}\n\n.recent-entries, .quick-actions {\n margin-bottom: 3rem;\n}\n\nh2 {\n font-size: 1.5rem;\n margin-bottom: 1.5rem;\n color: var(--text);\n}\n\n.entry-grid, .action-grid {\n display: grid;\n grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));\n gap: 1.5rem;\n}\n\n.entry-card {\n background-color: var(--card-bg);\n border-radius: 0.5rem;\n padding: 1.5rem;\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);\n transition: transform 0.2s, box-shadow 0.2s;\n}\n\n.entry-card:hover {\n transform: translateY(-2px);\n box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);\n}\n\n.entry-card h3 {\n font-size: 1.25rem;\n margin-bottom: 0.5rem;\n}\n\n.entry-card p {\n color: var(--text-light);\n margin-bottom: 1rem;\n}\n\n.text-button {\n color: var(--primary);\n font-weight: 600;\n text-decoration: none;\n}\n\n.text-button:hover {\n text-decoration: underline;\n}\n\n.action-grid {\n grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));\n}\n\n.action-card {\n background-color: var(--card-bg);\n border-radius: 0.5rem;\n padding: 1.5rem;\n display: flex;\n flex-direction: column;\n align-items: center;\n text-decoration: none;\n color: var(--text);\n transition: transform 0.2s, box-shadow 0.2s;\n}\n\n.action-card:hover {\n transform: translateY(-2px);\n box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);\n}\n\n.action-icon {\n font-size: 2rem;\n margin-bottom: 1rem;\n}\n\nfooter {\n background-color: var(--card-bg);\n padding: 2rem 1rem;\n border-top: 1px solid var(--border);\n}\n\n.footer-content {\n max-width: 1200px;\n margin: 0 auto;\n display: flex;\n justify-content: space-between;\n align-items: center;\n}\n\n.footer-links {\n display: flex;\n gap: 1.5rem;\n}\n\n.footer-links a {\n color: var(--text-light);\n text-decoration: none;\n}\n\n.footer-links a:hover {\n color: var(--primary);\n}\n\n@media (max-width: 768px) {\n .nav-links {\n gap: 1rem;\n }\n \n .hero-content h1 {\n font-size: 2rem;\n }\n \n .entry-grid, .action-grid {\n grid-template-columns: 1fr;\n }\n \n .footer-content {\n flex-direction: column;\n gap: 1rem;\n text-align: center;\n }\n \n .footer-links {\n flex-wrap: wrap;\n justify-content: center;\n }\n}\n---script.js---\ndocument.addEventListener('DOMContentLoaded', function() {\n // Update last synced time\n const lastSynced = document.querySelector('footer p');\n if (lastSynced) {\n const now = new Date();\n lastSynced.textContent = `Last synced: ${now.toLocaleTimeString()}`;\n }\n\n // Add animation to action cards\n const actionCards = document.querySelectorAll('.action-card');\n actionCards.forEach(card => {\n card.addEventListener('mouseenter', function() {\n const icon = this.querySelector('.action-icon');\n if (icon) {\n icon.style.transform = 'scale(1.1)';\n icon.style.transition = 'transform 0.2s ease';\n }\n });\n \n card.addEventListener('mouseleave', function() {\n const icon = this.querySelector('.action-icon');\n if (icon) {\n icon.style.transform = 'scale(1)';\n }\n });\n });\n\n // Simple theme switcher (could be expanded)\n const prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches;\n if (prefersDark) {\n document.documentElement.style.setProperty('--bg', '#111827');\n document.documentElement.style.setProperty('--card-bg', '#1f2937');\n document.documentElement.style.setProperty('--text', '#f9fafb');\n document.documentElement.style.setProperty('--text-light', '#9ca3af');\n document.documentElement.style.setProperty('--border', '#374151');\n }\n});\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 718,
+ "completion_tokens": 2069,
+ "total_tokens": 2787,
+ "prompt_tokens_details": {
+ "cached_tokens": 0
+ },
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 718
+ },
+ "system_fingerprint": "fp_8802369eaa_prod0425fp8"
+ }
readme.scroll
Changed around line 1
+ # wikiscroll.pub.scroll.pub
+
+ Prompt: website
+ Agent: deepseek
+ Model: deepseek-chat
+
+ ## User prompt
+ personal wiki
+
+ ## System prompt
+ You are an expert web developer. Create a website based on this request: "personal wiki"
+
+ Requirements:
+ - Use only Scroll, CSS, and JavaScript (NO frameworks, NO external dependencies)
+ - Create clean, semantic HTML5
+ - Make it mobile-responsive
+ - Follow modern best practices and accessibility guidelines
+ - Keep it simple but professional
+ - Use only relative links and no external resources
+ - Do not put a copyright symbol or all rights reserved in the footer.
+ - Make it beautiful. Dazzling. Advanced used of CSS.
+
+ As a refresher, for doing the html body, Scroll is a whitespace based language that uses a single indented space to mark a line (aka particle) as a subparticle of a parent line.
+
+ For example:
+
+ header
+ class hero
+ nav
+ div Scroll
+ class logo
+ div
+ class nav-links
+ a Features
+ href #features
+ a Examples
+ href #examples
+ a Edit
+ href edit.html
+ a GitHub
+ class cta-button
+ href https://github.com/breck7/scroll
+ div
+ class hero-content
+ h1 Write Better with Scroll
+ p The extendible markup language that makes source beautiful and compiles to anything
+ a Get Started
+ class primary-button
+ href https://hub.scroll.pub/
+ main
+ section
+ id features
+ class features
+ h2 Why Scroll?
+ div
+ class feature-grid
+ div
+ class feature-card
+ div ⚡
+ class feature-icon
+ h3 Simple Syntax
+ p Like Markdown, but more powerful. No parentheses needed.
+ div
+ class feature-card
+ div 🧩
+ class feature-icon
+ h3 Extendible
+ p Build your own custom parsers.
+ div
+ class feature-card
+ div 🎨
+ class feature-icon
+ h3 Beautiful Output
+ p Create stunning documents with minimal effort.
+ div
+ class feature-card
+ div 🚀
+ class feature-icon
+ h3 Fast & Light
+ p Built on the efficient PPS Stack.
+ section
+ id examples
+ class code-demo
+ h2 See It In Action
+ div
+ class code-container
+ pre
+ class code-example
+ div
+ class code-output
+ footer
+ div
+ class footer-content
+ div
+ class footer-links
+ a Documentation
+ href https://scroll.pub/tutorial.html
+ a Community
+ href https://www.reddit.com/r/WorldWideScroll/
+ a Blog
+ href https://scroll.pub/blog
+ p Started by Breck Yunits. Evolved by a community.
+ https://twitter.com/breckyunits Breck Yunits
+ https://github.com/breck7/scroll/graphs/contributors community
+
+
+ First suggest a short, memorable domain name ending in scroll.pub that represents this website. Then provide the website files. Use this exact format:
+
+ ---domain---
+ (domainscroll.pub here)
+ ---index.scroll---
+ buildHtml
+ baseUrl https://(domainscroll.pub here)
+ metaTags
+ editButton /edit.html
+ title (Title here)
+ style.css
+
+ (body content here. no blank lines please.)
+
+ script.js
+ ---style.css---
+ (CSS content here)
+ ---script.js---
+ (JavaScript content here)
+ ---end---
script.js
Changed around line 1
+ document.addEventListener('DOMContentLoaded', function() {
+ // Update last synced time
+ const lastSynced = document.querySelector('footer p');
+ if (lastSynced) {
+ const now = new Date();
+ lastSynced.textContent = `Last synced: ${now.toLocaleTimeString()}`;
+ }
+
+ // Add animation to action cards
+ const actionCards = document.querySelectorAll('.action-card');
+ actionCards.forEach(card => {
+ card.addEventListener('mouseenter', function() {
+ const icon = this.querySelector('.action-icon');
+ if (icon) {
+ icon.style.transform = 'scale(1.1)';
+ icon.style.transition = 'transform 0.2s ease';
+ }
+ });
+
+ card.addEventListener('mouseleave', function() {
+ const icon = this.querySelector('.action-icon');
+ if (icon) {
+ icon.style.transform = 'scale(1)';
+ }
+ });
+ });
+
+ // Simple theme switcher (could be expanded)
+ const prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
+ if (prefersDark) {
+ document.documentElement.style.setProperty('--bg', '#111827');
+ document.documentElement.style.setProperty('--card-bg', '#1f2937');
+ document.documentElement.style.setProperty('--text', '#f9fafb');
+ document.documentElement.style.setProperty('--text-light', '#9ca3af');
+ document.documentElement.style.setProperty('--border', '#374151');
+ }
+ });
style.css
Changed around line 1
+ :root {
+ --primary: #4f46e5;
+ --primary-light: #6366f1;
+ --primary-dark: #4338ca;
+ --text: #1f2937;
+ --text-light: #6b7280;
+ --bg: #f9fafb;
+ --card-bg: #ffffff;
+ --border: #e5e7eb;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
+ line-height: 1.6;
+ color: var(--text);
+ background-color: var(--bg);
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ }
+
+ header.hero {
+ background: linear-gradient(135deg, var(--primary), var(--primary-light));
+ color: white;
+ padding: 2rem 1rem;
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 1rem;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: 700;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 1.5rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ font-weight: 500;
+ transition: opacity 0.2s;
+ }
+
+ .nav-links a:hover {
+ opacity: 0.8;
+ }
+
+ .cta-button {
+ background-color: white;
+ color: var(--primary);
+ padding: 0.5rem 1rem;
+ border-radius: 0.375rem;
+ font-weight: 600;
+ }
+
+ .hero-content {
+ max-width: 1200px;
+ margin: 2rem auto 0;
+ padding: 0 1rem;
+ text-align: center;
+ }
+
+ .hero-content h1 {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .hero-content p {
+ font-size: 1.25rem;
+ opacity: 0.9;
+ margin-bottom: 2rem;
+ }
+
+ main {
+ flex: 1;
+ max-width: 1200px;
+ width: 100%;
+ margin: 2rem auto;
+ padding: 0 1rem;
+ }
+
+ .recent-entries, .quick-actions {
+ margin-bottom: 3rem;
+ }
+
+ h2 {
+ font-size: 1.5rem;
+ margin-bottom: 1.5rem;
+ color: var(--text);
+ }
+
+ .entry-grid, .action-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
+ gap: 1.5rem;
+ }
+
+ .entry-card {
+ background-color: var(--card-bg);
+ border-radius: 0.5rem;
+ padding: 1.5rem;
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
+ transition: transform 0.2s, box-shadow 0.2s;
+ }
+
+ .entry-card:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ }
+
+ .entry-card h3 {
+ font-size: 1.25rem;
+ margin-bottom: 0.5rem;
+ }
+
+ .entry-card p {
+ color: var(--text-light);
+ margin-bottom: 1rem;
+ }
+
+ .text-button {
+ color: var(--primary);
+ font-weight: 600;
+ text-decoration: none;
+ }
+
+ .text-button:hover {
+ text-decoration: underline;
+ }
+
+ .action-grid {
+ grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
+ }
+
+ .action-card {
+ background-color: var(--card-bg);
+ border-radius: 0.5rem;
+ padding: 1.5rem;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ text-decoration: none;
+ color: var(--text);
+ transition: transform 0.2s, box-shadow 0.2s;
+ }
+
+ .action-card:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ }
+
+ .action-icon {
+ font-size: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ footer {
+ background-color: var(--card-bg);
+ padding: 2rem 1rem;
+ border-top: 1px solid var(--border);
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .footer-links {
+ display: flex;
+ gap: 1.5rem;
+ }
+
+ .footer-links a {
+ color: var(--text-light);
+ text-decoration: none;
+ }
+
+ .footer-links a:hover {
+ color: var(--primary);
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ gap: 1rem;
+ }
+
+ .hero-content h1 {
+ font-size: 2rem;
+ }
+
+ .entry-grid, .action-grid {
+ grid-template-columns: 1fr;
+ }
+
+ .footer-content {
+ flex-direction: column;
+ gap: 1rem;
+ text-align: center;
+ }
+
+ .footer-links {
+ flex-wrap: wrap;
+ justify-content: center;
+ }
+ }