Skip to content

option to parse only first YAML block in file #151

Open
@casperdcl

Description

Many markdown files start with a YAML header block. Would be nice for yq to support them.

current behaviour

Currently yq complains about the markdown:

$ cat doc.md
---
title: Foo
author: [Bar]
---
Some *Example* markdown

$ yq .title doc.md
"Foo"
jq: error (at <stdin>:2): Cannot index string with string "title"

desired behaviour

Option to parse only the first document per filestream.

$ yq --blocks=1 .title doc.md
"Foo"

alternative

$ awk '{ if ($1 == "---" || $1 == "...") n+=1; if(n>1) exit 0; print; }' doc.md | yq .title

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions