Changeset 12704 for docs/Perl6/Perl5

Show
Ignore:
Timestamp:
08/26/06 04:28:46 (2 years ago)
Author:
markstos
Message:

Add mention of kwid and Documentation.pod (S26) to Differences.pod

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • docs/Perl6/Perl5/Differences.pod

    r12677 r12704  
    215215=cut  
    216216 
     217#S26  
     218 
     219=head1 Documentation 
     220 
     221You now use <em>kwid</em> for documentation instead of POD. Kwid 
     222is a wiki-like syntax that is easy to write, and pleasant to read directly. 
     223 
     224Here is a side-by-side comparison of some of the major features of Pod and 
     225Kwid: 
     226 
     227     =head1 Big Thing                    = Big Thing 
     228 
     229     =head4 Small Thing                  ==== Small Thing 
     230 
     231     A paragraph of                      A paragraph of 
     232     plain text.                         plain text. 
     233 
     234         # verbatim                          # verbatim 
     235         sub v {                             sub v { 
     236             shift;                              shift; 
     237         }                                   } 
     238 
     239 
     240     =item * foo                         * foo 
     241     =item * bar                         * bar 
     242     =item2 N<> barber                   ++ barber 
     243     =item2 N<> bard                     ++ bard 
     244 
     245 
     246     Something B<strong>!                Something *strong*! 
     247 
     248     Something I<emphatic>!              Something /emphatic/! 
     249 
     250     Some code C<E = M * C ^ 2>!         Some code `E = M * C ^ 2`! 
     251 
     252     Some V<B<escaped>> markup           Some \*escaped\* markup 
     253 
     254     =begin Section_type                 .Section_type 
     255 
     256     =end Section_type                   !Section_type 
     257 
     258     =for Section_type                   :Section_type 
     259 
     260See L<S26> for details. 
     261 
     262=cut  
     263 
    217264#S29 
    218265