Pandex

Pandex is a lightweight ELixir wrapper for Pandoc. Pandex has no dependencies other than pandoc itself. Pandex enables you to convert Markdown, CommonMark, HTML, Latex, json, html to HTML, HTML5, opendocument, rtf, texttile, asciidoc, markdown, json and others. Pandex has no dependencies other than Pandoc itself.

Pandex enables you to perform any combination of the conversion below:

Convert From (any) Convert To (any)
markdown json
markdown_github html
markdown_strict html5
markdown_mmd s5
commonmark slidy
json dzslides
rst docbook
textile man
html opendocument
latex latex
markdown_phpextra beamer
context
texinfo
markdown
markdown_github
markdown_strict
markdown_mmd
markdown_phpextra
commonmark
plain
rst
mediawiki
textile
rtf
org
asciidoc

Usage

Pandex follows the syntax of <format from>_to_<format to> <string>

Examples:

iex> Pandex.markdown_to_html "# Title \n\n## List\n\n- one\n- two\n- three\n"
{:ok, "<h1 id=\"title\">Title</h1>\n<h2 id=\"list\">List</h2>\n<ul>\n<li>one</li>\n<li>two</li>\n<li>three</li>\n</ul>\n"}

iex> Pandex.html_to_commonmark "<h1 id=\"title\">Title</h1>\n<h2 id=\"list\">List</h2>\n<ul>\n<li>one</li>\n<li>two</li>\n<li>three</li>\n</ul>\n"
{:ok, "# Title\n\n## List\n\n* one\n* two\n* three\n\n"}

iex> Pandex.html_to_opendocument "<h1 id=\"title\">Title</h1>\n<h2 id=\"list\">List</h2>\n<ul>\n<li>one</li>\n<li>two</li>\n<li>three</li>\n</ul>\n"
{:ok, "<text:h text:style-name=\"Heading_20_1\" text:outline-level=\"1\">Title</text:h>\n<text:h text:style-name=\"Heading_20_2\" text:outline-level=\"2\">List</text:h>\n<text:list text:style-name=\"L1\">\n  <text:list-item>\n    <text:p text:style-name=\"P1\">one</text:p>\n  </text:list-item>\n  <text:list-item>\n    <text:p text:style-name=\"P1\">two</text:p>\n  </text:list-item>\n  <text:list-item>\n    <text:p text:style-name=\"P1\">three</text:p>\n  </text:list-item>\n</text:list>\n"}

iex> Pandex.commonmark_to_latex "# Title \n\n## List\n\n- one\n- two\n- three\n"
{:ok, "\\section{Title}\n\n\\subsection{List}\n\n\\begin{itemize}\n\\tightlist\n\\item\n  one\n\\item\n  two\n\\item\n  three\n\\end{itemize}\n"}

iex> Pandex.latex_to_html5 "\\section{Title}\n\n\\subsection{List}\n\n\\begin{itemize}\n\\tightlist\n\\item\n  one\n\\item\n  two\n\\item\n  three\n\\end{itemize}\n"
{:ok, "<h1 id=\"title\">Title</h1>\n<h2 id=\"list\">List</h2>\n<ul>\n<li><p>one</p></li>\n<li><p>two</p></li>\n<li><p>three</p></li>\n</ul>\n"}

iex> Pandex.html_to_latex "<h1 id=\"title\">Title</h1>\n<h2 id=\"list\">List</h2>\n<ul>\n<li><p>one</p></li>\n<li><p>two</p></li>\n<li><p>three</p></li>\n</ul>\n"
{:ok, "\\section{Title}\\label{title}\n\n\\subsection{List}\\label{list}\n\n\\begin{itemize}\n\\item\n  one\n\\item\n  two\n\\item\n  three\n\\end{itemize}\n"}

iex> Pandex.latex_to_json "\\section{Title}\\label{title}\n\n\\subsection{List}\\label{list}\n\n\\begin{itemize}\n\\item\n  one\n\\item\n  two\n\\item\n  three\n\\end{itemize}\n"
{:ok, "[{\"unMeta\":{}},[{\"t\":\"Header\",\"c\":[1,[\"title\",[],[]],[{\"t\":\"Str\",\"c\":\"Title\"}]]},{\"t\":\"Header\",\"c\":[2,[\"list\",[],[]],[{\"t\":\"Str\",\"c\":\"List\"}]]},{\"t\":\"BulletList\",\"c\":[[{\"t\":\"Para\",\"c\":[{\"t\":\"Str\",\"c\":\"one\"}]}],[{\"t\":\"Para\",\"c\":[{\"t\":\"Str\",\"c\":\"two\"}]}],[{\"t\":\"Para\",\"c\":[{\"t\":\"Str\",\"c\":\"three\"}]}]]}]]\n"}

