fix: handle quoted tags in YAML for query command#28
Open
jeffutter wants to merge 1 commit intowedow:masterfrom
Open
fix: handle quoted tags in YAML for query command#28jeffutter wants to merge 1 commit intowedow:masterfrom
jeffutter wants to merge 1 commit intowedow:masterfrom
Conversation
The query command was double-quoting tag values when YAML used quoted
array syntax (e.g., tags: ["tag1", "tag2"]), producing invalid JSON
like {"tags":[[""tag""]]}.
Strip quotes from array items in awk before re-quoting for JSON output.
Add tests to verify quoted YAML tags produce valid JSON arrays.
Nathan-Schwartz
added a commit
to Nathan-Schwartz/ticket
that referenced
this pull request
Mar 26, 2026
Port upstream PRs wedow#30 and wedow#28 to plugins/ticket-query: - Prevent markdown horizontal rules (---) from re-entering frontmatter parsing mode by tracking a frontmatter_done flag after the second --- - Strip existing quotes from YAML array items before re-quoting for JSON output, fixing double-quoted tags like ""tag"" Bump ticket-query to 1.0.1.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The query command was double-quoting tag values when YAML used quoted array syntax (e.g., tags: ["tag1", "tag2"]), producing invalid JSON like {"tags":[[""tag""]]}.
Strip quotes from array items in awk before re-quoting for JSON output. Add tests to verify quoted YAML tags produce valid JSON arrays.