Go to file
nitoyon eebb6414bf Fix Post#url escape
Post#url was escaped using CGI.escape.
When file name contains a space character, its url points to
non-existing URL.

For example, when we have a post named '2014-01-02-foo bar.md',
we expect its url to be '/2014/01/02/foo%20bar.html',
but it was actually '/2014/01/02/foo+bar.html'.

We now define Jekyll::URL.escape_path and Jekyll::URL.unescape_path,
and use them to escape and unescape Post#url
2014-03-21 16:57:40 +00:00
bin Have a list of blessed gems to require and load. 2014-03-16 01:18:39 -04:00
docs/jp Trim trailing spaces and convert tabs to spaces. 2014-03-11 07:44:01 +02:00
features Move test dir to inside tmp in this repo. 2014-03-18 23:53:31 -04:00
lib Fix Post#url escape 2014-03-21 16:57:40 +00:00
script Trim trailing spaces and convert tabs to spaces. 2014-03-11 07:44:01 +02:00
site Add jekyll_figure plugin 2014-03-19 22:26:15 -04:00
test Fix Post#url escape 2014-03-21 16:57:40 +00:00
.gitignore Remove duplicate 2013-08-21 23:08:26 +02:00
.travis.yml Add travis_retry to config 2014-03-20 19:26:44 -04:00
CONTRIBUTING.markdown mojombo/jekyll ~> jekyll/jekyll 2013-12-11 17:44:33 -05:00
Gemfile Yarp seems to be eff'd. 2014-01-31 00:22:21 -05:00
History.markdown Update history to reflect merge of #2160 [ci skip] 2014-03-20 23:29:09 -07:00
LICENSE Update license with all years since 2008. 2014-02-17 12:17:25 -05:00
README.markdown Reorder Maruku and Kramdown 2014-02-15 23:12:31 +01:00
Rakefile Use the rake helper for mkdir as this version makes two folders on Windows 2014-03-09 02:51:22 +11:00
cucumber.yml Change default format to pretty and create travis profile 2013-03-04 03:12:31 +01:00
jekyll.gemspec Lock to cucumber v1.3.11 because 1.3.12 is failing like crazy. 2014-03-18 23:53:19 -04:00

README.markdown

Jekyll

Gem Version

Build Status Code Climate Dependency Status Coverage Status

By Tom Preston-Werner, Nick Quaranto, and many awesome contributors!

Jekyll is a simple, blog-aware, static site generator perfect for personal, project, or organization sites. Think of it like a file-based CMS, without all the complexity. Jekyll takes your content, renders Markdown and Liquid templates, and spits out a complete, static website ready to be served by Apache, Nginx or another web server. Jekyll is the engine behind GitHub Pages, which you can use to host sites right from your GitHub repositories.

Philosophy

Jekyll does what you tell it to do — no more, no less. It doesn't try to outsmart users by making bold assumptions, nor does it burden them with needless complexity and configuration. Put simply, Jekyll gets out of your way and allows you to concentrate on what truly matters: your content.

Getting Started

Diving In

Runtime Dependencies

  • Commander: Command-line interface constructor (Ruby)
  • Colorator: Colorizes command line output (Ruby)
  • Classifier: Generating related posts (Ruby)
  • Directory Watcher: Auto-regeneration of sites (Ruby)
  • Kramdown: Default Markdown engine (Ruby)
  • Liquid: Templating system (Ruby)
  • Pygments.rb: Syntax highlighting (Ruby/Python)
  • RedCarpet: Markdown engine (Ruby)
  • Safe YAML: YAML Parser built for security (Ruby)

Developer Dependencies

  • Launchy: Cross-platform file launcher (Ruby)
  • Maruku: Markdown-superset interpreter (Ruby)
  • RDiscount: Discount Markdown Processor (Ruby)
  • RedCloth: Textile support (Ruby)
  • RedGreen: Nicer test output (Ruby)
  • RR: Mocking (Ruby)
  • Shoulda: Test framework (Ruby)
  • SimpleCov: Coverage framework (Ruby)

License

See LICENSE.