PHP Classes

File: docs/Features/Strip or clean the resulting code.md

Recommend this page to a friend!
  Packages of Rafa Rodriguez   Div PHP Template Engine   docs/Features/Strip or clean the resulting code.md   Download  
File: docs/Features/Strip or clean the resulting code.md
Role: Auxiliary data
Content type: text/markdown
Description: Auxiliary data
Class: Div PHP Template Engine
Template processing engine that replaces tags
Author: By
Last change:
Date: 4 months ago
Size: 350 bytes
 

Contents

Class file image Download

Clean the resulting code of the parser, eliminating double spaces, unnecessary new lines, etc.

Syntax in templates


{strip}
	... some ugly code here ...
{/strip}

Example

index.tpl

{strip}
Hello Jack, ...
	
          ...the previous lines are of more.
{/strip}

Output

Hello Jack, ...
...the previous lines are of more.