From 07270c7cfd94aa1b5cfbbd8b9d2e5aedfe203a0b Mon Sep 17 00:00:00 2001 From: Michael Bishop Date: Fri, 2 Aug 2019 23:32:07 -0400 Subject: [PATCH] docs: improve how to include rouge stylesheets (#7752) Merge pull request 7752 --- docs/_docs/liquid/tags.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/docs/_docs/liquid/tags.md b/docs/_docs/liquid/tags.md index d402a855..d5ee9d63 100644 --- a/docs/_docs/liquid/tags.md +++ b/docs/_docs/liquid/tags.md @@ -78,7 +78,17 @@ end In order for the highlighting to show up, you’ll need to include a highlighting stylesheet. For Pygments or Rouge you can use a stylesheet for Pygments, you -can find an example gallery [here](http://help.farbox.com/pygments.html). +can find an example gallery +[here](https://jwarby.github.io/jekyll-pygments-themes/languages/ruby.html) +or from [its repository](https://github.com/jwarby/jekyll-pygments-themes). + +Copy the CSS file (`native.css` for example) into your css directory and import +the syntax highlighter styles into your `main.css`: + +```css +@import "native.css"; +``` + ## Links