iex> Pandex.markdown_to_rst "# Title \n\n## List\n\n- one\n- two\n- three\n"
{:ok, "Title\n=====\n\nList\n----\n\n-  one\n-  two\n-  three\n"}

iex> Pandex.markdown_to_rtf "# Title \n\n## List\n\n- one\n- two\n- three\n"
{:ok, "{\\pard \\ql \\f0 \\sa180 \\li0 \\fi0 \\b \\fs36 Title\\par}\n{\\pard \\ql \\f0 \\sa180 \\li0 \\fi0 \\b \\fs32 List\\par}\n{\\pard \\ql \\f0 \\sa0 \\li360 \\fi-360 \\bullet \\tx360\\tab one\\par}\n{\\pard \\ql \\f0 \\sa0 \\li360 \\fi-360 \\bullet \\tx360\\tab two\\par}\n{\\pard \\ql \\f0 \\sa0 \\li360 \\fi-360 \\bullet \\tx360\\tab three\\sa180\\par}\n"}

iex> Pandex.markdown_to_opendocument "# Title \n\n## List\n\n- one\n- two\n- three\n"
{:ok, "<text:h text:style-name=\"Heading_20_1\" text:outline-level=\"1\">Title</text:h>\n<text:h text:style-name=\"Heading_20_2\" text:outline-level=\"2\">List</text:h>\n<text:list text:style-name=\"L1\">\n  <text:list-item>\n    <text:p text:style-name=\"P1\">one</text:p>\n  </text:list-item>\n  <text:list-item>\n    <text:p text:style-name=\"P1\">two</text:p>\n  </text:list-item>\n  <text:list-item>\n    <text:p text:style-name=\"P1\">three</text:p>\n  </text:list-item>\n</text:list>\n"}

iex> Pandex.commonmark_to_textile "# Title \n\n## List\n\n- one\n- two\n- three\n"
{:ok, "h1. Title\n\nh2. List\n\n* one\n* two\n* three\n\n"}

iex> Pandex.textile_to_markdown_github "h1. Title\n\nh2. List\n\n* one\n* two\n* three\n\n"
{:ok, "Title\n=====\n\nList\n----\n\n-   one\n-   two\n-   three\n\n"}

iex> Pandex.textile_to_markdown_phpextra "h1. Title\n\nh2. List\n\n* one\n* two\n* three\n\n"
{:ok, "Title {#title}\n=====\n\nList {#list}\n----\n\n-   one\n-   two\n-   three\n\n"}

iex> Pandex.textile_to_html5 "h1. Title\n\nh2. List\n\n* one\n* two\n* three\n\n"
{:ok, "<h1 id=\"title\">Title</h1>\n<h2 id=\"list\">List</h2>\n<ul>\n<li>one</li>\n<li>two</li>\n<li>three</li>\n</ul>\n"}

iex> Pandex.textile_to_opendocument "h1. Title\n\nh2. List\n\n* one\n* two\n* three\n\n"
{:ok, "<text:h text:style-name=\"Heading_20_1\" text:outline-level=\"1\">Title</text:h>\n<text:h text:style-name=\"Heading_20_2\" text:outline-level=\"2\">List</text:h>\n<text:list text:style-name=\"L1\">\n  <text:list-item>\n    <text:p text:style-name=\"P1\">one</text:p>\n  </text:list-item>\n  <text:list-item>\n    <text:p text:style-name=\"P1\">two</text:p>\n  </text:list-item>\n  <text:list-item>\n    <text:p text:style-name=\"P1\">three</text:p>\n  </text:list-item>\n</text:list>\n"}

iex> Pandex.textile_to_asciidoc "h1. Title\n\nh2. List\n\n* one\n* two\n* three\n\n"
{:ok, "[[title]]\nTitle\n-----\n\n[[list]]\nList\n~~~~\n\n* one\n* two\n* three\n"}

iex> Pandex.markdown_to_asciidoc "# Title \n\n## List\n\n- one\n- two\n- three\n"
{:ok, "[[title]]\nTitle\n-----\n\n[[list]]\nList\n~~~~\n\n* one\n* two\n* three\n"}

