Easy Tutorial
❮ Md Tutorial Md Table ❯

Markdown Code

If you have a function or code snippet within a paragraph, you can enclose it with backticks (`), for example:

`printf()` function

The display result is as follows:

Code Block

Code blocks use 4 spaces or a tab character.

Here is an example:

The display result is as follows:

You can also wrap a block of code with triple backticks (`````) and specify a language (or not):

```javascript
$(document).ready(function () {
    alert('tutorialpro');
});

```

The display result is as follows:

❮ Md Tutorial Md Table ❯