html code in markdown code example

Example 1: code in markdown

```<name of the language>
<code>
```

EXAMPLE

```python
print("Hello World")
```

Example 2: html to markdown

Kindly refer below link to convert html to markdown
https://www.browserling.com/tools/html-to-markdown

Example 3: html to markdown

mov al,   0xff
mov bx,   0xff
mov ecx,  0xff
mov rdx,  0xff

; mov al, bl    No Error
; mov cx, ebx   Error

; untuk perpindahan registers ke registers adalah dengan tipe registers yang sama
; al  dengan al | atau al dengan ah
; ax  dengan ax
; eax dengan eax
; rax dengan rax

Tags:

Html Example