Summary

convert_file works under the hood of all the other functions

convert_string works under the hood of all the other string conversion functions

Functions

commonmark_file_to_asciidoc(file)
commonmark_file_to_beamer(file)
commonmark_file_to_commonmark(file)
commonmark_file_to_context(file)
commonmark_file_to_docbook(file)
commonmark_file_to_dzslides(file)
commonmark_file_to_html(file)
commonmark_file_to_html5(file)
commonmark_file_to_json(file)
commonmark_file_to_latex(file)
commonmark_file_to_man(file)
commonmark_file_to_markdown(file)
commonmark_file_to_markdown_github(file)
commonmark_file_to_markdown_mmd(file)
commonmark_file_to_markdown_phpextra(file)
commonmark_file_to_markdown_strict(file)
commonmark_file_to_mediawiki(file)
commonmark_file_to_opendocument(file)
commonmark_file_to_org(file)
commonmark_file_to_plain(file)
commonmark_file_to_rst(file)
commonmark_file_to_rtf(file)
commonmark_file_to_s5(file)
commonmark_file_to_slidy(file)
commonmark_file_to_texinfo(file)
commonmark_file_to_textile(file)
commonmark_to_asciidoc(string)
commonmark_to_beamer(string)
commonmark_to_commonmark(string)
commonmark_to_context(string)
commonmark_to_docbook(string)
commonmark_to_dzslides(string)
commonmark_to_html(string)
commonmark_to_html5(string)
commonmark_to_json(string)
commonmark_to_latex(string)
commonmark_to_man(string)
commonmark_to_markdown(string)
commonmark_to_markdown_github(string)
commonmark_to_markdown_mmd(string)
commonmark_to_markdown_phpextra(string)
commonmark_to_markdown_strict(string)
commonmark_to_mediawiki(string)
commonmark_to_opendocument(string)
commonmark_to_org(string)
commonmark_to_plain(string)
commonmark_to_rst(string)
commonmark_to_rtf(string)
commonmark_to_s5(string)
commonmark_to_slidy(string)
commonmark_to_texinfo(string)
commonmark_to_textile(string)
convert_file(file, from \\ "markdown", to \\ "html", options \\ [])

convert_file works under the hood of all the other functions.

convert_string(string, from \\ "markdown", to \\ "html", options \\ [])

convert_string works under the hood of all the other string conversion functions.

