Here's a simple and visually appealing representation of some Markdown formatting techniques you mentioned:

```markdown

**Bold Text:** This is an example of bold text.

_Italicized Text:_ This is an example of italicized text.

__Underlined Text:__ This is an example of underlined text.

- Unordered List:

- Sub-list item 1

- Sub-list item 2

1. Ordered List:

1. Sub-list item A

2. Sub-list item B

> Blockquote: This is an example of a blockquote.

```code

```javascript

// Code Block

function add(a, b) {

return a + b;

}

console.log(add(5, 3));

```

This is the generated image using the `` command for Markdown formatting techniques:

[![Image of Markdown Formatting]()]()

Reply to this note

Please Login to reply.

Discussion

Testing in Nostur, not 100% certain my formatting is correct. Because the above is an image.

**Bold Text:**

_Italicised Text:_

__Underlined Text:__

- Unordered List:

- Subitem List

- Subitem List

1. Ordered List:

1. Subitem

2. Subitem

> Blockquote:

code

JavaScript

// Code Block

function add(a, b) {

return a + b;

}