Skip to main content

Fortrix Academy

Welcome to Fortrix Academy. This page demonstrates common Docusaurus documentation features.


✨ Text Formatting

  • Bold text
  • Italic text
  • inline code
  • strikethrough

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

FeatureSupported
Markdown
Admonitions
Code Highlighting

🖼 Images

Put images inside /static/img/

Example:

Logo


🧭 Lists

Ordered

  1. Install tools
  2. Configure project
  3. Deploy

Unordered

  • Web
  • Active Directory
  • Red Team
  • Tooling

📌 Quote

Documentation should be short, practical, and repeatable.


🚀 Next Steps

Create folders like:

  • docs/getting-started
  • docs/tutorials
  • docs/reference

The sidebar will auto-generate from folders.