Skip to content

Commit

Permalink
fix(yaml): Actually implement yaml support
Browse files Browse the repository at this point in the history
fix #18
  • Loading branch information
blakedietz committed Apr 24, 2019
1 parent 1832b27 commit cadb411
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tag-tree-data-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ class TagTreeDataProvider
const { data }= grayMatter(fileContents) ;
let yamlTags = new Set();
if (data.tags) {
yamlTags = new Set([data.tags.split(',')]);
yamlTags = new Set([data.tags]);
}

return fileContents
Expand Down

0 comments on commit cadb411

Please sign in to comment.