mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-11-16 06:05:00 -05:00
7bdab0e65c
- Added Guard for file watching - Configs can be automatically reloaded - Static asset changes do not trigger Jekyll build - CommonJS modular js support proved by stich-rb - Javascript is concatenated and uglified - Environment variables toggle uglify and fingerprinting - New Jekyll plugin config_tag - New Jekyll plugin javascript_assets_tag - Added theme specific configurations - Custome Jekyll Guard to the rescue - Install, Generate, Watch, and Preview work with Guard now. - Now configs are no longer tracked by Octopress, only theme defauts are. - Console messages can be colorized. - misc config reorganization and improvements
37 lines
1.5 KiB
YAML
37 lines
1.5 KiB
YAML
---
|
|
# ------------------------ #
|
|
# Jekyll Configuration #
|
|
# ------------------------ #
|
|
|
|
# If publishing to a subdirectory as in http://site.com/project set 'root: /project'
|
|
root: /
|
|
permalink: /:year/:month/:day/:title/
|
|
source: source # source file directory
|
|
destination: public # compiled site directory
|
|
plugins: plugins
|
|
code_dir: downloads/code
|
|
category_dir: categories
|
|
include:
|
|
- .htaccess
|
|
markdown: redcarpet
|
|
redcarpet:
|
|
extensions:
|
|
- no_intra_emphasis
|
|
- strikethrough
|
|
- autolink
|
|
- superscript
|
|
- smart
|
|
pygments: false # Jekyll's default Python Pygments have been replaced by pygments.rb.
|
|
include:
|
|
- .htaccess
|
|
|
|
env: production # affects asset compilation
|
|
post_index_dir: source # directory for your posts index page (if you put your index in source/blog/index.html, set this to 'source/blog')
|
|
stash_dir: _stash # directory to stash posts for speedy generation
|
|
posts_dir: _posts # directory for blog files
|
|
new_post_ext: markdown # default new post file extension when using the new_post task
|
|
new_page_ext: markdown # default new page file extension when using the new_page task
|
|
server_host: 0.0.0.0 # host ip address for preview server
|
|
server_port: 4000 # port for preview server eg. localhost:4000
|
|
timezone: local # default time and date used to local timezone. Vew supported timezones (under TZ column): http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
|