• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

ChangesH A D17-Aug-2001102 85

Highlight.pmH A D17-Aug-200110 KiB396148

MANIFESTH A D28-Sep-200070 98

Makefile.PLH A D17-Aug-2001229 115

READMEH A D17-Aug-20011.7 KiB5935

TODOH A D17-Aug-20010

VERSIONH A D17-Aug-20015 21

test.plH A D17-Aug-20012 KiB9152

README

1
2
3HTML::Highlight - A module to highlight words or patterns in HTML documents
4
5This module provides colour Google-style highlighting of words or
6patterns in HTML documents. This feature is typically used to highlight
7search results. Each specified pattern or word is highlighted using
8a different color.
9
10This module was originaly created to work together with fulltext
11indexing module DBIx::TextIndex, but it can be used independently.
12
13Need for a highlighter that supports wildcards and phrases and takes
14HTML tags into account was my motivation to create the module.
15
16
17    INSTALLATION:
18
19	perl Makefile.PL
20	make
21	make test
22
23	(become root)
24
25	make install
26
27
28    DOCUMENTATION:
29
30	perldoc HTML::Highlight
31
32
33	LICENSE
34
35  Copyright (C) 2000 Tomas Styblo (tripie@cpan.org)
36
37  This module is free software; you can redistribute it and/or modify it
38  under the terms of either:
39
40  a) the GNU General Public License as published by the Free Software
41  Foundation; either version 1, or (at your option) any later version,
42  or
43
44  b) the "Artistic License" which comes with this module.
45
46  This program is distributed in the hope that it will be useful,
47  but WITHOUT ANY WARRANTY; without even the implied warranty of
48  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See either
49  the GNU General Public License or the Artistic License for more details.
50
51  You should have received a copy of the Artistic License with this
52  module, in the file ARTISTIC.  If not, I'll be glad to provide one.
53
54  You should have received a copy of the GNU General Public License
55  along with this program; if not, write to the Free Software
56  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
57  USA
58
59