-
Notifications
You must be signed in to change notification settings - Fork 126
/
_config.yml
44 lines (38 loc) · 1.33 KB
/
_config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Site-level
description: Stanford University CS107E Computer Systems from the Ground Up
livereload: true
# front matter defaults
defaults:
-
scope:
path: "" # an empty string here means all files in the project
type: "pages"
values:
layout: "default"
permalink: pretty
# Settings to tweak generation, features, plug-ins
highlighter: rouge
markdown: kramdown
kramdown:
input: GFM
hard_wrap: false
smart_quotes: ["apos", "apos", "quot", "quot"]
syntax_highlighter: rouge
syntax_highligher_opts:
default_lang: c
plugins: [jekyll-sitemap, jekyll-target-blank]
# blacklist files/folders to never publish
# if name is prefixed with dot/underscore will be excluded by default
exclude: [Gemfile, vendor, README.md, /cs107e/, private,
lectures/*/private, labs/*/private, assignments/*/private, lectures/private,
yass/node_modules, yass/*.json, yass/*.mjs]
# whitelist of files/folders to always publish (these would be excluded because of prefix)
include: [_assets, _templates]
theme: null # not using any pre-built theme
# ask for as much checking as possible
liquid:
error_mode: strict
strict_front_matter: true
# strict_variables: true # JDZ: not compatible with jekyll-sitemap, sigh
strict_filters: true
lang: en-US