-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ensure YAML is free of duplicate keys. (#15)
* Ensure YAML is free of duplicate keys. * Refines one validation * Fixes shebangs so Ruby version works correctly despite system ruby being installed * Add Handbook glossary, and de-dupe entries. Fixes #10 and #12
- Loading branch information
Showing
7 changed files
with
1,394 additions
and
649 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#! /usr/bin/ruby | ||
#!/usr/bin/env ruby | ||
require_relative '../lib/markdownify' | ||
|
||
Markdownify.new(*ARGV).perform |
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,4 +1,4 @@ | ||
#! /usr/bin/ruby | ||
#!/usr/bin/env ruby | ||
require_relative '../lib/validate' | ||
|
||
GlossaryValidator.new(path: ARGV[0]).perform |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
entries: | ||
|
||
FEMA: | ||
type: acronym | ||
term: Federal Emergency Management Agency | ||
|
||
Federal Emergency Management Agency: | ||
type: term | ||
description: null | ||
|
||
FEMA: | ||
type: acronym | ||
term: Federal Emergency Management Agency |
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