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

..03-May-2022-

lib/Text/H05-Oct-2008-978662

t/H03-May-2022-352216

ChangesH A D05-Oct-2008816 3021

MANIFESTH A D05-Oct-2008345 2624

META.ymlH A D05-Oct-2008354 1210

Makefile.PLH A D04-Sep-2007500 1715

READMEH A D05-Oct-20081.9 KiB7348

README

1Text-WikiCreole
2
3Text::WikiCreole implements the Wiki Creole markup language, version
41.0, as described at http://www.wikicreole.org.  It reads Creole 1.0
5markup and returns XHTML.
6
7In addition to the official Creole 1.0 markup elements, it also supports
8several extensions, such as plugins, superscript, subscript, underline,
9definition lists, indented paragraphs, plugins, etc.
10
11CHANGES:
12    Version 0.07:
13       Bug fix: Italics around links rendered incorrectly.
14
15    Version 0.06:
16       Bug fix: & not converted to & where appropriate
17       Feature addition: creole_barelink() and creole_custombarelinks()
18          functions for customized handling of http://google.com style links
19          courtesy of Bernd Zeimetz
20
21    Version 0.05:
22       Added creole_customlinks() and creole_customimgs()
23
24    Version 0.04:
25       Fixed a bug with creole_parse and undefined input
26
27    Version 0.03:
28       Added <<< alternate plugin >>> syntax
29
30    Version 0.02:
31       Fixed bug parsing plugin blocks
32       Fixed bug with nowiki blocks at end of file
33       Added creole_img for custom image URLs
34
35    Version 0.01: Initial release.
36
37INSTALLATION
38
39To install this module, run the following commands:
40
41    perl Makefile.PL
42    make
43    make test
44    make install
45
46
47SUPPORT AND DOCUMENTATION
48
49After installing, you can find documentation for this module with the perldoc command.
50
51    perldoc Text::WikiCreole
52
53You can also look for information at:
54
55    Search CPAN
56        http://search.cpan.org/dist/Text-WikiCreole
57
58    CPAN Request Tracker:
59        http://rt.cpan.org/NoAuth/Bugs.html?Dist=Text-WikiCreole
60
61    AnnoCPAN, annotated CPAN documentation:
62        http://annocpan.org/dist/Text-WikiCreole
63
64    CPAN Ratings:
65        http://cpanratings.perl.org/d/Text-WikiCreole
66
67COPYRIGHT AND LICENCE
68
69Copyright (C) 2007 Jason Burnett
70
71This program is free software; you can redistribute it and/or modify it
72under the same terms as Perl itself.
73