Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

mojomojo::formatter::markdown(3pm) [debian man page]

MojoMojo::Formatter::Markdown(3pm)			User Contributed Perl Documentation			MojoMojo::Formatter::Markdown(3pm)

NAME
MojoMojo::Formatter::Markdown - MultiMarkdown formatting for your content. MultiMarkdown is an extension of Markdown, adding support for tables, footnotes, bibliography, automatic cross-references, glossaries, appendices, definition lists, math syntax, anchor and image attributes, and document metadata. Markdown syntax: <http://daringfireball.net/projects/markdown/syntax> MultiMarkdown syntax: <http://fletcherpenney.net/multimarkdown/users_guide/multimarkdown_syntax_guide/> DESCRIPTION
This formatter processes content using Text::MultiMarkdown This is a syntax for writing human-friendly formatted text. METHODS
main_format_content Calls the formatter. Takes a ref to the content as well as the context object. Note that this is different from the format_content method of non-main formatters. This is because we don't want all main formatters to be called when iterating over pluggable modules in MojoMojo::Schema::ResultSet::Content::format_content. "main_format_content" will only be called by <MojoMojo::Formatter::Main>. Note that Text::Markdown ensures that the output always ends with one newline. The fact that multiple newlines are collapsed into one makese sense, because this is the behavior of HTML towards whispace. The fact that there's always a newline at the end makes sense again, given that the output will always be nested in a block-level element, be it a "<p>" (most often), "<table>", or "<div>" (when passing HTML through). SEE ALSO
MojoMojo, Module::Pluggable::Ordered, Text::MultiMarkdown AUTHORS
Marcus Ramberg <mramberg@cpan.org> LICENSE
This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2010-04-07 MojoMojo::Formatter::Markdown(3pm)

Check Out this Related Man Page

MojoMojo::Formatter::WikipediaLink(3pm) 		User Contributed Perl Documentation		   MojoMojo::Formatter::WikipediaLink(3pm)

NAME
MojoMojo::Formatter::WikipediaLink - Linked Wikipedia by writing {{wikipedia:<lang> <word>}} DESCRIPTION
Normally, to hyperlink to the Wikipedia, you'd write: [wikipedia Hello](http://en.wikipedia.org/wiki/Hello) This plugin lets you write just {{wikipedia Hello}} not just Link to Wikipedia in English page, you can use many languages {{wikipedia:ja a~XXa~XXa~XXa~XXa~XX}} {{wikipedia:fr Salut}} Actually, if you wrote this without a language ex.{{wikipedia Foo}}, select location of Wikipedia Link is getting default-language setting of MojoMojo. METHODS
format_content_order The WikipediaLink formatter has no special requirements in terms of the order it gets run in, so it has a priority of 17. format_content Calls the formatter. Takes a ref to the content as well as the context object. process Here the actual formatting is done. SEE ALSO
MojoMojo and Module::Pluggable::Ordered. AUTHORS
Dai Okabayashi, "bayashi at cpan . org" LICENSE
This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2010-05-23 MojoMojo::Formatter::WikipediaLink(3pm)
Man Page