Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
* Files stored in `man/figures` (such as `lifecycle` badges) are now properly
included by `render_docs()` (#321).

* `render_docs()` now renders to Github-flavored markdown (`gfm`) that seems
to be used by all docs generators used by `altdoc`. This enables for
instance a better support for footnotes (#332).

### Bug fixes

* Fix a `quarto_website` rendering failure when the package being rendered has
Expand Down
4 changes: 2 additions & 2 deletions R/qmd2md.R
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
out <- try(
quarto::quarto_render(
input = path.expand(tar_file),
output_format = "md",
output_format = "gfm",
quiet = FALSE,
as_job = FALSE
),
Expand All @@ -33,7 +33,7 @@
out <- evaluate::evaluate(
'quarto::quarto_render(
input = path.expand(tar_file),
output_format = "md",
output_format = "gfm",
quiet = FALSE,
as_job = FALSE,
)',
Expand Down
Loading
Loading