Fortrix Academy
Welcome to Fortrix Academy. This page demonstrates common Docusaurus documentation features.
✨ Text Formatting
- Bold text
- Italic text
inline codestrikethrough
🔗 Links
External link: fortrix.sh
Internal link example:
⚡ Admonitions (Callouts)
Tip
Use tips for helpful shortcuts.
Info
Use info blocks for context.
Warning
Use warnings when something might break.
Danger
Use danger blocks for risky actions.
💻 Code Blocks
Bash
sudo apt update
npm run build
TypeScript
type User = {
name: string;
role: 'student' | 'admin';
};
const user: User = { name: "Drona", role: "student" };
console.log(user);
📊 Tables
| Feature | Supported |
|---|---|
| Markdown | ✅ |
| Admonitions | ✅ |
| Code Highlighting | ✅ |
🖼 Images
Put images inside /static/img/
Example:
🧭 Lists
Ordered
- Install tools
- Configure project
- Deploy
Unordered
- Web
- Active Directory
- Red Team
- Tooling
📌 Quote
Documentation should be short, practical, and repeatable.
🚀 Next Steps
Create folders like:
docs/getting-starteddocs/tutorialsdocs/reference
The sidebar will auto-generate from folders.