Skip to content

Commit

Permalink
remove boolean keep value from pre, post and random
Browse files Browse the repository at this point in the history
  • Loading branch information
Rob Ellis committed Dec 28, 2016
1 parent 83f5fb2 commit 6b34fc9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/parseContents.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ const collapseRandomGambits = function collapseRandomGambits(data) {
if (!randomTopic) {
cleanData.topics.push({
name: 'random',
flags: { keep: true },
flags: { keep: 'keep' },
keywords: [],
filter: null,
gambits: [],
Expand Down
4 changes: 2 additions & 2 deletions src/ss-grammar.pegjs
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ topic
{
return {
name: "__pre__",
flags: { keep: true },
flags: { keep: "keep" },
keywords: [],
filter: null,
gambits
Expand All @@ -136,7 +136,7 @@ topic
{
return {
name: "__post__",
flags: { keep: true },
flags: { keep: "keep" },
keywords: [],
filter: null,
gambits
Expand Down

0 comments on commit 6b34fc9

Please sign in to comment.