Hello, world!

Hello, world!

Let's see what the website design looks like and how to use the rST with Nikola. You probably won't find anything particularly interesting here.

Any tips and comments regarding the appearance of the website are welcome.

Some usefull links:

Notes:

  1. Nikola uses rst2html for generating output from rST

Admonitions

Supported specific admonitions: attention, caution, danger, error, hint, important, note, tip, warning.

Tables

Table 1

A

B

C

DEFG

x

y

0

xxx

x

y

1

yyy

Table 2

Some

table

xxxxxx

more

example

yyyyyy

complex

and here some text

CSV table

One

Two

Tree

AAAA

0.99

xxxxx

BBBB

0.49

yyyyy

CCCC

0.00001

zzzzz

Code

We use pygments stata-dark color scheme:

CODE_COLOR_SCHEME = 'stata-dark'

Here is the code block in Python:

def dummy(arg: int) -> int:
   print("hello")
   return 1

Here is the code block in C:

#include <stdio.h>

int main(int argc, char *argv[])
  {
    printf("hello\n");
  }

Math

\begin{equation*} Id = I_\alpha cos(\theta_e) + I_\beta sin(\theta_e) \end{equation*}
\begin{equation*} Iq = -I_\alpha sin(\theta_e) + I_\beta cos(\theta_e) \end{equation*}

Inline Math example: \(e^{ix} = \cos x + i\sin x\)

Images

Images from /images will be processed and have thumbnails created.

Below - thumbnails in a 1x2 grid:

Pretty cool high-power inductors 1

Pretty cool high-power inductors 2



Here's a test image with the .. image:: directive:

and this is a duck

Header level 0

Under level 0.

  1. List item 1

    1. Under item 1

    2. Under item 1

    3. Under item 1

  2. List item 2

    1. Under item 2

    2. Under item 2

    3. Under item 2

  3. List item 3

    1. Under item 3

    2. Under item 3

    3. Under item 3

  4. List item 4

    1. Under item 4

    2. Under item 4

    3. Under item 4

Level 1

Under level 1.

  • List item 1

  • List item 2

  • List item 3

  • List item 4

Level 2

Under level 2.

  1. List item 1

  2. List item 2

  3. List item 3

  4. List item 4

Level 3

Under level 3.

One asterisk for emphasis, two asterisks for boldface, backquotes for code samples.

Level 4 - the lowest

Under level 4.

Level 5 - the same as level 4
Level 6 - the same as level 4

Under level 6.

Under level 6.

Comments