My Article Name – Тест

Contents

[TOC]

Проверка Шахматных Диаграмм

https://www.dmitriev.ee/punbb/extensions/chess_diagram/gendiag-jane.php?coord&size=29&style=merida&fen=r1bq1rk1/p1p2pb1/1p1p3p/2nPp1p1/2P1P3/2NB1NP1/PP2QPP1/R3R1K1+w+-+-+0+15 FEN: r1bq1rk1/p1p2pb1/1p1p3p/2nPp1p1/2P1P3/2NB1NP1/PP2QPP1/R3R1K1

Картинка https://www.dmitriev.ee/punbb/extensions/chess_diagram/gendiag-fritz.php?size=29&coord&style=alfa&fen=r6b/p1pq1p1k/1p2p1rp/4PpBQ/3P1P2/2PR2R1/P5PP/6K1 FEN: r6b/p1pq1p1k/1p2p1rp/4PpBQ/3P1P2/2PR2R1/P5PP/6K1

https://www.euruchess.org/diagol/29/diagol.php?position=r1bq1rk1/p1p2pb1/1p1p3p/2nPp1p1/2P1P3/2NB1NP1/PP2QPP1/R3R1K1%20w%20-%20-%200%2015 FEN: r1bq1rk1/p1p2pb1/1p1p3p/2nPp1p1/2P1P3/2NB1NP1/PP2QPP1/R3R1K1 https://www.dmitriev.ee/punbb/extensions/cd52/gendiag.php?size=29&coord&style=alfa&fen=r6b/p1pq1p1k/1p2p1rp/4PpBQ/3P1P2/2PR2R1/P5PP/6K1

Centered text
1
2
3
4
5
6
7
{{< mermaid >}}
    graph LR
    A[Толик] -->|Плюс| B(Вовик)
    B --> C{Родные Братья}
    C -->|Один| D[Стрёмберг]
    C -->|Другой| E[Дмитриев]
{{< /mermaid >}}

renders as

Плюс
Один
Другой
Толик
Вовик
Родные Братья
Стрёмберг
Дмитриев

Some Interesting Title - диаграмма

Academic supports a Markdown extension for diagrams. You can enable this feature by toggling the diagram option in your config/_default/params.toml file or by adding diagram: true to your page front matter.

1
2
3
4
5
6
7
{{< mermaid >}}
    graph TD
    A[Hard] -->|Text| B(Round)
    B --> C{Decision}
    C -->|One| D[Result 1]
    C -->|Two| E[Result 2]
{{< /mermaid >}}

renders as

Text
One
Two
Hard
Round
Decision
Result 1
Result 2
1
2
3
4
5
6
7
8
9
sequenceDiagram
    Alice->>John: Hello John, how are you?
    loop Healthcheck
    John->>John: Fight against hypochondria
    end
    Note right of John: Rational thoughts!
    John-->>Alice: Great!
    John->>Bob: How about you?
    Bob-->>John: Jolly good!

renders as

AliceJohnBobloop[Healthcheck]Rational thoughts!Hello John, how are you?Fight against hypochondriaGreat!How about you?Jolly good!AliceJohnBob
1
2
3
4
5
{{< mermaid >}}
    pie title NETFLIX
    "Time spent looking for movie" : 90
    "Time spent watching it" : 10
{{< /mermaid >}}
NETFLIX90%10%NETFLIXTime spent looking for movieTime spent watching it
1
2
3
4
5
6
7
{{< mermaid >}}
graph LR;
    A[Hard edge] -->|Link text| B(Round edge)
    B --> C{Decision}
    C -->|One| D[Result one]
    C -->|Two| E[Result two]
{{< /mermaid >}}
Link text
One
Two
Hard edge
Round edge
Decision
Result one
Result two