Markdown

You can use markdown to enrich your comments.

Links

Click [here](https://google.com) to search

Click here to search

Unordered lists

* Red
* Green
* Blue

Ordered lists

1. Red
2. Green
3. Blue
  1. Red
  2. Green
  3. Blue

Code / literals

Click on the `hello` button

Click on the Hello button

Syntax highlighting

 ```php
 function hello(string $target = 'world'): void
 {
   echo "Hello $target";
 }
 ` ` `
function hello(string $target = 'world'): void
{
   echo "Hello $target";
}

Login