We have moved our forum to GitHub Discussions. For questions about Phalcon v3/v4/v5 you can visit here and for Phalcon v6 here.

Markdown

This forum allows you to use Markdown as markup language when creating posts or adding comments. Markdown is also used by Github so it's probably familiar to you. The following guide explain its basic syntax:

Bold and Italics

*single asterisks*

_single underscores_

**double asterisks**

__double underscores__

Headings

H1 is underlined using equal signs, and H2 is underlined using dashes.

Header 1
========

Header 2

Headings

Atx-style headers use 1-6 hash characters at the start of the line.

# Header 1
## Header 2
### Header 3
#### Header 4
##### Header 5
###### Header 6

Paragraphs

A paragraph is simply one or more consecutive lines of text, separated by one or more blank lines.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla neque nisl, fringilla sed blandit non, pretium eu odio.

Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Nulla neque nisl, fringilla sed blandit non, pretium eu odio.

Unordered Lists

Start each line with hyphens, asterisks or pluses.

* one
* two
* three

Ordered Lists Core

Start each line with number and a period.

1. one
2. two
3. three

Code Blocks

**Preferred method**

```php
<?php

require __DIR__ . '/vendor/autoload.php';
```

```
$ cd cphalcon/build
$ sudo ./install
```

Lorem ipsum dolor sit amet

    consectetur adipiscing elit.
    Nulla neque nisl, fringilla sed blandit non, pretium eu odio.

Inline Code

Don't forget to add `echo $foo;`.

Please replace `<b>` to `<strong>`.

Horizontal Rules

* * *

*******

- - - -

--------

Inline Links

This is an [inline link](http://example.com).

This [link](http://example.com "example website") has title attribute.

This is an [reference style link][id1].

This [link][id2] has title attribute.

[id1]: http://example.com/
[id2]: http://example.com/ "example website"

Inline Images

![Alt text](/path/to/image.png)

![Alt text](/path/to/image.png "Title")

Tables

| head | head |
|------|------|
| body | body |

Markup of inserted text

The ins tag defines a text that has been inserted into a document.

My favorite color is ~blue~ ~~red~~!
My favorite color is blue red!

Markup of deleted text

The del tag defines text that has been deleted from a document.

My favorite color is ~blue~ ~~red~~!
My favorite color is blue red!