in reply to Re: Module Text::Autoformat not working
in thread Module Text::Autoformat not working; perlbrew not installing
No worky here; explicit lists & renumber options do not make any difference.
# perl -MText::Autoformat -e 'print $Text::Autoformat::VERSION , "\n"' + ; cat p.pl ; echo ; perl p.pl 1.67
#!/usr/local/bin/perl use warnings; use strict; use Text::Autoformat qw[ autoformat ]; my $in = do { local $/; <DATA> }; my $opts = { 'lists '=> 'number' , 'renumber' => 1 }; printf "# PRE\n%s\n# POST: text , option\n%s\n# POST: option, text\ +n%s\n" , $in , autoformat( $in , $opts ) , autoformat( $opts , $in ) ; __DATA__ 1. Analyze problem 3. Design algorithm 1. Code solution # PRE 1. Analyze problem 3. Design algorithm 1. Code solution # POST: text , option 1. Analyze problem 3. Design algorithm 1. Code solution # POST: option, text 1. Analyze problem 3. Design algorithm 1. Code solution
Pod seems to be a mess. In "Synopsis", syntax is ...
# Configuration... $formatted = autoformat $rawtext, { %options };
... later in "Bulleting and (re-)numbering" section, it is ...
# Don't recognize Roman numerals or alphabetics as list markers. +.. autoformat { lists => 'number, bullet' }, $text;
Addendum: Problems persists with Text::Autoformat 1.72, latest stable version.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Module Text::Autoformat not working
by parv (Parson) on Oct 26, 2015 at 13:42 UTC | |
|
Re^3: Module Text::Autoformat not working
by hippo (Archbishop) on Oct 26, 2015 at 11:42 UTC |