App-Plog
view release on metacpan or search on metacpan
scripts/plog view on Meta::CPAN
=item * HTML
=item * links to URLS, and other supported by Pod
=back
=item * Asciidoc input
=item * Atom feed
=back
=head2 May be supported at some point
=over 2
=item * syntax hilighting for programming languages
=back
=head2 Probably never supported
=over 2
=item * Answers to blog entries, note that nothing stops you from putting your blog on a git hub and merge answers
=item * xmlrpc, pingback
=item * fancy searching and sorting, ...
=back
=head1 BLOG ENTRIES ORDER
New blog entries or modified blog entries will be placed at the top of the blog as logic dictates but not how most
other blog software do.
If you have blog entries [A, B, C, D], where A is the oldest entry thus displayed at the bottom of your blog, and you modify
I<entry A>, the new blog order will be [B, C, D, A]. The module responsible for the rendering can be overridden allowing you
to have another sorting order.
=head1 EXAMPLES
# add or update a blog entry in the default blog
$> plog add entry_name
# add or update a blog entry in the specified blog
$> plog add --blog_id perl entry_name
# list all the blog entries for the default blog in chronologic order
$> plog ls
# list all the blogs
$> plog ls_blogs
# list all the blog entries for your perl blog
$> plog ls --blog_id perl
# copy resources to the default plog
$> plog copy some_image.png
# generate default blog on standard output
$> plog generate
# generate and put the default blog online
$> plog update
# generate and put the specified blog online
$> plog update --blog_id perl
# take configuration from specified directory (not ~/.plog)
$> plog --configuration_path ./my_configuration_path ...
=head1 EXIT STATUS
0 (zero) if I<plog> could run your command to completion
=head1 AUTHOR
Nadim ibn hamouda el Khemir
CPAN ID: NKH
mailto: nkh@cpan.org
=cut
#----------------------------------------------------------------------------------------
our $VERSION = '0.01' ;
use App::Plog ;
App::Plog::create_blog(@ARGV) ;
exit(0) ;
( run in 1.310 second using v1.01-cache-2.11-cpan-df04353d9ac )