ยท

Jesus Marron

Test Blog Post

  • #first-tag
  • #second-tag

TLDR: tldr test

H1 Header

H2 Header

H3 Header

H4 Header

H5 Header
H6 Header

this is just some regular text with nothing added


Emphasis

Bold Text

Italic Text

Bold and Italic Text

Strikethrough


Lists

Unordered List

  • Item 1
    • Sub-item 1
      • Sub-sub-item 1
  • Item 2
  • Item 3

Ordered List

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

Links

OpenAI

Local Link


Images

Sample Image

Image with alt text


Blockquotes

This is a blockquote.

It can span multiple lines.

Nested blockquote.


Code

Inline code: console.log("Hello, world!");

Code Block

function greet() {
  console.log("Hello, world!");

  const two = 1 + 1;
}
greet();
package main

import (
  "fmt"
  "strconv"
)

func Example_itoa() {
  // Converting an int to a string can be done
  // using the `strconv.Itoa` (integer to ascii) function
  a := strconv.Itoa(1234)
  fmt.Printf("%q\n", a)
  // Output:
  // "1234"
}

func Example_formatInt() {
  // `strconv.Itoa` is calls internally
  // `FormatInt(int64(i), 10)` so another way
  //  to  convert an int to  a string is the following:
  b := strconv.FormatInt(int64(1234), 10)
  fmt.Printf("%q\n", b)
  // Output:
  // "1234"
}

func Example_sprintf() {
  // A third way would be to use the `fmt.Sprintf` method:
  c := fmt.Sprintf("%d", 1234)
  fmt.Printf("%q\n", c)
  // Output:
  // "1234"
}