Hello, World!

markdown
2023/09/04 に公開

Sample post for testing purposes.

Bold text Italic text Strikethrough text Inline code example.com

Done is better than perfect.

List

  • unordered list item 1
  • unordered list item 2
    • unordered list item 2.1
    • unordered list item 2.2
  1. ordered list item 1
  2. ordered list item 2
    1. ordered list item 2.1
    2. ordered list item 2.2

Code

Inline code: print("Hello, World!")

 def hello_world():
    print("Hello, World!") 
 fn main() {
    println!("Hello, World!");
} 
 const helloWorld = () => {
  console.log("Hello, World!")
} 

Math

Inline math: eiπ+1=0e^{i\pi} + 1 = 0

Block math:

ϵ>0,δ>0  s.t.  0<xa<δ    f(x)b<ϵ\forall \epsilon > 0, \exists \delta > 0 ~~\mathrm{s.t.}~~ 0 < |x - a| < \delta \implies |f(x) - b| < \epsilon

Image

![alt text](./icon.webp):

alt text

 import icon from "./icon.webp"
import { Image } from "@/components/mdx-components"

<Image src={icon} alt="alt text" title="title text"  width="200" /> 

yields:

alt text
title text

Heading 2

Heading 3

Heading 4