Name

text2html — transform input plain-text to most basic HTML

DESCRIPTION

The filter only replaces double newline with HTML <p> tag, and single newline with <br>.

EXAMPLES

Example: Filter example

[filter text2html]
Perl is a lot of fun!
Interesting tricks with the language can be seen at MJD's 
<a href="http://perl.plover.com/">plover.com</a>.

Programming is an art.
[/filter]

          

NOTES

For more information on Perl Regular Expressions, pattern matching and character classes, see perlre(1).

AVAILABILITY

text2html is available in Interchange versions:

4.6.0-5.9.0 (git-head)

SOURCE

Interchange 5.9.0:

Source: code/Filter/text2html.filter
Lines: 22


# Copyright 2002-2007 Interchange Development Group and others
# Copyright 1996-2002 Red Hat, Inc.
# 
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.  See the LICENSE file for details.
# 
# $Id: text2html.filter,v 1.6 2009-04-15 11:14:59 ton Exp $

CodeDef text2html Filter
CodeDef text2html Description Simple text2html
CodeDef text2html Routine <<EOR
sub {
my $val = shift;
$val =~ s!\r?\n\r?\n!<br$Vend::Xtrailer><br$Vend::Xtrailer>!g;
$val =~ s!\r\r!<br$Vend::Xtrailer><br$Vend::Xtrailer>!g;
$val =~ s!\r?\n!<br$Vend::Xtrailer>!g;
$val =~ s!\r!<br$Vend::Xtrailer>!g;
return $val;
}
EOR

AUTHORS

Interchange Development Group

SEE ALSO

DocBook! Interchange!