Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/songmu/p5-text-markdown-slidy


https://github.com/songmu/p5-text-markdown-slidy

Last synced: 2 days ago
JSON representation

Awesome Lists containing this project

README

        

[![Actions Status](https://github.com/Songmu/p5-Text-Markdown-Slidy/workflows/test/badge.svg)](https://github.com/Songmu/p5-Text-Markdown-Slidy/actions) [![Coverage Status](https://img.shields.io/coveralls/Songmu/p5-Text-Markdown-Slidy/main.svg?style=flat)](https://coveralls.io/r/Songmu/p5-Text-Markdown-Slidy?branch=main)
# NAME

Text::Markdown::Slidy - Markdown converter for HTML slide tools

# SYNOPSIS

use Text::Markdown::Slidy;

markdown(<<'MARKDOWN');
Title1
======

## sub title
abcde
fg

Title2
------
hoge
MARKDOWN
#


#

Title1


#

sub title


#
#



abcde
# fg


#

#
#

#

Title2


#
#

hoge


#

# split markdown text to slide sections
my @markdowns_per_section = split_markdown($markdown_text);

# DESCRIPTION

Text::Markdown::Slidy is to convert markdown syntax to HTML slide tools.

# METHODS

## `$md = Text::Markdown::Slidy->new(%opt)`

Constructor.

## `$html_text = $md->markdown($markdown_text)`

# FUNCTIONS

## `$html_text = markdown($markdown_text)`

## `@markdowns_per_section = split_markdown($markdown_text)`

# LICENSE

Copyright (C) Masayuki Matsuki.

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.

# AUTHOR

Masayuki Matsuki