-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add option to exclude authors from autopage generation (#2)
release: v1.0.3
- Loading branch information
1 parent
c0ba1b1
commit 34481da
Showing
8 changed files
with
48 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,21 @@ janedoe: | |
socials: | ||
github: "jane-doe" | ||
twitter: "jane_doe" | ||
|
||
test1: | ||
exclude: true # testing the exclude attribute | ||
name: "test1" | ||
bio: "Test is a demo author 1" | ||
email: "[email protected]" | ||
socials: | ||
github: "test1" | ||
twitter: "test1" | ||
|
||
# test2 is excluded via exclude attribute for authors autopage config in _config.yml | ||
test2: | ||
name: "test2" | ||
bio: "Test is a demo author 2" | ||
email: "[email protected]" | ||
socials: | ||
github: "test2" | ||
twitter: "test2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module Jekyll | ||
module AutoAuthors | ||
VERSION = "1.0.2" | ||
VERSION = "1.0.3" | ||
end | ||
end |