Skip to content

Instantly share code, notes, and snippets.

@dmalan

dmalan/Gemfile Secret

Created November 24, 2017 17:02
Show Gist options
  • Save dmalan/a034800c08562da301dc57e355ff56e8 to your computer and use it in GitHub Desktop.
Save dmalan/a034800c08562da301dc57e355ff56e8 to your computer and use it in GitHub Desktop.
jekyll-pdf
exclude:
- Gemfile
- Gemfile.lock
plugins:
- jekyll-pdf
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>{{ page.title }}</title>
</head>
<body>
{{ content }}
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>{{ page.title }}</title>
</head>
<body>
{{ content }}
</body>
</html>
layout pdf title
default
true
Foo

Foo

Hello, world.

Bar

Hello, world.

Baz

Hello, world.

source "https://rubygems.org"
gem "jekyll", group: :jekyll_plugins
group :jekyll_plugins do
gem "jekyll-assets"
gem "jekyll-pdf"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment