2017 © Pedro Peláez
 

phile-plugin textile

Replace the default parser (Markdown) in Phile with the PHP-Textile (https://github.com/textile/php-textile) parser.

image

phile/textile

Replace the default parser (Markdown) in Phile with the PHP-Textile (https://github.com/textile/php-textile) parser.

  • Saturday, December 27, 2014
  • by NeoBlack
  • Repository
  • 2 Watchers
  • 1 Stars
  • 12 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Textile-Parser-Plugin

Replace the default parser (Markdown) in Phile with the PHP-Textile parser., (*1)

1. Installation

1.1 Installation (composer)

php composer.phar require phile/textile:*

1.2 Installation (Download)

  • Clone this repo into plugins/phile/textile

2. Activation

After you have installed the plugin. You need to add the following line to your config.php file:, (*2)

$config['plugins']['phile\\textile'] = array('active' => true);

Then add the Textile dependency to your composer.json file:, (*3)

{
  "require": {
    "twig/twig": "1.14.*",
    "michelf/php-markdown": "1.3",
    "netcarver/textile": "3.5.*" // the textile parser
  }
}

Now run your composer install command as normal., (*4)

After you have installed the plugin. You need to add the following line to your config.php file:, (*5)

$config['plugins'] = array(
  'phile\\parserMarkdown' => array('active' => false),
  'phile\\textile' => array('active' => true) // use textile
);

You will also need to use .textile file extensions for content. To change the default open the index.php file in the root directory, and change the following line:, (*6)

define('CONTENT_EXT', '.textile'); // default is '.md'

Not a drop in replacement for Markdown

Textile is not Markdown. It is very similar but there are quite a few differences. Please see this textile cheatsheet for the basic syntax., (*7)

I have included an index.textile file to show how to recreate the index content page from the default theme., (*8)

Why use this over Markdown

  • Personal Preference

The Versions

27/12 2014

dev-master

9999999-dev http://philecms.com

Replace the default parser (Markdown) in Phile with the PHP-Textile (https://github.com/textile/php-textile) parser.

  Sources   Download

MIT

The Requires

 

cms content phile