tomaj/nette-rte-processor

RTE processor.

2.1.2 2016-09-21 13:29 UTC

This package is not auto-updated.

Last update: 2024-04-13 13:51:56 UTC


README

Build Status Dependency Status

Latest Stable Version Latest Unstable Version License

Requirements

nette-rte-processor requires PHP 5.3.0 or higher.

WARNING: Most of code is from TYPO3 t3lib library! - So it isnt very nice ;-)

Installation

The best way to install nette-rte-processor is using Composer:

$ composer require tomaj/nette-rte-processor

Background

This library is usefull for processing RTE fields from TYPO3 when you need render it to frontend with Nette. Library use code from TYPO3 to convert special marks from RTE to output HTML.

Usage

You can use simple static function

\Tomaj\RTEProcessor\TextFormatter::rteTransform($bodytext)

or create helper for using in templates:

$template->addFilter('rtetransform', function($text) {
	return \Tomaj\RTEProcessor\TextFormatter::rteTransform($text);
});

Repository http://github.com/tomaj/nette-rte-processor.