html_file_to_asciidoc(file)
html_file_to_beamer(file)
html_file_to_commonmark(file)
html_file_to_context(file)
html_file_to_docbook(file)
html_file_to_dzslides(file)
html_file_to_html(file)
html_file_to_html5(file)
html_file_to_json(file)
html_file_to_latex(file)
html_file_to_man(file)
html_file_to_markdown(file)
html_file_to_markdown_github(file)
html_file_to_markdown_mmd(file)
html_file_to_markdown_phpextra(file)
html_file_to_markdown_strict(file)
html_file_to_mediawiki(file)
html_file_to_opendocument(file)
html_file_to_org(file)
html_file_to_plain(file)
html_file_to_rst(file)
html_file_to_rtf(file)
html_file_to_s5(file)
html_file_to_slidy(file)
html_file_to_texinfo(file)
html_file_to_textile(file)
html_to_asciidoc(string)
html_to_beamer(string)
html_to_commonmark(string)
html_to_context(string)
html_to_docbook(string)
html_to_dzslides(string)
html_to_html(string)
html_to_html5(string)
html_to_json(string)
html_to_latex(string)
html_to_man(string)
html_to_markdown(string)
html_to_markdown_github(string)
html_to_markdown_mmd(string)
html_to_markdown_phpextra(string)
html_to_markdown_strict(string)
html_to_mediawiki(string)
html_to_opendocument(string)
html_to_org(string)
html_to_plain(string)
html_to_rst(string)
html_to_rtf(string)
html_to_s5(string)
html_to_slidy(string)
html_to_texinfo(string)
html_to_textile(string)
json_file_to_asciidoc(file)
json_file_to_beamer(file)
json_file_to_commonmark(file)
json_file_to_context(file)
json_file_to_docbook(file)
json_file_to_dzslides(file)
json_file_to_html(file)
json_file_to_html5(file)
json_file_to_json(file)
json_file_to_latex(file)
json_file_to_man(file)
json_file_to_markdown(file)
json_file_to_markdown_github(file)
json_file_to_markdown_mmd(file)
json_file_to_markdown_phpextra(file)
json_file_to_markdown_strict(file)
json_file_to_mediawiki(file)
json_file_to_opendocument(file)
json_file_to_org(file)
json_file_to_plain(file)
json_file_to_rst(file)
json_file_to_rtf(file)
json_file_to_s5(file)
json_file_to_slidy(file)
json_file_to_texinfo(file)
json_file_to_textile(file)
json_to_asciidoc(string)
json_to_beamer(string)
json_to_commonmark(string)
json_to_context(string)
json_to_docbook(string)
json_to_dzslides(string)
json_to_html(string)
json_to_html5(string)
json_to_json(string)
json_to_latex(string)
json_to_man(string)
json_to_markdown(string)
json_to_markdown_github(string)
json_to_markdown_mmd(string)
json_to_markdown_phpextra(string)
json_to_markdown_strict(string)
json_to_mediawiki(string)
json_to_opendocument(string)
json_to_org(string)
json_to_plain(string)
json_to_rst(string)
json_to_rtf(string)
json_to_s5(string)
json_to_slidy(string)
json_to_texinfo(string)
json_to_textile(string)
latex_file_to_asciidoc(file)
latex_file_to_beamer(file)
latex_file_to_commonmark(file)
latex_file_to_context(file)
latex_file_to_docbook(file)
latex_file_to_dzslides(file)
latex_file_to_html(file)
latex_file_to_html5(file)
latex_file_to_json(file)
latex_file_to_latex(file)
latex_file_to_man(file)
latex_file_to_markdown(file)
latex_file_to_markdown_github(file)
latex_file_to_markdown_mmd(file)
latex_file_to_markdown_phpextra(file)
latex_file_to_markdown_strict(file)
latex_file_to_mediawiki(file)
latex_file_to_opendocument(file)
latex_file_to_org(file)
latex_file_to_plain(file)
latex_file_to_rst(file)
latex_file_to_rtf(file)
latex_file_to_s5(file)
latex_file_to_slidy(file)
latex_file_to_texinfo(file)
latex_file_to_textile(file)
latex_to_asciidoc(string)
latex_to_beamer(string)
latex_to_commonmark(string)
latex_to_context(string)
latex_to_docbook(string)
latex_to_dzslides(string)
latex_to_html(string)
latex_to_html5(string)
latex_to_json(string)
latex_to_latex(string)
latex_to_man(string)
latex_to_markdown(string)
latex_to_markdown_github(string)
latex_to_markdown_mmd(string)
latex_to_markdown_phpextra(string)
latex_to_markdown_strict(string)
latex_to_mediawiki(string)
latex_to_opendocument(string)
latex_to_org(string)
latex_to_plain(string)
latex_to_rst(string)
latex_to_rtf(string)
latex_to_s5(string)
latex_to_slidy(string)
latex_to_texinfo(string)
latex_to_textile(string)
markdown_file_to_asciidoc(file)
markdown_file_to_beamer(file)
markdown_file_to_commonmark(file)
markdown_file_to_context(file)
markdown_file_to_docbook(file)
markdown_file_to_dzslides(file)
markdown_file_to_html(file)
markdown_file_to_html5(file)
markdown_file_to_json(file)
markdown_file_to_latex(file)
markdown_file_to_man(file)
markdown_file_to_markdown(file)
markdown_file_to_markdown_github(file)
markdown_file_to_markdown_mmd(file)
markdown_file_to_markdown_phpextra(file)
markdown_file_to_markdown_strict(file)
markdown_file_to_mediawiki(file)
markdown_file_to_opendocument(file)
markdown_file_to_org(file)
markdown_file_to_plain(file)
markdown_file_to_rst(file)
markdown_file_to_rtf(file)
markdown_file_to_s5(file)
markdown_file_to_slidy(file)
markdown_file_to_texinfo(file)
markdown_file_to_textile(file)
markdown_github_file_to_asciidoc(file)
markdown_github_file_to_beamer(file)
markdown_github_file_to_commonmark(file)
markdown_github_file_to_context(file)
markdown_github_file_to_docbook(file)
markdown_github_file_to_dzslides(file)
markdown_github_file_to_html(file)
markdown_github_file_to_html5(file)
markdown_github_file_to_json(file)
markdown_github_file_to_latex(file)
markdown_github_file_to_man(file)
markdown_github_file_to_markdown(file)
markdown_github_file_to_markdown_github(file)
markdown_github_file_to_markdown_mmd(file)
markdown_github_file_to_markdown_phpextra(file)
markdown_github_file_to_markdown_strict(file)
markdown_github_file_to_mediawiki(file)
markdown_github_file_to_opendocument(file)
markdown_github_file_to_org(file)
markdown_github_file_to_plain(file)
markdown_github_file_to_rst(file)
markdown_github_file_to_rtf(file)
markdown_github_file_to_s5(file)
markdown_github_file_to_slidy(file)
markdown_github_file_to_texinfo(file)
markdown_github_file_to_textile(file)
markdown_github_to_asciidoc(string)
markdown_github_to_beamer(string)
markdown_github_to_commonmark(string)
markdown_github_to_context(string)
markdown_github_to_docbook(string)
markdown_github_to_dzslides(string)
markdown_github_to_html(string)
markdown_github_to_html5(string)
markdown_github_to_json(string)
markdown_github_to_latex(string)
markdown_github_to_man(string)
markdown_github_to_markdown(string)
markdown_github_to_markdown_github(string)
markdown_github_to_markdown_mmd(string)
markdown_github_to_markdown_phpextra(string)
markdown_github_to_markdown_strict(string)
markdown_github_to_mediawiki(string)
markdown_github_to_opendocument(string)
markdown_github_to_org(string)
markdown_github_to_plain(string)
markdown_github_to_rst(string)
markdown_github_to_rtf(string)
markdown_github_to_s5(string)
markdown_github_to_slidy(string)
markdown_github_to_texinfo(string)
markdown_github_to_textile(string)
markdown_mmd_file_to_asciidoc(file)
markdown_mmd_file_to_beamer(file)
markdown_mmd_file_to_commonmark(file)
markdown_mmd_file_to_context(file)
markdown_mmd_file_to_docbook(file)
markdown_mmd_file_to_dzslides(file)
markdown_mmd_file_to_html(file)
markdown_mmd_file_to_html5(file)
markdown_mmd_file_to_json(file)
markdown_mmd_file_to_latex(file)
markdown_mmd_file_to_man(file)
markdown_mmd_file_to_markdown(file)
markdown_mmd_file_to_markdown_github(file)
markdown_mmd_file_to_markdown_mmd(file)
markdown_mmd_file_to_markdown_phpextra(file)
markdown_mmd_file_to_markdown_strict(file)
markdown_mmd_file_to_mediawiki(file)
markdown_mmd_file_to_opendocument(file)
markdown_mmd_file_to_org(file)
markdown_mmd_file_to_plain(file)
markdown_mmd_file_to_rst(file)
markdown_mmd_file_to_rtf(file)
markdown_mmd_file_to_s5(file)
markdown_mmd_file_to_slidy(file)
markdown_mmd_file_to_texinfo(file)
markdown_mmd_file_to_textile(file)
markdown_mmd_to_asciidoc(string)
markdown_mmd_to_beamer(string)
markdown_mmd_to_commonmark(string)
markdown_mmd_to_context(string)
markdown_mmd_to_docbook(string)
markdown_mmd_to_dzslides(string)
markdown_mmd_to_html(string)
markdown_mmd_to_html5(string)
markdown_mmd_to_json(string)
markdown_mmd_to_latex(string)
markdown_mmd_to_man(string)
markdown_mmd_to_markdown(string)
markdown_mmd_to_markdown_github(string)
markdown_mmd_to_markdown_mmd(string)
markdown_mmd_to_markdown_phpextra(string)
markdown_mmd_to_markdown_strict(string)
markdown_mmd_to_mediawiki(string)
markdown_mmd_to_opendocument(string)
markdown_mmd_to_org(string)
markdown_mmd_to_plain(string)
markdown_mmd_to_rst(string)
markdown_mmd_to_rtf(string)
markdown_mmd_to_s5(string)
markdown_mmd_to_slidy(string)
markdown_mmd_to_texinfo(string)
markdown_mmd_to_textile(string)
markdown_phpextra_file_to_asciidoc(file)
markdown_phpextra_file_to_beamer(file)
markdown_phpextra_file_to_commonmark(file)
markdown_phpextra_file_to_context(file)
markdown_phpextra_file_to_docbook(file)
markdown_phpextra_file_to_dzslides(file)
markdown_phpextra_file_to_html(file)
markdown_phpextra_file_to_html5(file)
markdown_phpextra_file_to_json(file)
markdown_phpextra_file_to_latex(file)
markdown_phpextra_file_to_man(file)
markdown_phpextra_file_to_markdown(file)
markdown_phpextra_file_to_markdown_github(file)
markdown_phpextra_file_to_markdown_mmd(file)
markdown_phpextra_file_to_markdown_phpextra(file)
markdown_phpextra_file_to_markdown_strict(file)
markdown_phpextra_file_to_mediawiki(file)
markdown_phpextra_file_to_opendocument(file)
markdown_phpextra_file_to_org(file)
markdown_phpextra_file_to_plain(file)
markdown_phpextra_file_to_rst(file)
markdown_phpextra_file_to_rtf(file)
markdown_phpextra_file_to_s5(file)
markdown_phpextra_file_to_slidy(file)
markdown_phpextra_file_to_texinfo(file)
markdown_phpextra_file_to_textile(file)
markdown_phpextra_to_asciidoc(string)
markdown_phpextra_to_beamer(string)
markdown_phpextra_to_commonmark(string)
markdown_phpextra_to_context(string)
markdown_phpextra_to_docbook(string)
markdown_phpextra_to_dzslides(string)
markdown_phpextra_to_html(string)
markdown_phpextra_to_html5(string)
markdown_phpextra_to_json(string)
markdown_phpextra_to_latex(string)
markdown_phpextra_to_man(string)
markdown_phpextra_to_markdown(string)
markdown_phpextra_to_markdown_github(string)
markdown_phpextra_to_markdown_mmd(string)
markdown_phpextra_to_markdown_phpextra(string)
markdown_phpextra_to_markdown_strict(string)
markdown_phpextra_to_mediawiki(string)
markdown_phpextra_to_opendocument(string)
markdown_phpextra_to_org(string)
markdown_phpextra_to_plain(string)
markdown_phpextra_to_rst(string)
markdown_phpextra_to_rtf(string)
markdown_phpextra_to_s5(string)
markdown_phpextra_to_slidy(string)
markdown_phpextra_to_texinfo(string)
markdown_phpextra_to_textile(string)
markdown_strict_file_to_asciidoc(file)
markdown_strict_file_to_beamer(file)
markdown_strict_file_to_commonmark(file)
markdown_strict_file_to_context(file)
markdown_strict_file_to_docbook(file)
markdown_strict_file_to_dzslides(file)
markdown_strict_file_to_html(file)
markdown_strict_file_to_html5(file)
markdown_strict_file_to_json(file)
markdown_strict_file_to_latex(file)
markdown_strict_file_to_man(file)
markdown_strict_file_to_markdown(file)
markdown_strict_file_to_markdown_github(file)
markdown_strict_file_to_markdown_mmd(file)
markdown_strict_file_to_markdown_phpextra(file)
markdown_strict_file_to_markdown_strict(file)
markdown_strict_file_to_mediawiki(file)
markdown_strict_file_to_opendocument(file)
markdown_strict_file_to_org(file)
markdown_strict_file_to_plain(file)
markdown_strict_file_to_rst(file)
markdown_strict_file_to_rtf(file)
markdown_strict_file_to_s5(file)
markdown_strict_file_to_slidy(file)
markdown_strict_file_to_texinfo(file)
markdown_strict_file_to_textile(file)
markdown_strict_to_asciidoc(string)
markdown_strict_to_beamer(string)
markdown_strict_to_commonmark(string)
markdown_strict_to_context(string)
markdown_strict_to_docbook(string)
markdown_strict_to_dzslides(string)
markdown_strict_to_html(string)
markdown_strict_to_html5(string)
markdown_strict_to_json(string)
markdown_strict_to_latex(string)
markdown_strict_to_man(string)
markdown_strict_to_markdown(string)
markdown_strict_to_markdown_github(string)
markdown_strict_to_markdown_mmd(string)
markdown_strict_to_markdown_phpextra(string)
markdown_strict_to_markdown_strict(string)
markdown_strict_to_mediawiki(string)
markdown_strict_to_opendocument(string)
markdown_strict_to_org(string)
markdown_strict_to_plain(string)
markdown_strict_to_rst(string)
markdown_strict_to_rtf(string)
markdown_strict_to_s5(string)
markdown_strict_to_slidy(string)
markdown_strict_to_texinfo(string)
markdown_strict_to_textile(string)
markdown_to_asciidoc(string)
markdown_to_beamer(string)
markdown_to_commonmark(string)
markdown_to_context(string)
markdown_to_docbook(string)
markdown_to_dzslides(string)
markdown_to_html(string)
markdown_to_html5(string)
markdown_to_json(string)
markdown_to_latex(string)
markdown_to_man(string)
markdown_to_markdown(string)
markdown_to_markdown_github(string)
markdown_to_markdown_mmd(string)
markdown_to_markdown_phpextra(string)
markdown_to_markdown_strict(string)
markdown_to_mediawiki(string)
markdown_to_opendocument(string)
markdown_to_org(string)
markdown_to_plain(string)
markdown_to_rst(string)
markdown_to_rtf(string)
markdown_to_s5(string)
markdown_to_slidy(string)
markdown_to_texinfo(string)
markdown_to_textile(string)
rst_file_to_asciidoc(file)
rst_file_to_beamer(file)
rst_file_to_commonmark(file)
rst_file_to_context(file)
rst_file_to_docbook(file)
rst_file_to_dzslides(file)
rst_file_to_html(file)
rst_file_to_html5(file)
rst_file_to_json(file)
rst_file_to_latex(file)
rst_file_to_man(file)
rst_file_to_markdown(file)
rst_file_to_markdown_github(file)
rst_file_to_markdown_mmd(file)
rst_file_to_markdown_phpextra(file)
rst_file_to_markdown_strict(file)
rst_file_to_mediawiki(file)
rst_file_to_opendocument(file)
rst_file_to_org(file)
rst_file_to_plain(file)
rst_file_to_rst(file)
rst_file_to_rtf(file)
rst_file_to_s5(file)
rst_file_to_slidy(file)
rst_file_to_texinfo(file)
rst_file_to_textile(file)
rst_to_asciidoc(string)
rst_to_beamer(string)
rst_to_commonmark(string)
rst_to_context(string)
rst_to_docbook(string)
rst_to_dzslides(string)
rst_to_html(string)
rst_to_html5(string)
rst_to_json(string)
rst_to_latex(string)
rst_to_man(string)
rst_to_markdown(string)
rst_to_markdown_github(string)
rst_to_markdown_mmd(string)
rst_to_markdown_phpextra(string)
rst_to_markdown_strict(string)
rst_to_mediawiki(string)
rst_to_opendocument(string)
rst_to_org(string)
rst_to_plain(string)
rst_to_rst(string)
rst_to_rtf(string)
rst_to_s5(string)
rst_to_slidy(string)
rst_to_texinfo(string)
rst_to_textile(string)
textile_file_to_asciidoc(file)
textile_file_to_beamer(file)
textile_file_to_commonmark(file)
textile_file_to_context(file)
textile_file_to_docbook(file)
textile_file_to_dzslides(file)
textile_file_to_html(file)
textile_file_to_html5(file)
textile_file_to_json(file)
textile_file_to_latex(file)
textile_file_to_man(file)
textile_file_to_markdown(file)
textile_file_to_markdown_github(file)
textile_file_to_markdown_mmd(file)
textile_file_to_markdown_phpextra(file)
textile_file_to_markdown_strict(file)
textile_file_to_mediawiki(file)
textile_file_to_opendocument(file)
textile_file_to_org(file)
textile_file_to_plain(file)
textile_file_to_rst(file)
textile_file_to_rtf(file)
textile_file_to_s5(file)
textile_file_to_slidy(file)
textile_file_to_texinfo(file)
textile_file_to_textile(file)
textile_to_asciidoc(string)
textile_to_beamer(string)
textile_to_commonmark(string)
textile_to_context(string)
textile_to_docbook(string)
textile_to_dzslides(string)
textile_to_html(string)
textile_to_html5(string)
textile_to_json(string)
textile_to_latex(string)
textile_to_man(string)
textile_to_markdown(string)
textile_to_markdown_github(string)
textile_to_markdown_mmd(string)
textile_to_markdown_phpextra(string)
textile_to_markdown_strict(string)
textile_to_mediawiki(string)
textile_to_opendocument(string)
textile_to_org(string)
textile_to_plain(string)
textile_to_rst(string)
textile_to_rtf(string)
textile_to_s5(string)
textile_to_slidy(string)
textile_to_texinfo(string)
textile_to_textile(string)