![]() |
![]()
| ![]() |
![]()
NAMEPod::WikiDoc - Generate Pod from inline wiki style textVERSIONversion 0.21SYNOPSISIn a source file, Pod format-block style:=begin wikidoc = POD FORMAT-BLOCK STYLE Write documentation with *bold*, ~italic~ or {code} markup. Create a link to [Pod::WikiDoc]. Substitute for user-defined %%KEYWORD%%. Indent for verbatim paragraphs * bullet * point * list 0 sequentially 0 numbered 0 list =end wikidoc In a source file, wikidoc comment-block style: ### = WIKIDOC COMMENT-BLOCK STYLE ### ### Optionally, [Pod::WikiDoc] can extract from ### specially-marked comment blocks Generate Pod from wikidoc, programmatically: use Pod::WikiDoc; my $parser = Pod::WikiDoc->new( { comment_blocks => 1, keywords => { KEYWORD => "foo" }, } ); $parser->filter( { input => "my_module.pm", output => "my_module.pod" } ); Generate Pod from wikidoc, via command line: $ wikidoc -c my_module.pm my_module.pod DESCRIPTIONPod works well, but writing it can be time-consuming and tedious. For example, commonly used layouts like lists require numerous lines of text to make just a couple of simple points. An alternative approach is to write documentation in a wiki-text shorthand (referred to here as wikidoc) and use Pod::WikiDoc to extract it and convert it into its corresponding Pod as a separate ".pod" file.Documentation written in wikidoc may be embedded in Pod format blocks, or, optionally, in specially marked comment blocks. Wikidoc uses simple text-based markup like wiki websites to indicate formatting and links. (See "WIKIDOC MARKUP", below.) Pod::WikiDoc processes text files (or text strings) by extracting both existing Pod and wikidoc, converting the wikidoc to Pod, and then writing the combined document back to a file or standard output. Summary of major features of Pod::WikiDoc:
In addition, Pod::WikiDoc provides a command-line utility, wikidoc, to simplify wikidoc translation. See the Pod::WikiDoc::Cookbook for more detailed usage examples, including how to automate ".pod" generation when using Module::Build. INTERFACE"new"$parser = Pod::WikiDoc->new( \%args ); Constructor for a new Pod::WikiDoc object. It takes a single, optional argument: a hash reference with the following optional keys:
"convert"my $pod_text = $parser->convert( $input_text ); Given a string with valid Pod and/or wikidoc markup, filter/translate it to Pod. This is really just a wrapper around "filter" for working with strings rather than files, and provides similar behavior, including adding a 'Generated by' header. "filter"$parser->filter( \%args ); Filters from an input file for Pod and wikidoc, translating it to Pod and writing it to an output file. The output file will be prefixed with a 'Generated by' comment with the version of Pod::WikiDoc and timestamp, as required by perlpodspec. "filter" takes a single, optional argument: a hash reference with the following optional keys:
"format"my $pod_text = $parser->format( $wiki_text ); Given a string with valid Pod and/or wikidoc markup, filter/translate it to Pod. Unlike "convert", no 'Generated by' comment is added. This function is used internally by Pod::WikiDoc, but is being made available as a public method for users who want more granular control of the translation process or who want to convert wikidoc to Pod for other creative purposes using the Pod::WikiDoc engine. WIKIDOC MARKUPPod::WikiDoc uses a wiki-style text markup, called wikidoc. It is heavily influenced by Kwiki. Like other wiki markup, it has both block and inline elements, which map directly to their Pod equivalents.Block elements include:
Block elements should be separated by a blank line (though Pod::WikiDoc will do the right thing in many cases if you don't). Inline elements include:
All text except that found in verbatim text, code markup or keywords is transformed to convert special Pod characters to Pod escape code markup: E<lt>, E<gt>, E<sol>, E<verbar>. Inline markup can be escaped with a backslash (\). Including a literal backslash requires a double-backslash (\\). HeadersHeaders are indicated with one or more equals signs followed by whitespace in the first column. The number of equals signs indicates the level of the header (the maximum is four). Headers can not span multiple lines.= header level 1 == header level 2 Verbatim textVerbatim text is indicated with leading whitespace in each line of text, just as with Pod.#<--- first column sub verbatim {} Bullet listsBullet lists are indicated with an asterisk in the first column followed by whitespace. Bullet lists can span multiple lines. Lines after the first should not have an asterisk or be indented.* First item in the list * Second item in the list on multiple lines * Third item in the list Numbered listsNumbered lists work just like numbered lists, but with a leading 0 followed by whitespace.0 First item in the list 0 Second item in the list on multiple lines 0 Third item in the list Ordinary paragraphsOrdinary paragraphs consist of one or more lines of text that do not match the criteria of other blocks. Paragraphs are terminated with a empty line.This is an ordinary paragraph that spans multiple lines. Bold markupBold text is indicated by bracketing with asterisks. Bold markup must begin at a whitespace boundary, the start of a line, or the inside of other markup.This shows *bold* text. Italic markupItalic text is indicated by bracketing with tildes. Italic markup must begin at a whitespace boundary, the start of a line, or the inside of other markup.This shows ~italic~ text. Code markupCode (monospaced) text is indicated by bracketing with matched braces. Code markup must begin at a whitespace boundary, the start of a line, or the inside of other markup. Brackets should nest properly with code.This shows {code} text. It can surround text with brackets like this: { $data{ $id } } Link markupLink text is indicated by bracketing with square brackets. As with Pod, link text may include a vertical bar to separate display text from the link itself. Link markup must begin at a whitespace boundary, the start of a line, or the inside of other markup.This is an ordinary [Pod::WikiDoc] link. This is a [way to ~markup~ links|Pod::WikiDoc] with display text Hypertext links look like this: [http://www.google.com/] Escape code markupPod-style escape text is passed through as normal to support international or other unusual characters.This is the euro symbol: E<euro> Keyword markupText surrounded by double-percent signs is treated as a keyword for expansion. The entire expression will be replaced with the value of the keyword from the hash provided when the parser is created with "new()". If the keyword is unknown or the value is undefined, the keyword will be passed through unchanged.This is version %%VERSION%% DIAGNOSTICS
INCOMPATIBILITIES
SUPPORTBugs / Feature RequestsPlease report any bugs or feature requests through the issue tracker at <https://github.com/dagolden/pod-wikidoc/issues>. You will be notified automatically of any progress on your issue.Source CodeThis is open source software. The code repository is available for public review and contribution under the terms of the license.<https://github.com/dagolden/pod-wikidoc> git clone https://github.com/dagolden/pod-wikidoc.git AUTHORDavid A Golden <dagolden@cpan.org>CONTRIBUTORJames E Keenan <jkeenan@cpan.org>COPYRIGHT AND LICENSEThis software is Copyright (c) 2017 by David A Golden.This is free software, licensed under: The Apache License, Version 2.0, January 2004
|