File: control

package info (click to toggle)
libtext-mediawikiformat-perl 1.04-2
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 232 kB
  • ctags: 46
  • sloc: perl: 1,631; makefile: 2
file content (50 lines) | stat: -rw-r--r-- 2,425 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
Source: libtext-mediawikiformat-perl
Section: perl
Priority: optional
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Stefan Hornburg (Racke) <racke@linuxia.de>,
           gregor herrmann <gregoa@debian.org>,
           Lucas Kanashiro <kanashiro.duarte@gmail.com>,
           Axel Beckert <abe@debian.org>
Build-Depends: debhelper (>= 9)
Build-Depends-Indep: libcgi-pm-perl,
                     libhtml-parser-perl,
                     libhtml-tagset-perl,
                     libtest-nowarnings-perl,
                     libtest-warn-perl,
                     liburi-perl,
                     perl
Standards-Version: 3.9.6
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libtext-mediawikiformat-perl.git
Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libtext-mediawikiformat-perl.git
Homepage: https://metacpan.org/release/Text-MediawikiFormat
Testsuite: autopkgtest-pkg-perl

Package: libtext-mediawikiformat-perl
Architecture: all
Depends: libcgi-pm-perl,
         libhtml-parser-perl,
         libhtml-tagset-perl,
         liburi-perl,
         ${misc:Depends},
         ${perl:Depends}
Description: module that converts Mediawiki markup into other text formats
 Wikipedia and its sister projects use the PHP Mediawiki to format
 their pages. Text::MediawikiFormat attempts to duplicate the Mediawiki
 formatting rules. Those formatting rules can be simple and easy to use, while
 providing more advanced options for the power user. They are also easy to
 translate into other, more complicated markup languages with this module. It
 creates HTML by default, but could produce valid POD, DocBook, XML, or any
 other format imaginable.
 .
 The most important function is Text::MediawikiFormat::format(). It is not
 exported by default, but will be exported as wikiformat() if any options at
 all are passed to the exporter, unless the name is overridden explicitly. See
 "EXPORT" for more information.
 .
 It should be noted that this module is written as a drop in replacement for
 Text::WikiMarkup that expands on that modules functionality and provides a
 default rule set that may be used to format text like the PHP Mediawiki. It
 is also well to note early that if you just want a Mediawiki clone (you don't
 need to customize it heavily and you want integration with a back end
 database), you should look at Wiki::Toolkit::Formatter::Mediawiki.