We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a09943a commit ec9d681Copy full SHA for ec9d681
lib/parsed-yaml-retriever.js
@@ -12,7 +12,7 @@ const getParsedYaml = gh => async data => {
12
const file = await promisify(gh.repos.getContent)(options)
13
contents = Buffer.from(file.content, 'base64').toString()
14
}
15
- const docs = contents.split('---')
+ const docs = contents.split('\n---\n')
16
const parsedDocs = docs.map(d => {
17
return yaml.parse(d)
18
})
0 commit comments