up/search.json
2026-06-02 15:54:36 +08:00

1 line
No EOL
6.7 KiB
JSON

{"config":{"separator":"[\\s\\-_,:!=\\[\\]()\\\\\"`/]+|\\.(?!\\d)"},"items":[{"location":"","level":1,"title":"Welcome!","text":"<p>For full documentation visit zensical.org.</p>","path":["Welcome!"],"tags":[]},{"location":"#commands","level":2,"title":"Commands","text":"<ul> <li><code>zensical new</code> - Create a new project</li> <li><code>zensical serve</code> - Start local web server</li> <li><code>zensical build</code> - Build your site</li> </ul>","path":["Welcome!"],"tags":[]},{"location":"#markdown","level":2,"title":"[[markdown]]","text":"","path":["Welcome!"],"tags":[]},{"location":"#examples","level":2,"title":"Examples","text":"","path":["Welcome!"],"tags":[]},{"location":"#admonitions","level":3,"title":"Admonitions","text":"<p>Go to documentation</p> <p>Note</p> <pre><code>This is a **note** admonition. Use it to provide helpful information.\n</code></pre> <p>Warning</p> <pre><code>This is a **warning** admonition. Be careful!\n</code></pre>","path":["Welcome!"],"tags":[]},{"location":"#details","level":3,"title":"Details","text":"<p>Go to documentation</p> Click to expand for more info <pre><code>This content is hidden until you click to expand it.\nGreat for FAQs or long explanations.\n</code></pre>","path":["Welcome!"],"tags":[]},{"location":"#code-blocks","level":2,"title":"Code Blocks","text":"<p>Go to documentation</p> <pre><code>def greet(name):\n print(f\"Hello, {name}!\") # (1)!\n\ngreet(\"Python\")\n</code></pre> <ol> <li>Go to documentation</li> </ol> <p>Code annotations allow to attach notes to lines of code.</p> <p>Code can also be highlighted inline: <code>print(\"Hello, Python!\")</code>.</p>","path":["Welcome!"],"tags":[]},{"location":"#content-tabs","level":2,"title":"Content tabs","text":"<p>Go to documentation</p> Python <pre><code>``` python\nprint(\"Hello from Python!\")\n```\n</code></pre> Rust <pre><code>``` rs\nprintln!(\"Hello from Rust!\");\n```\n</code></pre>","path":["Welcome!"],"tags":[]},{"location":"#diagrams","level":2,"title":"Diagrams","text":"<p>Go to documentation</p> <pre><code>graph LR\n A[Start] --&gt; B{Error?};\n B --&gt;|Yes| C[Hmm...];\n C --&gt; D[Debug];\n D --&gt; B;\n B ----&gt;|No| E[Yay!];</code></pre>","path":["Welcome!"],"tags":[]},{"location":"#footnotes","level":2,"title":"Footnotes","text":"<p>Go to documentation</p> <p>Here's a sentence with a footnote.1</p> <p>Hover it, to see a tooltip.</p>","path":["Welcome!"],"tags":[]},{"location":"#formatting","level":2,"title":"Formatting","text":"<p>Go to documentation</p> <ul> <li>This was marked (highlight)</li> <li>This was inserted (underline)</li> <li>This was deleted (strikethrough)</li> <li>H<sub>~2</sub>~O</li> <li>A<sup>T</sup>A</li> <li>Ctrl+Alt+Del</li> </ul>","path":["Welcome!"],"tags":[]},{"location":"#icons-emojis","level":2,"title":"Icons, Emojis","text":"<p>Go to documentation</p> <ul> <li> <code>:sparkles:</code></li> <li> <code>:rocket:</code></li> <li> <code>:tada:</code></li> <li> <code>:memo:</code></li> <li> <code>:eyes:</code></li> </ul>","path":["Welcome!"],"tags":[]},{"location":"#maths","level":2,"title":"Maths","text":"<p>Go to documentation</p> \\[ \\cos x=\\sum_{k=0}^{\\infty}\\frac{(-1)^k}{(2k)!}x^{2k} \\] <p>!!! warning \"Needs configuration\"\\ Note that MathJax is included via a <code>script</code> tag on this page and is not\\ configured in the generated default configuration to avoid including it\\ in a pages that do not need it. See the documentation for details on how\\ to configure it on all your pages if they are more Maths-heavy than these\\ simple starter pages.</p>","path":["Welcome!"],"tags":[]},{"location":"#task-lists","level":2,"title":"Task Lists","text":"<p>Go to documentation</p> <ul> <li> Install Zensical</li> <li> Configure <code>zensical.toml</code></li> <li> Write amazing documentation</li> <li> Deploy anywhere</li> </ul>","path":["Welcome!"],"tags":[]},{"location":"#tooltips","level":2,"title":"Tooltips","text":"<p>Go to documentation</p> <p>Hover me</p>","path":["Welcome!"],"tags":[]},{"location":"#footnotes_1","level":2,"title":"Footnotes","text":"<ol> <li>This is the footnote. ↩</li> </ol>","path":["Welcome!"],"tags":[]},{"location":"markdown/","level":1,"title":"Markdown in 5min","text":"","path":["Markdown in 5min"],"tags":[]},{"location":"markdown/#headers","level":2,"title":"Headers","text":"<pre><code># H1 Header\n## H2 Header\n### H3 Header\n#### H4 Header\n##### H5 Header\n###### H6 Header\n</code></pre>","path":["Markdown in 5min"],"tags":[]},{"location":"markdown/#text-formatting","level":2,"title":"Text formatting","text":"<pre><code>**bold text**\n*italic text*\n***bold and italic***\n~~strikethrough~~\n`inline code`\n</code></pre>","path":["Markdown in 5min"],"tags":[]},{"location":"markdown/#links-and-images","level":2,"title":"Links and images","text":"<pre><code>[Link text](https://example.com)\n[Link with title](https://example.com \"Hover title\")\n![Alt text](image.jpg)\n![Image with title](image.jpg \"Image title\")\n</code></pre>","path":["Markdown in 5min"],"tags":[]},{"location":"markdown/#lists","level":2,"title":"Lists","text":"<pre><code>Unordered:\n\n- Item 1\n- Item 2\n - Nested item\n\nOrdered:\n\n1. First item\n2. Second item\n3. Third item\n</code></pre>","path":["Markdown in 5min"],"tags":[]},{"location":"markdown/#blockquotes","level":2,"title":"Blockquotes","text":"<pre><code>&gt; This is a blockquote\n&gt; Multiple lines\n&gt;&gt; Nested quote\n</code></pre>","path":["Markdown in 5min"],"tags":[]},{"location":"markdown/#code-blocks","level":2,"title":"Code blocks","text":"<pre><code>```javascript\nfunction hello() {\n console.log(\"Hello, world!\");\n}\n```\n</code></pre>","path":["Markdown in 5min"],"tags":[]},{"location":"markdown/#tables","level":2,"title":"Tables","text":"<pre><code>| Header 1 | Header 2 | Header 3 |\n|----------|----------|----------|\n| Row 1 | Data | Data |\n| Row 2 | Data | Data |\n</code></pre>","path":["Markdown in 5min"],"tags":[]},{"location":"markdown/#horizontal-rule","level":2,"title":"Horizontal rule","text":"<pre><code>---\nor\n***\nor\n___\n</code></pre>","path":["Markdown in 5min"],"tags":[]},{"location":"markdown/#task-lists","level":2,"title":"Task lists","text":"<pre><code>- [x] Completed task\n- [ ] Incomplete task\n- [ ] Another task\n</code></pre>","path":["Markdown in 5min"],"tags":[]},{"location":"markdown/#escaping-characters","level":2,"title":"Escaping characters","text":"<pre><code>Use backslash to escape: \\* \\_ \\# \\`\n</code></pre>","path":["Markdown in 5min"],"tags":[]},{"location":"markdown/#line-breaks","level":2,"title":"Line breaks","text":"<pre><code>End a line with two spaces \nto create a line break.\n\nOr use a blank line for a new paragraph.\n</code></pre>","path":["Markdown in 5min"],"tags":[]}]}