|
| 1 | +<!doctype html> |
| 2 | +<html lang="en"> |
| 3 | + <head> |
| 4 | + <meta charset="UTF-8" /> |
| 5 | + <title>ChaiBuilder SDK Documentation</title> |
| 6 | + <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> |
| 7 | + <meta name="description" content="ChaiBuilder SDK - A powerful visual page builder SDK for React applications" /> |
| 8 | + <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0" /> |
| 9 | + <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css" /> |
| 10 | + <style> |
| 11 | + :root { |
| 12 | + --theme-color: #3b82f6; |
| 13 | + --theme-color-light: #60a5fa; |
| 14 | + } |
| 15 | + .sidebar-nav > ul > li > a { |
| 16 | + font-weight: 600; |
| 17 | + } |
| 18 | + .markdown-section code { |
| 19 | + border-radius: 4px; |
| 20 | + } |
| 21 | + .markdown-section pre { |
| 22 | + border-radius: 8px; |
| 23 | + } |
| 24 | + .app-name-link img { |
| 25 | + max-width: 120px; |
| 26 | + } |
| 27 | + </style> |
| 28 | + <!-- Single Page Apps for GitHub Pages redirect handler --> |
| 29 | + <script> |
| 30 | + (function (l) { |
| 31 | + if (l.search[1] === "/") { |
| 32 | + var decoded = l.search |
| 33 | + .slice(1) |
| 34 | + .split("&") |
| 35 | + .map(function (s) { |
| 36 | + return s.replace(/~and~/g, "&"); |
| 37 | + }) |
| 38 | + .join("?"); |
| 39 | + window.history.replaceState(null, null, l.pathname.slice(0, -1) + decoded + l.hash); |
| 40 | + } |
| 41 | + })(window.location); |
| 42 | + </script> |
| 43 | + </head> |
| 44 | + <body> |
| 45 | + <div id="app"></div> |
| 46 | + <script> |
| 47 | + window.$docsify = { |
| 48 | + name: "ChaiBuilder SDK", |
| 49 | + repo: "chaibuilder/sdk", |
| 50 | + loadSidebar: true, |
| 51 | + subMaxLevel: 3, |
| 52 | + auto2top: true, |
| 53 | + routerMode: "history", |
| 54 | + search: { |
| 55 | + placeholder: "Search docs...", |
| 56 | + noData: "No results found", |
| 57 | + depth: 3, |
| 58 | + }, |
| 59 | + copyCode: { |
| 60 | + buttonText: "Copy", |
| 61 | + successText: "Copied!", |
| 62 | + }, |
| 63 | + pagination: { |
| 64 | + previousText: "Previous", |
| 65 | + nextText: "Next", |
| 66 | + crossChapter: true, |
| 67 | + }, |
| 68 | + themeColor: "#3b82f6", |
| 69 | + }; |
| 70 | + </script> |
| 71 | + <!-- Docsify --> |
| 72 | + <script src="https://cdn.jsdelivr.net/npm/docsify@4"></script> |
| 73 | + <!-- Search plugin --> |
| 74 | + <script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/plugins/search.min.js"></script> |
| 75 | + <!-- Copy code plugin --> |
| 76 | + <script src="https://cdn.jsdelivr.net/npm/docsify-copy-code@2"></script> |
| 77 | + <!-- Pagination plugin --> |
| 78 | + <script src="https://cdn.jsdelivr.net/npm/docsify-pagination@2/dist/docsify-pagination.min.js"></script> |
| 79 | + <!-- Syntax highlighting --> |
| 80 | + <script src="https://cdn.jsdelivr.net/npm/prismjs@1/components/prism-typescript.min.js"></script> |
| 81 | + <script src="https://cdn.jsdelivr.net/npm/prismjs@1/components/prism-tsx.min.js"></script> |
| 82 | + <script src="https://cdn.jsdelivr.net/npm/prismjs@1/components/prism-bash.min.js"></script> |
| 83 | + </body> |
| 84 | +</html> |
0 commit comments