All Projects → tslide → Tslide

tslide / Tslide

Licence: mit
Terminal SlideDeck, supporting markdown.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Tslide

Reveal Ck
Create slides with ruby (and usually in markdown)
Stars: ✭ 202 (+2.02%)
Mutual labels:  cli, slides, presentation, markdown
Marp Cli
A CLI interface for Marp and Marpit based converters
Stars: ✭ 606 (+206.06%)
Mutual labels:  cli, slides, presentation, markdown
Remarker
▶️ Remark cli
Stars: ✭ 132 (-33.33%)
Mutual labels:  cli, slides, presentation, markdown
Backslide
💦 CLI tool for making HTML presentations with Remark.js using Markdown
Stars: ✭ 679 (+242.93%)
Mutual labels:  cli, slides, presentation, markdown
Go Termd
Package termd provides terminal markdown rendering, with code block syntax highlighting support.
Stars: ✭ 223 (+12.63%)
Mutual labels:  cli, terminal, markdown
Mandown
man-page inspired Markdown viewer
Stars: ✭ 173 (-12.63%)
Mutual labels:  cli, terminal, markdown
Marpit
The skinny framework for creating slide deck from Markdown
Stars: ✭ 364 (+83.84%)
Mutual labels:  slides, presentation, markdown
Lookatme
An interactive, terminal-based markdown presenter
Stars: ✭ 392 (+97.98%)
Mutual labels:  terminal, slides, markdown
Fusuma
✍️Fusuma makes slides with Markdown easily.
Stars: ✭ 5,033 (+2441.92%)
Mutual labels:  slides, presentation, markdown
Code Surfer
Rad code slides <🏄/>
Stars: ✭ 5,477 (+2666.16%)
Mutual labels:  slides, presentation, markdown
Nodeppt
This is probably the best web presentation tool so far!
Stars: ✭ 9,589 (+4742.93%)
Mutual labels:  slides, presentation, markdown
Termd
Render markdown in the terminal
Stars: ✭ 32 (-83.84%)
Mutual labels:  cli, terminal, markdown
Mdx Deck
♠️ React MDX-based presentation decks
Stars: ✭ 10,487 (+5196.46%)
Mutual labels:  slides, presentation, markdown
Marp Core
The core of Marp converter
Stars: ✭ 224 (+13.13%)
Mutual labels:  slides, presentation, markdown
Tty Markdown
Convert a markdown document or text into a terminal friendly output.
Stars: ✭ 275 (+38.89%)
Mutual labels:  cli, terminal, markdown
Marp
The entrance repository of Markdown presentation ecosystem
Stars: ✭ 3,378 (+1606.06%)
Mutual labels:  slides, presentation, markdown
Patat
Terminal-based presentations using Pandoc
Stars: ✭ 1,725 (+771.21%)
Mutual labels:  slides, presentation, markdown
Kittik
Create slides in TypeScript and present them in the terminal using ASCII only!
Stars: ✭ 147 (-25.76%)
Mutual labels:  terminal, slides, presentation
Cash Cli
💰💰 Convert currency rates directly from your terminal!
Stars: ✭ 168 (-15.15%)
Mutual labels:  cli, terminal
Presa
🎞 Make stylish presentations in React, powered by styled-components
Stars: ✭ 169 (-14.65%)
Mutual labels:  slides, presentation

tslide

Terminal SlideDeck (for backend devs)


Controls:

  • Left, Right, or HJKL, Page Up, Page Down: change slide.
  • Ctrl-C or Esc : exit

You can alternatively use a presenter. tslide works with the Logitech R800 and R400 out of the box.


Usage

tslide README.markdown

each slide is a section of a markdown document, separated a line with --- (markdown for horizontal rule <hr>) you will notice that this README.md is a valid tslide markdown presentation.


crude js syntax highlighting

# tslide

## Code

‘‘‘js
function fibonacci (n) {
  return n < 2 ? n : fibonacci(n - 1) + fibonacci(n - 2)
}
‘‘‘


Demo Code

This feature is on by default. Disable via --no-highlight.


images

iTerm 2 users can take advantage of its inline image feature and use images in your slides.

# tslide

## Images

![pizza](pizza.png)

There's nothing a pizza can't fix.


Demo Images

This feature is on by default. Disable via --no-images.


emoji

Most terminals can print unicode emoji, and others can print system bitmap emoji like macosx.

# tslide

## Emoji

✨

Magic!


Why?

I initially wrote this 2 hours before a talk I had to give. since then, I have given many presentations with it, and received a number of contributions that has made tslide actually pretty good,


thanks to

for all the pull requests!


cool links

  • xslide a tslide compatible presenter in the browser.

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].