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

..03-May-2022-

lib/SVN/Notify/Filter/H26-Jun-2011-9312

t/H26-Jun-2011-13383

Build.PLH A D26-Jun-2011905 2927

ChangesH A D26-Jun-20111.2 KiB2923

MANIFESTH A D26-Jun-2011139 1110

META.jsonH A D26-Jun-20111.5 KiB6059

META.ymlH A D26-Jun-2011953 3332

Makefile.PLH A D26-Jun-2011557 1917

README.mdH A D26-Jun-20111.3 KiB4733

README.md

1SVN/Notify/Filter/Markdown version 0.05
2=======================================
3
4This module filters [SVN::Notify](http://search.cpan.org/dist/SVN-Notify) log
5message output from [Markdown](http://daringfireball.net/projects/markdown/)
6format into HTML. Essentially, this means that if you write your commit log
7messages using Markdown and like to use
8[SVN::Notify::HTML](http://search.cpan.org/perldoc?SVN::Notify::HTML)
9[SVN::Notify::HTML::ColorDiff](http://search.cpan.org/perldoc?SVN::Notify::HTML::ColorDiff)
10to format your commit notifications, you can use this filter to convert the
11Markdown in the log message to HTML.
12
13Installation
14------------
15
16To install this module, type the following:
17
18    perl Build.PL
19    ./Build
20    ./Build test
21    ./Build install
22
23Or, if you don't have Module::Build installed, type the following:
24
25    perl Makefile.PL
26    make
27    make test
28    make install
29
30Dependencies
31
32SVN::Notify:Filter::Markdown has the following dependencies:
33
34* SVN::Notify
35  Sends Subversion activity notification messages.
36
37* Text::Markdown
38  Converts from Markdown to HTML.
39
40Copyright and License
41---------------------
42
43Copyright (c) 2008-2011 David E. Wheeler. Some Rights Reserved.
44
45This module is free software; you can redistribute it and/or modify it under
46the same terms as Perl itself.
47