Skip to content

Commit 66c2c43

Browse files
committed
Introducing further autocorrections
1 parent 97b8e72 commit 66c2c43

File tree

4 files changed

+13
-20
lines changed

4 files changed

+13
-20
lines changed

.prettierignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
2-
# pages/**/*html
31
browse_pages.html
42
search.json
53
pages/*.html

_config.yml

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ highlighter: rouge
6161

6262
markdown: kramdown
6363
kramdown:
64-
input: GFM
65-
auto_ids: true
66-
hard_wrap: false
67-
syntax_highlighter: rouge
64+
input: GFM
65+
auto_ids: true
66+
hard_wrap: false
67+
syntax_highlighter: rouge
6868

6969
# filter used to process markdown. note that kramdown differs from github-flavored markdown in some subtle ways
7070

@@ -74,17 +74,15 @@ collections:
7474
# collections are declared here. this renders the content in _tooltips and processes it, but doesn't output it as actual files in the output unless you change output to true
7575

7676
defaults:
77-
-
78-
scope:
77+
- scope:
7978
path: ""
8079
type: "pages"
8180
values:
8281
layout: "page"
8382
comments: true
8483
search: true
8584
sidebar: home_sidebar
86-
-
87-
scope:
85+
- scope:
8886
path: ""
8987
type: "tooltips"
9088
values:
@@ -93,8 +91,7 @@ defaults:
9391
search: true
9492
tooltip: true
9593

96-
-
97-
scope:
94+
- scope:
9895
path: ""
9996
type: "posts"
10097
values:
@@ -106,20 +103,20 @@ defaults:
106103
# these are defaults used for the frontmatter for these file types
107104

108105
sidebars:
109-
- home_sidebar
106+
- home_sidebar
110107

111-
- other
108+
- other
112109

113110
description: ""
114111
# the description is used in the feed.xml file
115112
url: http://samvera.github.io
116-
production_url : https://samvera.github.io
117-
BASE_PATH : https://samvera.github.io
113+
production_url: https://samvera.github.io
114+
BASE_PATH: https://samvera.github.io
118115

119116
theme: jekyll-theme-minimal
120117

121118
# needed for sitemap.xml file only
122119
plugins:
123120
- jekyll-sitemap
124121

125-
github_pages_save_generated_files: ['browse_pages.html']
122+
github_pages_save_generated_files: ["browse_pages.html"]

js/deck.core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ that use the API provided by core.
450450
if (indexInBounds(indexOrId)) {
451451
index = indexOrId;
452452
} else if (typeof indexOrId === "string") {
453-
/* Id string index, search for it and set integer index */
453+
/* Id string index, search for it and set integer index */
454454
$.each(slides, function (i, $slide) {
455455
if ($slide.attr("id") === indexOrId) {
456456
index = i;

pages/samvera/running_in_production/campus-auth-integrating.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,11 @@ Next, find these lines:
4040
devise :database_authenticatable, :registerable,
4141
:recoverable, :rememberable, :trackable, :validatable
4242

43-
4443
Replace them with:
4544

4645
devise :cas_authenticatable,
4746
:recoverable, :rememberable, :trackable
4847

49-
5048
Finally, add a function that takes extra attributes from your CAS server and maps them to fields in the Hyrax contributor profile. In this example, we will get the department name and email address.
5149

5250
def cas_extra_attributes=(extra_attributes)

0 commit comments

Comments
 (0)