ASCII Presentation
Sublime Text as a presentation tool
Details
Installs
- Total 2K
- Win 1K
- Mac 465
- Linux 266
Oct 7 | Oct 6 | Oct 5 | Oct 4 | Oct 3 | Oct 2 | Oct 1 | Sep 30 | Sep 29 | Sep 28 | Sep 27 | Sep 26 | Sep 25 | Sep 24 | Sep 23 | Sep 22 | Sep 21 | Sep 20 | Sep 19 | Sep 18 | Sep 17 | Sep 16 | Sep 15 | Sep 14 | Sep 13 | Sep 12 | Sep 11 | Sep 10 | Sep 9 | Sep 8 | Sep 7 | Sep 6 | Sep 5 | Sep 4 | Sep 3 | Sep 2 | Sep 1 | Aug 31 | Aug 30 | Aug 29 | Aug 28 | Aug 27 | Aug 26 | Aug 25 | Aug 24 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
ASCII Presentation
Why use Sublime just to create presentations when you can also use it as the presentation tool?
Check out my presentation on browserify as an example.
This package helps you create presentations in a couple ways:
- a syntax utilized to color highlight your presentation
- a few keyboard shortcuts/commands to help create ASCII art and space out “slides”
Syntax
The following syntax is available and will be color highlighted based on your color scheme and the extra colors listed under Installation below. By default, the syntax highlighting works with files with the extension pres
. The examples in the screenshots use a customized version of the Twilight color scheme.
Headings
##
Heading Here
##
Sub-headings
Sub-Heading Here ###
Lists
- a list item
- another item
* a sub item
* another sub item
- a final item
Links
http://sublimetext.com
ASCII terminal
-----------------------------------
|ooo |
|-----------------------------------|
| |
|$ npm install -g testem |
| |
| |
| |
-----------------------------------
Keyboard Shortcuts / Commands
The following are available as keyboard shortcuts and commands in the Command Palette as well as under the Edit menu.
Convert Title to ASCII
Convert the selected text or the word your cursor is on into ASCII art.
The font is configurable in your settings. See available fonts here.
Default shortcut: super + ctrl + c, super + ctrl + t
Convert Heading to ASCII
Convert the selected text or the word your cursor is on into ASCII art.
The font is configurable in your settings. See available fonts here.
Default shortcut: super + ctrl + c, super + ctrl + h
Add Terminal ASCII
Add ASCII art that looks like a Terminal/Command Prompt.
The width and height of the Terminal are configurable in your settings.
Default shortcut: super + ctrl + a, super + ctrl + t
New Slide
Add a set amount of lines to space out two “slides.” The default is 20 lines.
The number of lines is configurable in your settings.
Default shortcut: super + ctrl + n, super + ctrl + s
Installation
1 - Install the Package
Install via Package Control (recommended)
- or -
Clone this repo into your Sublime Text Packages directory.
2 - Add the following to your color scheme:
<dict>
<key>name</key>
<string>ascii_presentation.invisible</string>
<key>scope</key>
<string>ascii_presentation.invisible</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#141414</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>ascii_presentation.close</string>
<key>scope</key>
<string>ascii_presentation.close</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#BE2E2E</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>ascii_presentation.minimize</string>
<key>scope</key>
<string>ascii_presentation.minimize</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#BFA22E</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>ascii_presentation.expand</string>
<key>scope</key>
<string>ascii_presentation.expand</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#70A340</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>ascii_presentation.chrome</string>
<key>scope</key>
<string>ascii_presentation.chrome</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#777</string>
</dict>
</dict>
3 - Update the ascii_presentation.invisible color to match the background of your color scheme. Tweak other colors as desired.
Modification
If you'd like to hack on the syntax definition, edit the ASCIIPresentation.JSON-tmLanguage
file. Check out the syntax definition docs for more info.
Pull requests are welcome!
Credits
The package would not be possible without:
- pyfiglet, the Python port of FIGlet, which provides the ASCII art font conversion
- encouragement from the folks at the Atlanta JavaScript Meetup
License
Copyright © 2013 Chris Breiding
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
See LICENSE for full details.