El formato de texto sigue el estándar conocido como 'markdown', de esta forma podemos dar formato a nuestras noticias de forma rápida:
Si deseamos marcar el texto con cursiva o negrita utilizaremos el siguiente marcado.
negrita
| <?php | |
| namespace CSG\SimpleChatBundle\Controller; | |
| use Symfony\Component\Form\FormFactory; | |
| use Symfony\Component\Routing\Generator\UrlGeneratorInterface; | |
| use Symfony\Component\HttpFoundation\Request; | |
| use Symfony\Bundle\FrameworkBundle\Templating\EngineInterface; | |
| use Doctrine\ORM\EntityManager; |
| <?php | |
| namespace Acme\BlogBundle\Controller; | |
| use Symfony\Component\DependencyInjection\ContainerAware; | |
| use Symfony\Component\HttpFoundation\Response; | |
| use Acme\BlogBundle\Entity\Post; | |
| class DefaultController extends ContainerAware | |
| { |