{"id":30907144,"url":"https://github.com/xdannyrobertsx/deno-webview","last_synced_at":"2026-05-19T10:04:39.672Z","repository":{"id":313845675,"uuid":"1051255578","full_name":"xdannyrobertsx/deno-webview","owner":"xdannyrobertsx","description":"messing around with deno webview :-)","archived":false,"fork":false,"pushed_at":"2025-09-09T03:46:02.000Z","size":11,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-09T06:14:20.744Z","etag":null,"topics":["deno","webview"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/xdannyrobertsx.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-05T17:27:18.000Z","updated_at":"2025-09-09T03:47:06.000Z","dependencies_parsed_at":"2025-09-09T06:14:25.992Z","dependency_job_id":"8c38de7d-1c6b-4673-9a4c-094382c0dd4f","html_url":"https://github.com/xdannyrobertsx/deno-webview","commit_stats":null,"previous_names":["xdannyrobertsx/deno-webview"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/xdannyrobertsx/deno-webview","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xdannyrobertsx%2Fdeno-webview","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xdannyrobertsx%2Fdeno-webview/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xdannyrobertsx%2Fdeno-webview/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xdannyrobertsx%2Fdeno-webview/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xdannyrobertsx","download_url":"https://codeload.github.com/xdannyrobertsx/deno-webview/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xdannyrobertsx%2Fdeno-webview/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274292948,"owners_count":25258173,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-09T02:00:10.223Z","response_time":80,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["deno","webview"],"created_at":"2025-09-09T12:09:23.132Z","updated_at":"2026-05-19T10:04:39.619Z","avatar_url":"https://github.com/xdannyrobertsx.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Modern Markdown Showcase 🚀\n\nThis document demonstrates modern markdown features and GitHub-flavored markdown syntax.\n\n## Basic Formatting\n\n### Text Styles\n**Bold text** and __alternative bold__  \n*Italic text* and _alternative italic_  \n~~Strikethrough text~~  \n`Inline code`  \n==Highlighted text== (if supported)\n\n### Headings with Custom IDs {#custom-heading}\n\nYou can link to [this heading](#custom-heading) using the custom ID.\n\n## GitHub-Flavored Markdown\n\n### Task Lists\n- [x] Completed task\n- [ ] Incomplete task\n- [x] ~~Cancelled task~~\n- [ ] Task with **bold** and *italic* text\n\n### Alerts (GitHub)\n\u003e [!NOTE]\n\u003e Useful information that users should know, even when skimming content.\n\n\u003e [!TIP]\n\u003e Helpful advice for doing things better or more easily.\n\n\u003e [!IMPORTANT]\n\u003e Key information users need to know to achieve their goal.\n\n\u003e [!WARNING]\n\u003e Urgent info that needs immediate user attention to avoid problems.\n\n\u003e [!CAUTION]\n\u003e Advises about risks or negative outcomes of certain actions.\n\n## Advanced Code Features\n\n### Syntax Highlighting with Line Numbers\n```typescript\n// Modern TypeScript with async/await\ninterface ApiResponse\u003cT\u003e {\n  data: T;\n  status: number;\n  message: string;\n}\n\nasync function fetchUserData(id: string): Promise\u003cApiResponse\u003cUser\u003e\u003e {\n  try {\n    const response = await fetch(`/api/users/${id}`);\n    return await response.json();\n  } catch (error) {\n    throw new Error(`Failed to fetch user: ${error.message}`);\n  }\n}\n```\n\n### Code with Diff Highlighting\n```diff\nfunction calculateTotal(items) {\n- return items.reduce((sum, item) =\u003e sum + item.price, 0);\n+ return items.reduce((sum, item) =\u003e sum + (item.price * item.quantity), 0);\n}\n```\n\n### Shell Commands\n```bash\n# Install dependencies\nnpm install\n\n# Run development server\nnpm run dev\n\n# Build for production\nnpm run build\n```\n\n## Modern Tables\n\n| Feature | Support | Notes |\n|---------|---------|-------|\n| GitHub Flavored Markdown | ✅ | Full support |\n| Math Expressions | ⚠️ | Depends on renderer |\n| Mermaid Diagrams | ✅ | GitHub native |\n| Task Lists | ✅ | Interactive on GitHub |\n\n### Table with Alignment\n| Left Aligned | Center Aligned | Right Aligned |\n|:-------------|:--------------:|--------------:|\n| Content      | Content        | Content       |\n| More         | More           | More          |\n\n## Lists and Navigation\n\n### Nested Lists with Mixed Types\n1. First ordered item\n2. Second ordered item\n   - Unordered sub item\n   - Another sub item\n     1. Nested ordered\n     2. Another nested\n3. Third ordered item\n\n### Definition Lists (if supported)\nTerm 1\n: Definition for term 1\n\nTerm 2\n: Definition for term 2\n: Alternative definition for term 2\n\n## Links and References\n\n### Modern Link Formats\n- [Regular link](https://github.com)\n- [Link with title](https://github.com \"GitHub Homepage\")\n- [Relative link to file](./CLAUDE.md)\n- [Reference-style link][ref-link]\n- \u003chttps://github.com\u003e (automatic link)\n\n[ref-link]: https://github.com \"Reference link\"\n\n### Email and Issues\n- Contact: \u003cuser@example.com\u003e\n- Issue reference: #123 (if in GitHub)\n- User mention: @username (if in GitHub)\n\n## Media and Embeds\n\n### Image with Reference\n![GitHub Logo][github-logo]\n\n[github-logo]: https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png \"GitHub Logo\"\n\n## Mathematical Expressions\n\nInline math: $E = mc^2$\n\nBlock math:\n$$\n\\sum_{i=1}^{n} x_i = x_1 + x_2 + \\cdots + x_n\n$$\n\n## Diagrams (Mermaid)\n\n```mermaid\ngraph TD\n    A[Start] --\u003e B{Is it working?}\n    B --\u003e|Yes| C[Great!]\n    B --\u003e|No| D[Debug]\n    D --\u003e B\n    C --\u003e E[End]\n```\n\n### Sequence Diagram\n```mermaid\nsequenceDiagram\n    participant User\n    participant Browser\n    participant Server\n    \n    User-\u003e\u003eBrowser: Enter URL\n    Browser-\u003e\u003eServer: HTTP Request\n    Server-\u003e\u003eBrowser: HTTP Response\n    Browser-\u003e\u003eUser: Display Page\n```\n\n## Footnotes and Citations\n\nThis is a statement that needs a citation[^1].\n\nHere's another statement with a longer footnote[^long-note].\n\n[^1]: This is a simple footnote.\n\n[^long-note]: This is a longer footnote with multiple lines.\n    \n    It can even contain code blocks:\n    \n    ```\n    console.log('Hello from footnote!');\n    ```\n\n## Modern Blockquotes\n\n### Simple Quote\n\u003e \"The best way to predict the future is to invent it.\"\n\u003e — Alan Kay\n\n### Nested Quotes with Attribution\n\u003e \"Innovation distinguishes between a leader and a follower.\"\n\u003e\n\u003e \u003e This quote is often attributed to Steve Jobs, though the exact source is debated.\n\n## Special Characters and Escaping\n\n### HTML Entities\n\u0026copy; 2024 \u0026mdash; All rights reserved \u0026trade;\n\n### Escaping Special Characters\n\\*This text is not italic\\*  \n\\`This is not code\\`  \n\\## This is not a heading\n\n## Horizontal Rules\n\nStandard rule:\n---\n\nThicker rule:\n***\n\nDotted rule (if supported):\n___\n\n## Advanced Features\n\n### Collapsible Sections (HTML in Markdown)\n\u003cdetails\u003e\n\u003csummary\u003eClick to expand\u003c/summary\u003e\n\nThis content is hidden by default and can be expanded by clicking the summary.\n\n```javascript\nconsole.log('Hidden code block!');\n```\n\n\u003c/details\u003e\n\n### Keyboard Shortcuts\nPress \u003ckbd\u003eCtrl\u003c/kbd\u003e + \u003ckbd\u003eC\u003c/kbd\u003e to copy  \nUse \u003ckbd\u003e⌘\u003c/kbd\u003e + \u003ckbd\u003eV\u003c/kbd\u003e to paste on Mac\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxdannyrobertsx%2Fdeno-webview","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxdannyrobertsx%2Fdeno-webview","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxdannyrobertsx%2Fdeno-webview/lists"}