表示テスト

Pythonのハイライト確認

items = ["item1", "item2"]
for item in items:
	print(item)

JavaScriptのハイライト確認

const test = "test";

Mermaidの確認

flowchart LR
A --> B
B --> C

Officialから取ってきたクラス図の確認

---
title: Animal example
---
classDiagram
    note "From Duck till Zebra"
    Animal <|-- Duck
    note for Duck "can fly\ncan swim\ncan dive\ncan help in debugging"
    Animal <|-- Fish
    Animal <|-- Zebra
    Animal : +int age
    Animal : +String gender
    Animal: +isMammal()
    Animal: +mate()
    class Duck{
        +String beakColor
        +swim()
        +quack()
    }
    class Fish{
        -int sizeInFeet
        -canEat()
    }
    class Zebra{
        +bool is_wild
        +run()
    }

Draw.io test-diagram.svg

table

項目1 項目2 項目3 項目4 1 2 3 4 5 6 7 8 9
1 2 3 4 12 3 6
a b c d
作成日: 2025-02-11 12:58
更新日: 2025-03-20 13:22