Skip to content

Commit 3125e85

Browse files
committed
Add to NEWS and bump version
1 parent 0bd2a2b commit 3125e85

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: quarto
22
Title: R Interface to 'Quarto' Markdown Publishing System
3-
Version: 1.4.4.9027
3+
Version: 1.4.4.9028
44
Authors@R: c(
55
person("JJ", "Allaire", , "[email protected]", role = "aut",
66
comment = c(ORCID = "0000-0003-0174-9868")),

NEWS.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# quarto (development version)
22

3+
- Improved YAML 1.2 compatibility features to ensure proper parsing by Quarto's js-yaml parser.
4+
- The `yaml_quote_string()` function allows explicit control over string quoting in YAML output.
5+
- `write_yaml_metadata_block()` automatically handles data corruption prevention from leading zero strings like `"029"` that would be misinterpreted as octal numbers (becoming `29`) (thanks, @Mosk915, quarto-dev/quarto-cli#12736, #242). Boolean values are also correctly formatted as lowercase (`true`/`false`) instead of YAML 1.1 variants like `yes`/`no`.
6+
- This change also benefits other functions writing YAML like `quarto_render()` when using `metadata=` or `execute_params=` arguments.
7+
38
- Package is now licenced MIT like Quarto CLI.
49

510
- Added `detect_bookdown_crossrefs()` function to help users migrate from bookdown to Quarto by identifying cross-references that need manual conversion. The function scans R Markdown or Quarto files to detect bookdown-specific cross-reference syntax (like `\@ref(fig:label)` and `(\#eq:label)`) and provides detailed guidance on converting them to Quarto syntax (like `@fig-label` and `{#eq-label}`). It offers both compact and verbose reporting modes, with context-aware warnings that only show syntax patterns actually found in your files.

0 commit comments

Comments
 (0)