1 line
7.8 KiB
JSON
1 line
7.8 KiB
JSON
{"config":{"separator":"[\\s\\-_,:!=\\[\\]()\\\\\"`/]+|\\.(?!\\d)"},"items":[{"location":"home/","level":1,"title":"Home","text":"","path":["Home"],"tags":[]},{"location":"home/#presentation","level":2,"title":"Presentation","text":"<p>Bonjour ! Je m'appelle Hanine. Actuellement en première année de formation DevOps, je suis passionnée par l'automatisation, l'infrastructure et la culture du \"Build, Ship, Run\".</p> <p>Le monde du DevOps est vaste, parfois chaotique, mais fascinant. Entre l'administration système Linux, les conteneurs Docker, les scripts Bash et les concepts réseaux, la quantité d'informations à absorber est massive.</p> <p>Ce site n'est pas un simple blog : c'est ma base de connaissances vivante. Il reflète mon parcours, passant de la découverte théorique à la mise en pratique technique. Vous y trouverez mes notes, mes procédures de dépannage, et la documentation de mes projets académiques et personnels.</p>","path":["Home"],"tags":[]},{"location":"home/#tech-stack","level":2,"title":"Tech Stack","text":"<ul> <li> Linux </li> <li> Bash </li> <li> Docker </li> <li> PostgreSQL </li> <li> Python </li> <li> JavaScript </li> </ul>","path":["Home"],"tags":[]},{"location":"cheatsheets/","level":1,"title":"Formatting cheat sheet","text":"<p>For full documentation visit zensical.org.</p>","path":["Cheat Sheets","Formatting cheat sheet"],"tags":[]},{"location":"cheatsheets/#examples","level":2,"title":"Examples","text":"","path":["Cheat Sheets","Formatting cheat sheet"],"tags":[]},{"location":"cheatsheets/#admonitions","level":3,"title":"Admonitions","text":"<p>Go to documentation</p> <p>Note</p> <p>This is a note admonition. Use it to provide helpful information.</p> <p>Warning</p> <p>This is a warning admonition. Be careful!</p>","path":["Cheat Sheets","Formatting cheat sheet"],"tags":[]},{"location":"cheatsheets/#details","level":3,"title":"Details","text":"<p>Go to documentation</p> Click to expand for more info <p>This content is hidden until you click to expand it. Great for FAQs or long explanations.</p>","path":["Cheat Sheets","Formatting cheat sheet"],"tags":[]},{"location":"cheatsheets/#code-blocks","level":2,"title":"Code Blocks","text":"<p>Go to documentation</p> Code blocks<pre><code>def greet(name):\n print(f\"Hello, {name}!\") # (1)!\n\ngreet(\"Python\")\n</code></pre> <ol> <li> <p>Go to documentation</p> <p>Code annotations allow to attach notes to lines of code.</p> </li> </ol> <p>Code can also be highlighted inline: <code>print(\"Hello, Python!\")</code>.</p>","path":["Cheat Sheets","Formatting cheat sheet"],"tags":[]},{"location":"cheatsheets/#content-tabs","level":2,"title":"Content tabs","text":"<p>Go to documentation</p> PythonRust <pre><code>print(\"Hello from Python!\")\n</code></pre> <pre><code>println!(\"Hello from Rust!\");\n</code></pre>","path":["Cheat Sheets","Formatting cheat sheet"],"tags":[]},{"location":"cheatsheets/#diagrams","level":2,"title":"Diagrams","text":"<p>Go to documentation</p> <pre><code>graph LR\n A[Start] --> B{Error?};\n B -->|Yes| C[Hmm...];\n C --> D[Debug];\n D --> B;\n B ---->|No| E[Yay!];</code></pre>","path":["Cheat Sheets","Formatting cheat sheet"],"tags":[]},{"location":"cheatsheets/#footnotes","level":2,"title":"Footnotes","text":"<p>Go to documentation</p> <p>Here's a sentence with a footnote.<sup>1</sup></p> <p>Hover it, to see a tooltip.</p>","path":["Cheat Sheets","Formatting cheat sheet"],"tags":[]},{"location":"cheatsheets/#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":["Cheat Sheets","Formatting cheat sheet"],"tags":[]},{"location":"cheatsheets/#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":["Cheat Sheets","Formatting cheat sheet"],"tags":[]},{"location":"cheatsheets/#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":["Cheat Sheets","Formatting cheat sheet"],"tags":[]},{"location":"cheatsheets/#tooltips","level":2,"title":"Tooltips","text":"<p>Go to documentation</p> <p>Hover me</p> <ol> <li> <p>This is the footnote. ↩</p> </li> </ol>","path":["Cheat Sheets","Formatting cheat sheet"],"tags":[]},{"location":"cheatsheets/markdown/","level":1,"title":"Markdown cheat sheet","text":"","path":["Cheat Sheets","Markdown cheat sheet"],"tags":[]},{"location":"cheatsheets/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":["Cheat Sheets","Markdown cheat sheet"],"tags":[]},{"location":"cheatsheets/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":["Cheat Sheets","Markdown cheat sheet"],"tags":[]},{"location":"cheatsheets/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\n\n</code></pre>","path":["Cheat Sheets","Markdown cheat sheet"],"tags":[]},{"location":"cheatsheets/markdown/#lists","level":2,"title":"Lists","text":"<pre><code>Unordered:\n- Item 1\n- Item 2\n - Nested item\n\nOrdered:\n1. First item\n2. Second item\n3. Third item\n</code></pre>","path":["Cheat Sheets","Markdown cheat sheet"],"tags":[]},{"location":"cheatsheets/markdown/#blockquotes","level":2,"title":"Blockquotes","text":"<pre><code>> This is a blockquote\n> Multiple lines\n>> Nested quote\n</code></pre>","path":["Cheat Sheets","Markdown cheat sheet"],"tags":[]},{"location":"cheatsheets/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":["Cheat Sheets","Markdown cheat sheet"],"tags":[]},{"location":"cheatsheets/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":["Cheat Sheets","Markdown cheat sheet"],"tags":[]},{"location":"cheatsheets/markdown/#horizontal-rule","level":2,"title":"Horizontal rule","text":"<pre><code>---\nor\n***\nor\n___\n</code></pre>","path":["Cheat Sheets","Markdown cheat sheet"],"tags":[]},{"location":"cheatsheets/markdown/#task-lists","level":2,"title":"Task lists","text":"<pre><code>- [x] Completed task\n- [ ] Incomplete task\n- [ ] Another task\n</code></pre>","path":["Cheat Sheets","Markdown cheat sheet"],"tags":[]},{"location":"cheatsheets/markdown/#escaping-characters","level":2,"title":"Escaping characters","text":"<pre><code>Use backslash to escape: \\* \\_ \\# \\`\n</code></pre>","path":["Cheat Sheets","Markdown cheat sheet"],"tags":[]},{"location":"cheatsheets/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":["Cheat Sheets","Markdown cheat sheet"],"tags":[]},{"location":"documentation/bdd/","level":1,"title":"Databases","text":"","path":["Documentation","Databases"],"tags":[]},{"location":"projects/grabber/","level":1,"title":"Grabber","text":"","path":["Projects","Grabber"],"tags":[]}]} |