Slate docs were removed from the developer site in april 2024 (commit 5562b4bb19bec49fe7d35d9d60924b83b77865c7) because it was to no longer be public and only shared privately with partners.
If you'd like the docs updated, ask Joe to update it from his local plugshare folder.
Optimizer Prime touched this and to deploy ANY changes to developer.plugshare.com including main website + docs, here are the steps:
Make all changes in dev branch.
Website changes - update the md files in /site.
Slate docs changes - update index.html.md in /source.
After you're done, push your files to github and run ./deploy.sh. and it will automatically compile everything and deploy the files to master branch (which becomes live at developer.plugshare.com)
Alternatively ask Joe to update anything (preferred method).
Note: github rack vulnerability does not affect us.
note: below possibly has nothing to do with it, skip to the bottom of this section with node version and try that first
was getting the following error:
can't find gem bundler (>= 0.a) with executable bundle (Gem::GemNotFoundException)
was thinking the ruby version was wrong from the mac default 2.6 version, so installed rbenv (ruby manager, similar to nvm) so installed the latest 3.2.2
https://github.com/rbenv/rbenv
step by step actions:
# install rbenv with homebrew
brew install rbenv ruby-build
# list latest stable versions:
rbenv install -l
# run this and follow the printed instructions:
rbenv init
# gives instructions to paste something into your PATH via:
nano ~/.zshrc
# while in your project folder, used this to set ruby version locally to this folder only as a test run
rbenv local 3.2.2
# ran deploy script in NEW terminal window
./deploy.sh
here we got different error:
Autoprefixer doesn’t support Node v4.9.1
then I checked nvm and saw I was running version 7 for another project, so I switched to v12
nvm use 12
./deploy.sh
Always checked nvm versions first and see if that was causing the problem..
Slate helps you create beautiful, intelligent, responsive API documentation.
The example above was created with Slate. Check it out at slatedocs.github.io/slate.
-
Clean, intuitive design — With Slate, the description of your API is on the left side of your documentation, and all the code examples are on the right side. Inspired by Stripe's and PayPal's API docs. Slate is responsive, so it looks great on tablets, phones, and even in print.
-
Everything on a single page — Gone are the days when your users had to search through a million pages to find what they wanted. Slate puts the entire documentation on a single page. We haven't sacrificed linkability, though. As you scroll, your browser's hash will update to the nearest header, so linking to a particular point in the documentation is still natural and easy.
-
Slate is just Markdown — When you write docs with Slate, you're just writing Markdown, which makes it simple to edit and understand. Everything is written in Markdown — even the code samples are just Markdown code blocks.
-
Write code samples in multiple languages — If your API has bindings in multiple programming languages, you can easily put in tabs to switch between them. In your document, you'll distinguish different languages by specifying the language name at the top of each code block, just like with GitHub Flavored Markdown.
-
Out-of-the-box syntax highlighting for over 100 languages, no configuration required.
-
Automatic, smoothly scrolling table of contents on the far left of the page. As you scroll, it displays your current position in the document. It's fast, too. We're using Slate at TripIt to build documentation for our new API, where our table of contents has over 180 entries. We've made sure that the performance remains excellent, even for larger documents.
-
Let your users update your documentation for you — By default, your Slate-generated documentation is hosted in a public GitHub repository. Not only does this mean you get free hosting for your docs with GitHub Pages, but it also makes it simple for other developers to make pull requests to your docs if they find typos or other problems. Of course, if you don't want to use GitHub, you're also welcome to host your docs elsewhere.
-
RTL Support Full right-to-left layout for RTL languages such as Arabic, Persian (Farsi), Hebrew etc.
Getting started with Slate is super easy! Simply fork this repository and follow the instructions below. Or, if you'd like to check out what Slate is capable of, take a look at the sample docs.
You're going to need:
- Linux or macOS — Windows may work, but is unsupported.
- Ruby, version 2.3.1 or newer
- Bundler — If Ruby is already installed, but the
bundle
command doesn't work, just rungem install bundler
in a terminal.
- Fork this repository on GitHub.
- Clone your forked repository (not our original one) to your hard drive with
git clone https://github.com/YOURUSERNAME/slate.git
cd slate
- Initialize and start Slate. You can either do this locally, or with Vagrant:
# either run this to run locally
bundle install
bundle exec middleman server
# OR run this to run with vagrant
vagrant up
You can now see the docs at http://localhost:4567. Whoa! That was fast!
Now that Slate is all set up on your machine, you'll probably want to learn more about editing Slate markdown, or how to publish your docs.
If you'd prefer to use Docker, instructions are available in the wiki.
For those who don't have JavaScript runtime or are experiencing JavaScript runtime issues with ExecJS, it is recommended to add the rubyracer gem to your gemfile and run bundle
again.
You can view more in the list on the wiki.
If you've got questions about setup, deploying, special feature implementation in your fork, or just want to chat with the developer, please feel free to start a thread in our Spectrum community!
Found a bug with upstream Slate? Go ahead and submit an issue. And, of course, feel free to submit pull requests with bug fixes or changes to the dev
branch.
Slate was built by Robert Lord while at TripIt. The project is now maintained by Matthew Peveler and Mike Ralphson.
Thanks to the following people who have submitted major pull requests:
Also, thanks to Sauce Labs for sponsoring the development of the responsive styles.