Posted on :: Updated on ::

H1

H2

H3

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Aliquet sagittis id consectetur purus ut. In pellentesque massa placerat duis ultricies. Neque laoreet suspendisse interdum consectetur libero id. Justo nec ultrices dui sapien eget mi proin. Nunc consequat interdum varius sit amet mattis vulputate. Sollicitudin tempor id eu nisl nunc mi ipsum. Non odio euismod lacinia at quis. Sit amet nisl suscipit adipiscing. Amet mattis vulputate enim nulla aliquet porttitor lacus luctus accumsan. Sit amet consectetur adipiscing elit pellentesque habitant. Ac placerat vestibulum lectus mauris. Molestie ac feugiat sed lectus vestibulum mattis ullamcorper velit sed. Google

Markdown Logo

Code Block

fn main() {
    println!("Hello World");
}
fn main() {
    println!("Hello World");
}

Ordered List

  1. First item
  2. Second item
  3. Third item

Unordered List

  • List item
  • Another item
  • And another item

Nested list

  • Fruit
    • Apple
    • Orange
    • Banana
  • Dairy
    • Milk
    • Cheese

Quote

Two things are infinite: the universe and human stupidity; and I'm not sure about the universe.
Albert Einstein

Table Inline Markdown

ItalicsBoldCodeStrikeThrough
italicsboldcodestrikethrough

Foldable Text

Title 1

IT'S A SECRET TO EVERYBODY.

Title 2

Stay awhile, and listen!

Code tags

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.

GitHub-style alerts

Highlights information that users should take into account, even when skimming.

Optional information to help a user be more successful.

Crucial information necessary for users to succeed.

Critical content demanding immediate user attention due to potential risks.

Negative potential consequences of an action.

Extensions

Mermaid

This Theme supports mermaid markdown diagram rendering.

To use mermaid diagrams in your posts, see the example in the raw markdown code. https://raw.githubusercontent.com/not-matthias/apollo/refs/heads/main/content/posts/mermaid.md


graph LR
    A[Start] --> B[Initialize]
    B --> C[Processing]
    C --> D[Complete]
    D --> E[Success]

    style A fill:#f9f,stroke:#333
    style E fill:#9f9,stroke:#333

Math Symbol

Note: This requires mathjax = true in the page's [extra] section (per-page) or in the site's config.toml [extra] section (global).

Inline Math

- $(a+b)^2$ = $a^2 + 2ab + b^2$
- A polynomial P of degree d over $\mathbb{F}_p$ is an expression of the form
  $P(s) = a_0 + a_1 . s + a_2 . s^2 + ... + a_d . s^d$ for some
  $a_0,..,a_d \in \mathbb{F}_p$
  • $(a+b)^2$ = $a^2 + 2ab + b^2$
  • A polynomial P of degree d over $\mathbb{F}_p$ is an expression of the form $P(s) = a_0 + a_1 . s + a_2 . s^2 + ... + a_d . s^d$ for some $a_0,..,a_d \in \mathbb{F}_p$

Displayed Math

$$
p := (\sum_{k∈I}{c_k.v_k} + \delta_v.t(x))·(\sum_{k∈I}{c_k.w_k} + \delta_w.t(x)) − (\sum_{k∈I}{c_k.y_k} + \delta_y.t(x))
$$

$$ p := (\sum_{k∈I}{c_k.v_k} + \delta_v.t(x))·(\sum_{k∈I}{c_k.w_k} + \delta_w.t(x)) − (\sum_{k∈I}{c_k.y_k} + \delta_y.t(x)) $$

Line Highlighting

This section demonstrates Zola's code block annotations supported by the Apollo theme.

Line Numbers

Use linenos to enable line numbering.

```rust,linenos
fn main() {
    println!("Hello World");
    let x = 42;
}
```
fn main() {
    println!("Hello World");
    let x = 42;
}

Single Line Highlighting

Use hl_lines=2 to highlight a specific line.

```rust,linenos,hl_lines=2
fn main() {
    println!("Hello World");
    let x = 42;
}
```
fn main() {
    println!("Hello World");
    let x = 42;
}

Multi-Line Highlighting

Use hl_lines=2 3 to highlight multiple lines.

```rust,linenos,hl_lines=2 3
fn main() {
    println!("Hello World");
    let x = 42;
}
```
fn main() {
    println!("Hello World");
    let x = 42;
}

Range Highlighting

Use hl_lines=1-3 to highlight a range of lines.

```rust,linenos,hl_lines=1-3
fn main() {
    println!("Hello World");
    let x = 42;
}
```
fn main() {
    println!("Hello World");
    let x = 42;
}

Custom Line Number Start

Use linenostart=10 to start line numbers at a specific value.

```rust,linenos,linenostart=10
fn main() {
    println!("Hello World");
    let x = 42;
}
```
fn main() {
    println!("Hello World");
    let x = 42;
}

Hidden Lines

Use hide_lines=2 to hide specific lines from the output.

```rust,linenos,hide_lines=2
fn main() {
    println!("Hello World");
    let x = 42;
}
```
fn main() {
    let x = 42;
}
Table of Contents