Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/songmu/p5-text-markup-any
https://github.com/songmu/p5-text-markup-any
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/songmu/p5-text-markup-any
- Owner: Songmu
- License: other
- Created: 2012-09-02T14:10:51.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2013-11-23T06:31:17.000Z (almost 11 years ago)
- Last Synced: 2024-10-11T21:09:34.055Z (27 days ago)
- Language: Perl
- Size: 154 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
- License: LICENSE
Awesome Lists containing this project
README
[![Build Status](https://travis-ci.org/Songmu/p5-Text-Markup-Any.png?branch=master)](https://travis-ci.org/Songmu/p5-Text-Markup-Any) [![Coverage Status](https://coveralls.io/repos/Songmu/p5-Text-Markup-Any/badge.png?branch=master)](https://coveralls.io/r/Songmu/p5-Text-Markup-Any?branch=master)
# NAMEText::Markup::Any - Common Lightweight Markup Language Interface
# SYNOPSIS
use Text::Markup::Any;
# OO Interface
my $md = Text::Markup::Any->new('Text::Markdown');
my $html = $md->markup('# hoge'); #hoge
# Functional Interface
my $tx = markupper 'Textile'; # snip 'Text::' in functional inteface.
my $html = $tx->markup('h1. hoge'); #hoge
# DESCRIPTION
Text::Markup::Any is Common Lightweight Markup Language Interface.
Currently supported modules are [Text::Markdown](http://search.cpan.org/perldoc?Text::Markdown), [Text::MultiMarkdown](http://search.cpan.org/perldoc?Text::MultiMarkdown),
[Text::Markdown::Discount](http://search.cpan.org/perldoc?Text::Markdown::Discount), [Text::Markdown::GitHubAPI](http://search.cpan.org/perldoc?Text::Markdown::GitHubAPI),
[Text::Markdown::Hoedown](http://search.cpan.org/perldoc?Text::Markdown::Hoedown), [Text::Xatena](http://search.cpan.org/perldoc?Text::Xatena) and [Text::Textile](http://search.cpan.org/perldoc?Text::Textile).# AUTHOR
Masayuki Matsuki
# SEE ALSO
# LICENSE
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.