0.01
No commit activity in last 3 years
No release in over 3 years
This app was meant to compile markdown partials as one document for our sales team using Deckset for Mac
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 3.2.0

Runtime

>= 1.0.1
 Project Readme

Application to compile files as one

This app was meant to compile a single Markdown file by including multiple files to be used by our sales team using Deckset for Mac.

We create sales presentations and such using Deckset. There are a lot of information on those documents that we need to use again and again. Our only solution was to copy and paste those slides to the new presentation each time we started to create one.

With Kisko Suits we can create re-usable slides (for example company intro, CVs, contact information) and include those to a compiled presentation. Kisko Suits will update the master Markdown file everytime an included slide is changed/added/removed.

Read our blog post about Kisko Suits here.

Installation

Everything you need is already installed on every Apple computer. Just run:

gem install kisko-suits

Usage

Create a config file (.suits file) for your presentation:

File name 'my-presentation.md.suits' would cause kisko-suits to create a Markdown file my-presentation.md

my-presentation.md.suits contains normal Markdown content and included portions (using relative paths). For example:

# Presentation #1

$$custom_variables = amazing custom variables
include: introduction.md
include: company/basic_information.md

## Custom extra information

All Markdown formatting **works** and you can use $$custom_variables to save time.

include: project-details.md
include: CVs/antti.md
include: CVs/vesa.md
include: contact_information.md

The included portions will be merged to the document and the end result will be saved as my-presentation.md when you run:

kisko-suits my-presentation.md.suits

Super simple.

If you want to update the output file when any of the included portions in the config are updated, just use the -w switch:

kisko-suits -w my-presentation.md.suits

This makes it fast to work with the files and see the end result in Deckset.

ZSH function

Add this to your .zshrc to use deck my_presentation.md and automatically create the .suits file, open it in atom and Deckset.

function deck {
  local suits_file
  suits_file=($(echo $1 | xargs).suits)
  if [[ ! -e $1 ]] ; then
    touch $1
  fi
  if [[ ! -e $suits_file ]] ; then
    touch $suits_file
  fi
  open -a Deckset $1 && atom $suits_file && kisko-suits -w $suits_file
}

CI Build Status