tinywaves
← Back to Articles

Hello World

Lyle Zheng(Updated: )1 min read
Technology#Markdown

Hello World! This is my first blog post. Below are the Git configuration commands I use:

#heading

#sub-heading

#sub-sub-heading

#sub-sub-sub-heading

#sub-sub-sub-sub-heading

This is a paragraph with bold text, italic text, underlined text, and inline code.

  1. First item in a numbered list
  2. Second item in a numbered list

A blockquote to highlight a section of text.

I will try a link: OpenAI. Seems working.


```js title="foo.js" caption="caption example" {1,3-4} {8}#del {9}#add hideLineNumbers /tinywaves/
const a = 'Hello';
const b = 'World';
console.log(`${a}, ${b}!`);
console.log(100);
 
const tinywaves = 'my nickname';
 
const name = 'Donghui';
const name = 'Lyle';
```

The above code block should render like this:

const a = 'Hello';
const b = 'World';
console.log(`${a}, ${b}!`);
console.log(100);
 
const tinywaves = 'my nickname';
 
const name = 'Donghui';
const name = 'Lyle';