Skip to content

tomaj/nette-rte-processor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nette RTE processor

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.