Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/syohex/p5-app-termnote
Perl Port of termnote
https://github.com/syohex/p5-app-termnote
Last synced: about 19 hours ago
JSON representation
Perl Port of termnote
- Host: GitHub
- URL: https://github.com/syohex/p5-app-termnote
- Owner: syohex
- License: other
- Created: 2013-07-10T13:37:56.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-07-11T05:25:21.000Z (over 11 years ago)
- Last Synced: 2024-11-09T06:08:38.399Z (about 2 months ago)
- Language: Perl
- Size: 121 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
# NAME
App::TermNote - Application for presentation on terminal
# SYNOPSIS
% termnote.pl presentation.pl
# presentation file is just a perl file like below
[
{
type => 'chapter',
title => 'This is Title',
subtitle => 'This is subtitle',
},
{
type => 'text',
title => 'Why Perl',
content => 'Hello Perl'
},
{
type => 'code',
language => 'perl'
source => '...'
#!perl
use strict;
use warnings;print "hello\n";
...
},
]# DESCRIPTION
App::TermNote provides presentation on terminal. This is inspired
by Ruby's termnote.# LICENSE
Copyright (C) Syohei YOSHIDA.
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.# AUTHOR
Syohei YOSHIDA