Refactor documentation for reverse proxy and routing guides
Deploy to Production / deploy (push) Successful in 5s

This commit is contained in:
Илья Глазунов
2025-12-08 01:05:52 +03:00
parent 58660ec8d4
commit 00119ce463
12 changed files with 521 additions and 517 deletions
+23 -4
View File
@@ -77,11 +77,30 @@ All documentation pages follow this structure:
## Code Highlighting
All pages include highlight.js for automatic syntax highlighting:
All pages use highlight.js for automatic syntax highlighting:
- CSS theme: `github-dark.min.css` (matches dark theme)
- Auto-initialization: `hljs.highlightAll()`
- Custom styles in `style.css` integrate with highlight.js
- **Theme**: `github-dark.min.css` (matches dark theme)
- **Auto-initialization**: `hljs.highlightAll()` runs on page load
- **Custom styles**: Enhanced color palette in `style.css`
- **Languages detected**: YAML, Bash, Python, Plaintext
### Code Block Format
All code blocks use semantic language classes:
```html
<pre><code class="language-yaml">
server:
host: 0.0.0.0
port: 8080
</code></pre>
```
Supported languages:
- `language-yaml` — YAML configuration files
- `language-bash` — Shell commands and scripts
- `language-python` — Python code examples
- `language-plaintext` — Plain text output
## Deployment