Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/songmu/p5-text-markdown-slidy
https://github.com/songmu/p5-text-markdown-slidy
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/songmu/p5-text-markdown-slidy
- Owner: Songmu
- License: other
- Created: 2013-08-16T16:44:02.000Z (about 11 years ago)
- Default Branch: main
- Last Pushed: 2022-06-14T11:01:29.000Z (over 2 years ago)
- Last Synced: 2024-10-11T21:09:34.201Z (27 days ago)
- Language: Perl
- Size: 31.3 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
- License: LICENSE
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)
# NAMEText::Markdown::Slidy - Markdown converter for HTML slide tools
# SYNOPSIS
use Text::Markdown::Slidy;
markdown(<<'MARKDOWN');
Title1
======## sub title
abcde
fgTitle2
------
hoge
MARKDOWN
#
#
## 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