|
1 |
| -# Where things are |
2 |
| -source : . |
3 |
| -destination : ./_site |
4 |
| -collections_dir : . |
5 |
| -plugins_dir : _plugins # takes an array of strings and loads plugins in that order |
6 |
| -layouts_dir : _layouts |
7 |
| -data_dir : _data |
8 |
| -includes_dir : _includes |
9 |
| -sass: |
10 |
| - sass_dir: _sass |
11 |
| -collections: |
12 |
| - posts: |
13 |
| - output : true |
14 |
| - |
15 |
| -# Handling Reading |
16 |
| -safe : false |
17 |
| -include : [".htaccess"] |
18 |
| -exclude : ["Gemfile", "Gemfile.lock", "node_modules", "vendor/bundle/", "vendor/cache/", "vendor/gems/", "vendor/ruby/"] |
19 |
| -keep_files : [".git", ".svn"] |
20 |
| -encoding : "utf-8" |
21 |
| -markdown_ext : "markdown,mkdown,mkdn,mkd,md" |
22 |
| -strict_front_matter : false |
23 |
| - |
24 |
| -# Filtering Content |
25 |
| -show_drafts : null |
26 |
| -limit_posts : 0 |
27 |
| -future : false |
28 |
| -unpublished : false |
29 |
| - |
30 |
| -# Plugins |
31 |
| -whitelist : [] |
32 |
| -plugins : [] |
33 |
| - |
34 |
| -# Conversion |
35 |
| -markdown : GFM |
36 |
| -highlighter : rouge |
37 |
| -lsi : false |
38 |
| -excerpt_separator : "\n\n" |
39 |
| -incremental : false |
40 |
| - |
41 |
| -# Serving |
42 |
| -detach : false |
43 |
| -port : 4000 |
44 |
| -host : 127.0.0.1 |
45 |
| -baseurl : "" # does not include hostname |
46 |
| -show_dir_listing : false |
47 |
| - |
48 |
| -# Outputting |
49 |
| -permalink : date |
50 |
| -paginate_path : /page:num |
51 |
| -timezone : null |
52 |
| - |
53 |
| -quiet : false |
54 |
| -verbose : false |
55 |
| -defaults : [] |
56 |
| - |
57 |
| -liquid: |
58 |
| - error_mode : warn |
59 |
| - strict_filters : false |
60 |
| - strict_variables : false |
61 |
| - |
62 |
| -# Markdown Processors |
| 1 | +# |
| 2 | +# This file contains configuration flags to customize your site |
| 3 | +# |
| 4 | + |
| 5 | +# Name of your site (displayed in the header) |
| 6 | +name: Create Performance Task Project Documentation Page Template |
| 7 | + |
| 8 | +# Short bio or description (displayed in the header) |
| 9 | +description: A sample documentation site for AP CSP Students |
| 10 | + |
| 11 | +# URL of your avatar or profile pic (you could use your GitHub profile pic) |
| 12 | +avatar: |
| 13 | + |
| 14 | +# |
| 15 | +# Flags below are optional |
| 16 | +# |
| 17 | + |
| 18 | +# Includes an icon in the footer for each username you enter |
| 19 | +footer-links: |
| 20 | + dribbble: |
| 21 | + email: |
| 22 | + facebook: |
| 23 | + flickr: |
| 24 | + github: |
| 25 | + instagram: |
| 26 | + linkedin: |
| 27 | + pinterest: |
| 28 | + rss: |
| 29 | + twitter: |
| 30 | + stackoverflow: |
| 31 | + youtube: |
| 32 | + googleplus: |
| 33 | + |
| 34 | + |
| 35 | +# Enter your Disqus shortname (not your username) to enable commenting on posts |
| 36 | +# You can find your shortname on the Settings page of your Disqus account |
| 37 | +disqus: |
| 38 | + |
| 39 | +# Enter your Google Analytics web tracking code (e.g. UA-2110908-2) to activate tracking |
| 40 | +google_analytics: |
| 41 | + |
| 42 | +# Your website URL (e.g. http://barryclark.github.io or http://www.barryclark.co) |
| 43 | +# Used for Sitemap.xml and your RSS feed |
| 44 | +url:http://timwonderer.github.io |
| 45 | + |
| 46 | +# If you're hosting your site at a Project repository on GitHub pages |
| 47 | +# (http://yourusername.github.io/repository-name) |
| 48 | +# and NOT your User repository (http://yourusername.github.io) |
| 49 | +# then add in the baseurl here, like this: "/repository-name" |
| 50 | +baseurl: "" |
| 51 | + |
| 52 | +# |
| 53 | +# !! You don't need to change any of the configuration flags below !! |
| 54 | +# |
| 55 | + |
| 56 | +permalink: /:title/ |
| 57 | + |
| 58 | +# The release of Jekyll Now that you're using |
| 59 | +version: v1.2.0 |
| 60 | + |
| 61 | +# Jekyll 3 now only supports Kramdown for Markdown |
63 | 62 | kramdown:
|
64 |
| - auto_ids : true |
65 |
| - entity_output : as_char |
66 |
| - toc_levels : [1, 2, 3, 4, 5, 6] |
67 |
| - smart_quotes : lsquo,rsquo,ldquo,rdquo |
68 |
| - input : GFM |
69 |
| - hard_wrap : false |
70 |
| - footnote_nr : 1 |
71 |
| - show_warnings : false |
| 63 | + # Use GitHub flavored markdown, including triple backtick fenced code blocks |
| 64 | + input: GFM |
| 65 | + # Jekyll 3 and GitHub Pages now only support rouge for syntax highlighting |
| 66 | + syntax_highlighter: rouge |
| 67 | + syntax_highlighter_opts: |
| 68 | + # Use existing pygments syntax highlighting css |
| 69 | + css_class: 'highlight' |
| 70 | + |
| 71 | +# Set the Sass partials directory, as we're using @imports |
| 72 | +sass: |
| 73 | + style: :expanded # You might prefer to minify using :compressed |
| 74 | + |
| 75 | +# Use the following plug-ins |
| 76 | +gems: |
| 77 | + - jekyll-sitemap # Create a sitemap using the official Jekyll sitemap gem |
| 78 | + - jekyll-feed # Create an Atom feed using the official Jekyll feed gem |
| 79 | + |
| 80 | +# Exclude these files from your production _site |
| 81 | +exclude: |
| 82 | + - Gemfile |
| 83 | + - Gemfile.lock |
| 84 | + - LICENSE |
| 85 | + - README.md |
| 86 | + - CNAME |
0 commit comments