diff --git a/site/docs/extras.md b/site/docs/extras.md index 4e820228..7e72ab8a 100644 --- a/site/docs/extras.md +++ b/site/docs/extras.md @@ -9,86 +9,6 @@ permalink: /docs/extras/ There are a number of (optional) extra features that Jekyll supports that you may want to install, depending on how you plan to use Jekyll. -## Pygments - -If you want syntax highlighting via the `{% raw %}{% highlight %}{% endraw %}` -tag in your posts, you’ll need to install [Pygments](http://pygments.org/). - -### Installing Pygments on OSX - -Mac OS X (Leopard onwards) comes preinstalled with Python, so on just about any -OS X machine you can install Pygments simply by running: - -{% highlight bash %} -$ sudo easy_install Pygments -{% endhighlight %} - -#### Installing Pygments using Homebrew - -Alternatively, you can install Pygments with -[Homebrew](http://mxcl.github.com/homebrew/), an excellent package manager for -OS X: - -{% highlight bash %} -$ brew install python -# export PATH="/usr/local/share/python:${PATH}" -$ pip install pygments -{% endhighlight %} - -
- Homebrew doesn’t symlink the executables for you. For the Homebrew default - Cellar location and Python 2.7, be sure to add `/usr/local/share/python` to - your `PATH`. For more information, check out - the - Homebrew wiki. -
-