← Back to all posts
Hello World. April 1, 2025 at 09:00 AM · 3 min read · English · #hello #world

Hello World

·
3 min read
·
English

This is my first blog post. Welcome! Here I will share my thoughts, projects, and discoveries in the world of web development and programming.

What to expect

In this blog, you’ll find articles about:

  • Frontend and backend web development
  • Programming best practices and patterns
  • New technologies and frameworks
  • Personal experiences and lessons learned

Stay tuned for upcoming posts! So…

Some Markdown tests

Markdown syntax guide

Headers:

h1 Heading

h2 Heading

h3 Heading

h4 Heading

h5 Heading

Horizontal Rules:




Emphasis:

This text will be italic
This will also be italic

This text will be bold
This will also be bold

You can combine them

Lists:

Unordered:

  • Create a list by starting a line with +, -, or *
  • Sub-lists are made by indenting 2 spaces:
    • Marker character change forces new list start:
      • Ac tristique libero volutpat at
      • Facilisis in pretium nisl aliquet
      • Nulla volutpat aliquam velit
  • Very easy!

Ordered:

  1. Lorem ipsum dolor sit amet
  2. Consectetur adipiscing elit
  3. Integer molestie lorem at massa

You may be using Markdown Live Preview.

Blockquotes:

Blockquotes can also be nested…

…by using additional greater-than signs right next to each other…

…or with spaces between arrows.

Tables:

Left columnsRight columns
left fooright foo
left barright bar
left bazright baz

Blocks of code:

let message = 'Hello world';
alert(message);

Syntax highlighting:

var foo = function (bar) {
  return bar++;
};

console.log(foo(5));

Inline code:

This web site is using markedjs/marked.

Images:

Test

Emojies:

✨ ✨ ✨

😉 😢 😆 😋

Admonitions:

This page demonstrates the various types of admonitions available.

NOTE

Highlights information that users should take into account, even when skimming.

TIP

Optional information to help a user be more successful.

IMPORTANT

Crucial information necessary for users to succeed.

WARNING

Critical content demanding immediate user attention due to potential risks.

CAUTION

Negative potential consequences of an action.

Task lists:

  • Finish my changes
  • Push my commits to GitHub
  • Open a pull request
  • @mentions, #refs, links, formatting, and tags supported
  • list syntax required (any unordered or ordered list supported)
  • this is a complete item
  • this is an incomplete item