page_content stringlengths 0 46.9k | metadata dict |
|---|---|
### Bug description
[Zip with minimal working example](https://github.com/quarto-dev/quarto-cli/files/10205325/3629-mwe.zip)
Consider the follow Quarto document
``````
---
title: "Minimal Working Example"
---
Foo
```{r}
#| echo: false
#| eval: false
#| output: true
#| label: tbl-mwe
#| tbl-cap: MWE... | {
"assignee": "cscheid",
"comments": 0,
"created_at": "2022-12-12T07:09:31Z",
"creator": "rgaiacs",
"is_pull_request": false,
"labels": [
"bug",
"crossref",
"docx"
],
"locked": false,
"milestone": "v1.4",
"number": 3629,
"state": "open",
"title": "?(caption) in DOCX when eval: false ... |
### Bug description
I set-up a new website following the approach described [here](https://quarto.org/docs/publishing/netlify.html#github-action):
- Repo hosted on GitHub
- Site built by GitHub actions
- Computations ran locally with creation of a `_freeze` directory put under version control
- Site hosted on ... | {
"assignee": "cscheid",
"comments": 22,
"created_at": "2022-12-12T03:46:55Z",
"creator": "prosoitos",
"is_pull_request": false,
"labels": [
"bug"
],
"locked": false,
"milestone": "v1.4",
"number": 3628,
"state": "open",
"title": "GitHub actions not using _freeze content and unable to publis... |
### Bug description
My Vegalite plots that I'm creating using Observable with Quarto initially dont show up when I set `width("container")`. Interestingly, they *do* appear when I hit <kbd>F12</kbd> and fire up the javascript console in the the browser. Here is a minimal example:
````
---
title: "Vegalite with O... | {
"assignee": null,
"comments": 2,
"created_at": "2022-12-10T08:34:11Z",
"creator": "ratnanil",
"is_pull_request": false,
"labels": [
"bug",
"wontfix",
"ojs-engine"
],
"locked": false,
"milestone": null,
"number": 3622,
"state": "closed",
"title": "Plot does not show initially when s... |
Minimal repro:
````
---
title: "test graphviz"
---
```{ojs}
dot`graph G {
a [tooltip="Tooltip for a"]
b [tooltip="Tooltip for b"]
c [tooltip="Tooltip for c"]
d [tooltip="Tooltip for d"]
a -- b;
b -- c;
c -- d;
d -- a;
}`
```
```{dot}
graph G {
a [tooltip="Too... | {
"assignee": "cscheid",
"comments": 0,
"created_at": "2022-12-08T23:18:24Z",
"creator": "cscheid",
"is_pull_request": false,
"labels": [
"enhancement",
"ojs-engine"
],
"locked": false,
"milestone": "v1.4",
"number": 3612,
"state": "open",
"title": "Graphviz tooltips are rendered inconsi... |
### Bug description
````
---
title: "missing caption causes crash"
format: html
---
```{r}
#| label: load_data
data(cars)
library(flextable)
```
Now lets try a table in our word document. This should be X.
```{r}
#| label: cars
cars |>
dplyr::slice_head(n = 5) |>
flextable() |>
autofit(... | {
"assignee": "cscheid",
"comments": 3,
"created_at": "2022-12-08T16:45:55Z",
"creator": "rmflight",
"is_pull_request": false,
"labels": [
"bug",
"crossref",
"tables"
],
"locked": false,
"milestone": "v1.4",
"number": 3603,
"state": "open",
"title": "error if no table caption include... |
In some situations, users might be running quarto with their own dependencies. Although we try to ship our own, sometimes that doesn't work out (consider alternative architectures, for example).
It would be nice if `quarto check` would run version checks of the dependencies so that if (eg) users are running an old v... | {
"assignee": "cscheid",
"comments": 0,
"created_at": "2022-12-08T16:42:04Z",
"creator": "cscheid",
"is_pull_request": false,
"labels": [
"enhancement"
],
"locked": false,
"milestone": "v1.3",
"number": 3602,
"state": "closed",
"title": "Warn about old versions of binary dependencies",
"ur... |
### Bug description
````
---
title: "flextable missing reference"
format: docx
---
```{r}
#| label: load_data
data(cars)
library(flextable)
```
Now lets try a table in our word document. This should be @tbl-cars.
```{r}
#| label: tbl-cars
#| tbl-cap: Something about cars.
cars |>
dplyr::slic... | {
"assignee": "cscheid",
"comments": 1,
"created_at": "2022-12-08T16:35:21Z",
"creator": "rmflight",
"is_pull_request": false,
"labels": [
"bug",
"crossref",
"tables"
],
"locked": false,
"milestone": "v1.4",
"number": 3601,
"state": "open",
"title": "missing reference for flextable t... |
### Bug description
````
---
title: "gt missing reference"
format: docx
---
```{r}
#| label: load_data
data(cars)
library(gt)
```
Now lets try a table in our word document. This should be @tbl-cars.
```{r}
#| label: tbl-cars
#| tbl-cap: Something about cars.
cars |>
dplyr::slice_head(n = 5) ... | {
"assignee": "cscheid",
"comments": 3,
"created_at": "2022-12-08T16:22:18Z",
"creator": "rmflight",
"is_pull_request": false,
"labels": [
"bug",
"crossref",
"tables"
],
"locked": false,
"milestone": "v1.4",
"number": 3600,
"state": "open",
"title": "missing reference for gt table in... |
@cderv, can you check if the hashes are computed differently on windows and unix? I suspect something is doing newline normalization on our code.
### Discussed in https://github.com/quarto-dev/quarto-cli/discussions/3597
<div type='discussions-op-text'>
<sup>Originally posted by **espinielli** December 8, 202... | {
"assignee": "cscheid",
"comments": 11,
"created_at": "2022-12-08T15:14:59Z",
"creator": "cscheid",
"is_pull_request": false,
"labels": [
"bug",
"windows"
],
"locked": false,
"milestone": "v1.4",
"number": 3599,
"state": "open",
"title": "same source different hashes in _freeze/ files f... |
Hi,
I have a problem rendering ggplot2 figures which include non-ascii/non-english characters, but only when the output is a pdf file. For example, this code:
``` r
library(ggplot2)
ggplot(mtcars, aes(x = am, y = mpg)) +
geom_jitter() +
labs(x = "PΕΓliΕ‘ ΕΎluΕ₯ouΔkΓ½ kΕ―Ε")
```
Returns following:
<img w... | {
"assignee": null,
"comments": 1,
"created_at": "2022-12-07T11:19:17Z",
"creator": "alesvomacka",
"is_pull_request": false,
"labels": [],
"locked": false,
"milestone": null,
"number": 3591,
"state": "closed",
"title": "Some non-english characters in ggplot2 figures are not rendered correctly when... |
### Bug description
`quarto render --help` says
```
Usage: quarto render [input] [args...]
```
and `quarto render mwe.qmd --to docx` works as expected
```
pandoc
to: docx
output-file: mwe.docx
default-image-extension: png
metadata
title: Minimal Working Example
Output created: mw... | {
"assignee": "cscheid",
"comments": 5,
"created_at": "2022-12-06T07:02:15Z",
"creator": "rgaiacs",
"is_pull_request": false,
"labels": [
"bug"
],
"locked": false,
"milestone": "v1.3",
"number": 3581,
"state": "closed",
"title": "Make command line robust against argument order",
"url": "ht... |
### Bug description
[Zip file with minimal working example](https://github.com/quarto-dev/quarto-cli/files/10163470/mwe.zip)
Consider the minimal working example with subfigures:
``````
---
title: "Minimal Working Example"
format: docx
---
Foo
::: {#fig-1 layout-ncol="2"}

```
````
... | {
"assignee": null,
"comments": 4,
"created_at": "2022-12-05T22:33:35Z",
"creator": "agerlach",
"is_pull_request": false,
"labels": [
"bug",
"julia"
],
"locked": false,
"milestone": "v1.3",
"number": 3574,
"state": "closed",
"title": "CairoMakie Subsequent Renders Produce Empty Figure Fi... |
### Bug description
Tables without a caption should not be numbered. In the following test document, the second table is captioned and is correctly numbered 1 with html output and incorrectly numbered 2 with pdf output. Rendered files are attached. Quarto version is 1.2.269. Linux version is Ubuntu 22.04.
````
-... | {
"assignee": "cscheid",
"comments": 2,
"created_at": "2022-12-05T19:19:26Z",
"creator": "rmcd1024",
"is_pull_request": false,
"labels": [
"bug"
],
"locked": false,
"milestone": "v1.3",
"number": 3571,
"state": "closed",
"title": "Table numbering inconsistent between html and pdf (incorrect ... |
I have the following common use case:
- writing a report with many qmd chapters
- each chapter calculates key facts (in R)
- up-front summary chapter reprises key facts in text with inline code and perhaps includes a summary table
Thus, I need to calculate the facts in the body-of-the-report chapters before exe... | {
"assignee": null,
"comments": 2,
"created_at": "2022-12-05T11:36:48Z",
"creator": "donboyd5",
"is_pull_request": false,
"labels": [],
"locked": false,
"milestone": "Future",
"number": 3568,
"state": "open",
"title": "Feature request: For quarto book qmd files, allow execution order to differ fro... |
### Bug description
I'm starting to create a book, and it's rendered properly on a desktop monitor.

If I open it in a smartphone browser, the top title is not visible at all, and is covered by the section... | {
"assignee": "dragonstyle",
"comments": 3,
"created_at": "2022-12-04T15:03:35Z",
"creator": "aborruso",
"is_pull_request": false,
"labels": [
"bug"
],
"locked": false,
"milestone": "v1.3",
"number": 3562,
"state": "closed",
"title": "HTML book rendering and titles margin top in mobile view"... |
### Bug description
I expect this to fail because of unknown documentclass (or use the locally defined asdf), but it instead compiles with the default value for documentclass.
```
---
title: "Quarto Basics"
format:
pdf:
documentclass: asdf
---
# Hi
foo
```
If I remove one or both of the empty... | {
"assignee": null,
"comments": 6,
"created_at": "2022-12-03T23:28:41Z",
"creator": "crazyminecuber",
"is_pull_request": false,
"labels": [
"enhancement",
"upstream",
"lint"
],
"locked": false,
"milestone": "Future",
"number": 3560,
"state": "open",
"title": "yaml options are ignored... |
### Bug description
I want to [cross-reference to tables](https://quarto.org/docs/authoring/cross-references.html#tables) that are inside a tabset panel. It turns out that only if the table being referenced is _in the tab that is currently visible_, the cross-ref link would work. By contrast, if the cross-ref link r... | {
"assignee": "cscheid",
"comments": 13,
"created_at": "2022-12-03T14:57:11Z",
"creator": "emmansh",
"is_pull_request": false,
"labels": [
"bug",
"needs-repro",
"crossref"
],
"locked": false,
"milestone": "v1.3",
"number": 3557,
"state": "closed",
"title": "Table cross-refs don't wor... |
### Discussed in https://github.com/quarto-dev/quarto-cli/discussions/3151
<div type='discussions-op-text'>
<sup>Originally posted by **maxdrohde** November 2, 2022</sup>
In the `reveal.js` format, we can use the `output-location: column` YAML option to show the output in the column next to the code, instead of... | {
"assignee": "dragonstyle",
"comments": 0,
"created_at": "2022-12-02T13:44:56Z",
"creator": "dragonstyle",
"is_pull_request": false,
"labels": [
"enhancement"
],
"locked": false,
"milestone": "v1.4",
"number": 3550,
"state": "open",
"title": "Support `output-location: column` in HTML docume... |
### Bug description
Hello quarto team,
I have an problem when I try to make a header from r code. My objective is to generate a header from a for loop and that this header is available from the table of contents. But, when I tried to use htmltools or knit_print.html I cannot make that the header appear in the TOC.
... | {
"assignee": null,
"comments": 1,
"created_at": "2022-12-02T02:19:01Z",
"creator": "pipaber",
"is_pull_request": false,
"labels": [
"bug"
],
"locked": false,
"milestone": null,
"number": 3548,
"state": "closed",
"title": "Header generated from htmltools don`t appear in the table of contents... |
### Bug description
I'm creating a website with images that update daily. However, users sometimes don't get the latest image because their browser shows them a cached copy. I found that adding `?1234` with a different number at each update can solve the issue.
So I created an R variable called date with the cu... | {
"assignee": null,
"comments": 1,
"created_at": "2022-12-01T17:13:19Z",
"creator": "eliocamp",
"is_pull_request": false,
"labels": [],
"locked": false,
"milestone": null,
"number": 3543,
"state": "closed",
"title": "Images are not copied into docs if the link adds optional parameter (e.g. image.j... |
### Bug description
It seems that Quarto doesn't apply the `fragment-index` to images:
```md
## How to Measure
::: {.incremental}
- Assume we have 2 variants of a website: `A` and `B`.
- How would we measure their design effect on user engagement?
:::
{.absolute botto... | {
"assignee": null,
"comments": 5,
"created_at": "2022-12-01T08:03:18Z",
"creator": "RoyiAvital",
"is_pull_request": false,
"labels": [
"enhancement",
"revealjs"
],
"locked": false,
"milestone": "Future",
"number": 3539,
"state": "open",
"title": "The `fragment-index` Has No Effect on Im... |
### Bug description
For the quarto presentation (revealjs),
we will move to the first page if we click the hyperlinks of equation numbers.
It is OK for other hyperlinks, e.g. Theorem.
The following is an easy test `qmd` file.
```
---
title: "Untitled"
format: revealjs
---
## A
$$
\begin{aligned}... | {
"assignee": "cscheid",
"comments": 3,
"created_at": "2022-12-01T05:41:46Z",
"creator": "ChoCho66",
"is_pull_request": false,
"labels": [
"bug",
"revealjs"
],
"locked": false,
"milestone": "v1.3",
"number": 3533,
"state": "closed",
"title": "Hyperlinks of equation numbers do not work in... |
### Bug description
I have a custom format that includes some boilerplate stuff that I'd rather just pop into ancillary `.qmd` files and include in the template. I can use, for example, `{{< include _footer.qmd >}}` in my `template.qmd` and then add to my `_extension.yml`:
```yaml
contributes:
formats:
htm... | {
"assignee": null,
"comments": 4,
"created_at": "2022-12-01T04:01:37Z",
"creator": "jimjam-slam",
"is_pull_request": false,
"labels": [
"bug"
],
"locked": false,
"milestone": null,
"number": 3531,
"state": "closed",
"title": "Relative paths for includes bundled with extensions are not resol... |
### Bug description
If a package is loaded in a chunk where the execution option `echo` is set to `false` it seems that the `downlit` package does not find the corresponding function. It does not create a link.
````
---
format:
html:
code-link: true
---
```{r}
#| echo: false
library(ggplot2)
m... | {
"assignee": null,
"comments": 2,
"created_at": "2022-11-30T17:10:21Z",
"creator": "jwarz",
"is_pull_request": false,
"labels": [
"bug"
],
"locked": false,
"milestone": "Future",
"number": 3527,
"state": "open",
"title": "code-link does not work if echo: true is being used",
"url": "https... |
### Bug description
`\r` and `\n` in math environments get interpreted as carriage return and line feed when using gfm
OS: OSX and Debian 11
Quarto v 1.3.34
````md
---
format: gfm
---
$$\left{a\right}$$
$$\nabla$$
````
renders as
````md
$$\left{a
ight}$$
$$
abla$$
````
### Checklist
- [... | {
"assignee": "dragonstyle",
"comments": 2,
"created_at": "2022-11-30T17:04:01Z",
"creator": "agerlach",
"is_pull_request": false,
"labels": [
"bug",
"needs-repro"
],
"locked": false,
"milestone": "v1.3",
"number": 3526,
"state": "closed",
"title": "gfm improper handling of escapes in ma... |
### Bug description
Hello,
I am trying to have a figure in a jupyter notebook (in python) with a figure caption that can be cross-referenced in the text.
Following the documentation [here](https://quarto.org/docs/authoring/figures.html), I put the follwing
```
::: {#fig-elephant}

Famous ... | {
"assignee": null,
"comments": 4,
"created_at": "2022-11-30T16:20:53Z",
"creator": "adauphin",
"is_pull_request": false,
"labels": [
"bug",
"needs-repro"
],
"locked": false,
"milestone": null,
"number": 3525,
"state": "closed",
"title": "Figure caption missing for single figure",
"url... |
### Bug description
If `code-line-numbers: true` is used together with `code-link: true` only base-r functions outside of code blocks are being linked.
````
---
format:
html:
code-link: true
code-line-numbers: true # linking works with false
---
`filter()`, `ggplot()`
```{r}
library(ggplot2... | {
"assignee": "cderv",
"comments": 0,
"created_at": "2022-11-30T12:38:16Z",
"creator": "jwarz",
"is_pull_request": false,
"labels": [
"bug",
"computations",
"source-code"
],
"locked": false,
"milestone": "v1.4",
"number": 3519,
"state": "open",
"title": "code-link and code-line-numbe... |
### Discussed in https://github.com/quarto-dev/quarto-cli/discussions/3517
<div type='discussions-op-text'>
<sup>Originally posted by **jpatteet** November 30, 2022</sup>
I asked a question on stackoverflow and got an answer that resolved the problem. I am posting both here, maybe it is worth some modifications ... | {
"assignee": "dragonstyle",
"comments": 10,
"created_at": "2022-11-30T10:31:28Z",
"creator": "jpatteet",
"is_pull_request": false,
"labels": [],
"locked": false,
"milestone": "v1.4",
"number": 3518,
"state": "closed",
"title": "Quarto rendering pdf, running xelatex 10 times",
"url": "https://gi... |
If extensions are put in the wrong directory, quarto silently ignores them and it's hard to know which are there and which are not.
It would be nice if `quarto render` reported a list of all "enabled" extensions. | {
"assignee": "dragonstyle",
"comments": 0,
"created_at": "2022-11-29T21:13:08Z",
"creator": "cscheid",
"is_pull_request": false,
"labels": [
"enhancement"
],
"locked": false,
"milestone": "v1.4",
"number": 3510,
"state": "open",
"title": "quarto should report found extensions",
"url": "ht... |
### Bug description
Hello,
I use R code to produce regression summary tables that include asterisks (`*`, `**`, or `***`). For html outputs, some asterisks disappear and some italics and bold section appear. It seems to be a confusion in quarto between markdow and html in this case.
Please find below a reproducib... | {
"assignee": null,
"comments": 5,
"created_at": "2022-11-29T19:57:09Z",
"creator": "fBedecarrats",
"is_pull_request": false,
"labels": [],
"locked": false,
"milestone": null,
"number": 3509,
"state": "closed",
"title": "Asterisk in html output tables in get converted to markdown (ie. italics and ... |
### Bug description
# Syntax highlighting and line numbering break in code blocks for the VHDL language
Observed in `quarto 1.2.269` running on `Windows 11 pro version 10.0.22621`.
Description: VHDL code which includes `process` statements breaks syntax highlighting and further processing like line-numbering. It... | {
"assignee": null,
"comments": 2,
"created_at": "2022-11-29T17:54:47Z",
"creator": "fmirandabonomi",
"is_pull_request": false,
"labels": [],
"locked": false,
"milestone": null,
"number": 3506,
"state": "closed",
"title": "Syntax highlighting fails for correct VHDL code.",
"url": "https://github... |
### Bug description
The header:
````md
---
author:
- name: 'peacecop kalmer:'
title: "MMS inimese organismis ja ΓΌmbritsevas keskkonnas"
output-file: ../../_book/keemia-mms.html
format:
revealjs:
incremental: true
self-contained: true
---
````
The content:
````md
## $`r if (knitr:... | {
"assignee": null,
"comments": 1,
"created_at": "2022-11-29T16:58:55Z",
"creator": "piiskop",
"is_pull_request": false,
"labels": [],
"locked": false,
"milestone": null,
"number": 3503,
"state": "closed",
"title": "TOC shows unrendered R and LaTeX code",
"url": "https://github.com/quarto-dev/qu... |
### Bug description
I'm on Windows 10 and Quarto can't seem to detect my Python installation.
```
Nom de lβhΓ΄te: L108235
Nom du systΓ¨me dβexploitation: Microsoft Windows 10 Entreprise
Version du système: 10.0.19044 N/A build 19044
Fabricant du sy... | {
"assignee": "cderv",
"comments": 10,
"created_at": "2022-11-29T15:32:38Z",
"creator": "desautm",
"is_pull_request": false,
"labels": [
"windows"
],
"locked": false,
"milestone": null,
"number": 3500,
"state": "closed",
"title": "Python installation not detected by Quarto when using pyenv-w... |
### Bug description
Minor issues with the `fig-scap:` when there are multiple subfigures. When using subfigures and subcaptions, the `fig-scap` is no longer used in the list of figures, instead the full caption is used and the `scap` is ignored.
````md
---
title: "scratch"
toc: true
format:
pdf:
table-... | {
"assignee": "cscheid",
"comments": 1,
"created_at": "2022-11-29T08:59:49Z",
"creator": "BradyAJohnston",
"is_pull_request": false,
"labels": [
"bug",
"crossref"
],
"locked": false,
"milestone": "v1.4",
"number": 3498,
"state": "open",
"title": "Support `-scap` in Float crossrefs consis... |
### Bug description
I don't know whether it's a bug or expected behavior, given [@cscheid's comment](https://github.com/quarto-dev/quarto-cli/discussions/3253#discussioncomment-4128818) about rendering tables in Quarto being a work-in-progress. Anyhow, it's currently a limitation of Quarto.
`.qmd` file:
<pre>
... | {
"assignee": null,
"comments": 0,
"created_at": "2022-11-29T08:17:45Z",
"creator": "emmansh",
"is_pull_request": false,
"labels": [
"enhancement",
"tables"
],
"locked": false,
"milestone": "v1.3",
"number": 3497,
"state": "closed",
"title": "Table output of SQL code exceeds right border... |
### Bug description
With the recent addition of the `rel: me` option to navbars, it's now possible to include a link to a Mastodon profile and have it be verified on their end:
```yaml
website:
title: "Blah"
navbar:
right:
- icon: mastodon
aria-label: mastodon
href: https://fedi... | {
"assignee": "dragonstyle",
"comments": 5,
"created_at": "2022-11-28T22:40:03Z",
"creator": "andrewheiss",
"is_pull_request": false,
"labels": [
"bug"
],
"locked": false,
"milestone": "v1.4",
"number": 3493,
"state": "open",
"title": "Citeproc warning when using a Mastodon profile link",
... |
### Bug description
The `output-dir` yaml parameter is only being pulled from the top-level `_quarto.yml` file. My expectation was that I could set a sub-directory specific, or file specific `output-dir` parameter.
I created a [simple repository to demonstrate the issue](https://github.com/anielsen001/quarto_output... | {
"assignee": null,
"comments": 3,
"created_at": "2022-11-28T13:16:34Z",
"creator": "anielsen001",
"is_pull_request": false,
"labels": [
"bug"
],
"locked": false,
"milestone": null,
"number": 3487,
"state": "closed",
"title": "`output-dir` parameter only used in top-level `_quarto.yml` file"... |
### Bug description
I'm on Apple M1, downloaded the dmg file for mac and installed Quarto. Everything completed successfully. Quarto files are under Macintosh HD/Applications/quatro. Opened the terminal and typed `quarto --help` and i'm getting
`zsh: command not found: quarto`
Yes, I'm using zshell.
Ideas? ... | {
"assignee": "dragonstyle",
"comments": 3,
"created_at": "2022-11-28T10:46:53Z",
"creator": "edoson",
"is_pull_request": false,
"labels": [
"bug",
"needs-repro"
],
"locked": false,
"milestone": "v1.3",
"number": 3484,
"state": "closed",
"title": "[Mac M1] - quarto not recognized in term... |
### Bug description
Quarto fails to render author name attributes when rendering as `pdf`.
```
---
title: test
format: pdf
author:
- name:
given: John
family: Smith
literal: John Smith
---
```
The `yaml` above returns `true` instead of `John Smith`.
Using the following works:
```
-... | {
"assignee": null,
"comments": 1,
"created_at": "2022-11-28T09:36:08Z",
"creator": "arnaudgallou",
"is_pull_request": false,
"labels": [
"bug"
],
"locked": false,
"milestone": null,
"number": 3483,
"state": "closed",
"title": "Author name attributes return `true` when rendering as `pdf`",
... |
It seems like there are some issues in locating deno in `configure.cmd` script.
Tested on Windows 11 Education (Version 10.0.22621 Build 22621).
## Output
``` bash
configure.cmd
find: '/I': No such file or directory
find: 'deno.exe': No such file or directory
"Translated/recorded configuration settings from unix con... | {
"assignee": "cderv",
"comments": 5,
"created_at": "2022-11-27T17:12:19Z",
"creator": "jooyoungseo",
"is_pull_request": false,
"labels": [
"windows"
],
"locked": false,
"milestone": "v1.3",
"number": 3477,
"state": "closed",
"title": "cannot locate deno: issue with configure.cmd",
"url": ... |
In [CONTRIBUTING.md#L21](https://github.com/quarto-dev/quarto-cli/blob/main/CONTRIBUTING.md?plain=1#L21), it says:
> # configure for your platform (./configure-macos.sh, ./configure-linux.sh, or ./configure-windows.cmd
However, there are only two configure files without platform name: "configure.cmd" and "configure.s... | {
"assignee": null,
"comments": 1,
"created_at": "2022-11-27T16:56:57Z",
"creator": "jooyoungseo",
"is_pull_request": false,
"labels": [],
"locked": false,
"milestone": null,
"number": 3476,
"state": "closed",
"title": "Need to clarify configure file per OS platform",
"url": "https://github.com/... |
### Discussed in https://github.com/quarto-dev/quarto-cli/discussions/3336
<div type='discussions-op-text'>
<sup>Originally posted by **AlFontal** November 15, 2022</sup>
As far as I know, it's possible to select a single location to show the Table of Contents, but while the dynamic TOC that always stays on the ... | {
"assignee": "allenmanning",
"comments": 4,
"created_at": "2022-11-27T15:30:19Z",
"creator": "dragonstyle",
"is_pull_request": false,
"labels": [
"enhancement",
"websites"
],
"locked": false,
"milestone": "v1.4",
"number": 3473,
"state": "closed",
"title": "Ability to show the TOC both ... |
### Bug description
Following the ["Metadata Listings" section](https://quarto.org/docs/websites/website-listings-custom.html#metadata-listings) in the documentation, it is possible to include custom metadata in YAML, either in individual files or in front matter, and have that metadata show up in a custom listing tem... | {
"assignee": "dragonstyle",
"comments": 1,
"created_at": "2022-11-27T04:32:10Z",
"creator": "andrewheiss",
"is_pull_request": false,
"labels": [
"enhancement"
],
"locked": false,
"milestone": "v1.4",
"number": 3468,
"state": "open",
"title": "Markdown in custom listing fields not rendered b... |
### Bug description
When trying to render a quarto notebook with Python code from the command line I'm seeing behavior consistent with a persistent jupyter kernel. I would expect that each call to `quarto render` would run in a new, clean kernel.
For example consider the file `test.qmd` with the text
````
---
t... | {
"assignee": "cscheid",
"comments": 10,
"created_at": "2022-11-26T22:17:18Z",
"creator": "betanalpha",
"is_pull_request": false,
"labels": [
"bug",
"verify-fixed"
],
"locked": false,
"milestone": "v1.4",
"number": 3466,
"state": "open",
"title": "quarto command line function failing to ... |
### Bug description
Hello,
I can not use/create bash aliases in quarto bash chunks.
The following returns nothing [it should show the list of available aliases]
````
```{bash}
alias
```
````
Assigning new aliases returns this error: "`/usr/bin/bash: line 2: l: command not found`"
````
```{bash}
alias... | {
"assignee": null,
"comments": 1,
"created_at": "2022-11-26T21:50:55Z",
"creator": "elgabbas",
"is_pull_request": false,
"labels": [],
"locked": false,
"milestone": null,
"number": 3465,
"state": "closed",
"title": "bash aliases not recognized in quarto",
"url": "https://github.com/quarto-dev/q... |
### Bug description
In https://github.com/quarto-dev/quarto-cli/commit/0f56fc0aabe39778f5aab79c5ad4bef27307776c, the `subtitle` field was added as an option for sidebars. It also pops up as a valid option in RStudio:
<img width="549" alt="image" src="https://user-images.githubusercontent.com/73663/204073770-15bcd9a... | {
"assignee": null,
"comments": 1,
"created_at": "2022-11-26T05:45:10Z",
"creator": "andrewheiss",
"is_pull_request": false,
"labels": [
"bug"
],
"locked": false,
"milestone": null,
"number": 3462,
"state": "closed",
"title": "Sidebar subtitle not rendering",
"url": "https://github.com/qua... |
### Bug description
I have a qmd file as follows named `hard-line-breaks.qmd`:
```markdown
---
title: "Hard Line Breaks"
format:
html:
md_extensions: +hard_line_breaks
---
these
words
should
be
on
seperate
lines
```
If I run `pandoc -f markdown+hard_line_breaks -t html hard-line-breaks.qmd... | {
"assignee": null,
"comments": 3,
"created_at": "2022-11-26T00:33:20Z",
"creator": "ratnanil",
"is_pull_request": false,
"labels": [
"bug"
],
"locked": false,
"milestone": null,
"number": 3461,
"state": "closed",
"title": "Quarto does not respect my markdown extension",
"url": "https://gi... |
### Bug description
Hello,
I am rendering a website on Windows 10 with the Quarto extension v1.56.0 on VS Code v1.73.1. I have tried and failed to change the active link color in the Table of Contents using CSS. I know that I am specifying the right CSS class because the style sheet below will affect the link boldn... | {
"assignee": null,
"comments": 2,
"created_at": "2022-11-25T21:30:07Z",
"creator": "lawalter",
"is_pull_request": false,
"labels": [
"bug"
],
"locked": false,
"milestone": null,
"number": 3460,
"state": "closed",
"title": "Can't specify TOC link color with CSS",
"url": "https://github.com... |
### Bug description
Still looking for a good solution to https://github.com/quarto-dev/quarto-cli/issues/135, I found https://github.com/minrk/allthekernels which seems like a great candidate: it's a simple Jupyter kernel that forwards code cells to different sub-kernels for different languages (this also seems to b... | {
"assignee": null,
"comments": 1,
"created_at": "2022-11-25T17:37:41Z",
"creator": "knuesel",
"is_pull_request": false,
"labels": [
"enhancement",
"jupyter"
],
"locked": false,
"milestone": "Future",
"number": 3459,
"state": "open",
"title": "Code block language not working with \"allth... |
### Bug description
This anomaly occurs in RStudio Server. i had created a QMD-file inside a subfolder that was inside a subfolder. Testing via Render was no problem. Suddenly rendering did not work anymore and instead of a rendered presentation a rendered webpage was displayed in Presentation view.
i created a tes... | {
"assignee": null,
"comments": 2,
"created_at": "2022-11-25T17:01:39Z",
"creator": "piiskop",
"is_pull_request": false,
"labels": [
"bug",
"needs-repro"
],
"locked": false,
"milestone": "Future",
"number": 3458,
"state": "closed",
"title": "Presentation view does not update automaticall... |
### Bug description
Hi,
I have really strange table rendering problems.
My code is the one below. If I render it, the python ouput table is printed as plain text

If I change `{r}` in `{{r}}`, and re... | {
"assignee": "rich-iannone",
"comments": 5,
"created_at": "2022-11-25T15:41:39Z",
"creator": "aborruso",
"is_pull_request": false,
"labels": [
"enhancement",
"upstream",
"tables"
],
"locked": false,
"milestone": "v1.4",
"number": 3457,
"state": "open",
"title": "coexistence of R and... |
In `quarto preview --help` output, the following line needs a space:
> Automatically reloads the browser *wheninput* files or document resources
* "wheninput" -> "when input"
Tested in quarto version 1.3.26:
 site to Github for continuous deployment using the [Github Action](https://quarto.org/docs/publishing/netlify.html#github-action) approach. `publish.yml` is set up per [this doc](https://quarto.or... | {
"assignee": null,
"comments": 2,
"created_at": "2022-11-24T17:26:37Z",
"creator": "cgoo4",
"is_pull_request": false,
"labels": [
"bug"
],
"locked": false,
"milestone": null,
"number": 3450,
"state": "closed",
"title": "Unable to Push to Github for continuous deployment to Netlify",
"url"... |
Building on this previous question about pdf in quarto books #1270, can you insert a pdf into a quarto document - for example as you can in latex? https://stackoverflow.com/questions/2739159/inserting-a-pdf-file-in-latex
_Originally posted by @PublicHealthDataGeek in https://github.com/quarto-dev/quarto-cli/issues/... | {
"assignee": null,
"comments": 1,
"created_at": "2022-11-24T16:39:49Z",
"creator": "PublicHealthDataGeek",
"is_pull_request": false,
"labels": [],
"locked": false,
"milestone": null,
"number": 3447,
"state": "closed",
"title": "Can you insert a pdf into a quarto document?",
"url": "https://gith... |
### Bug description
When using OJS code cells in a Quarto file, I do not get any output in the rendered HTML.
Hyperlink to .qmd file in GitHub repo: https://github.com/larnsce/ojs-test-drive/blob/main/ojs-test-drive.qmd
I tried to add the .qmd file here, but GiHub does not allow me to upload it.
# My render... | {
"assignee": null,
"comments": 5,
"created_at": "2022-11-24T15:21:19Z",
"creator": "larnsce",
"is_pull_request": false,
"labels": [],
"locked": false,
"milestone": null,
"number": 3446,
"state": "closed",
"title": "No ouput from OJS code cells in rendered HTML",
"url": "https://github.com/quart... |
I think we're forwarding self-contained: true to pandoc's embed-resources: true but we're not passing embed-resources directly. This is a bug, right?
### Discussed in https://github.com/quarto-dev/quarto-cli/discussions/3436
<div type='discussions-op-text'>
<sup>Originally posted by **dmacoritto** November... | {
"assignee": "cscheid",
"comments": 0,
"created_at": "2022-11-24T14:38:00Z",
"creator": "cscheid",
"is_pull_request": false,
"labels": [
"bug"
],
"locked": false,
"milestone": "v1.4",
"number": 3445,
"state": "open",
"title": "embed-resources returns a libs folder",
"url": "https://github... |
### Bug description
IDE: VScode with Quarto 1.2.269
OS: Windows 11
Description:
Suppose I create a default web project.
Then I open the code wrap and line number in configs as below:
````yml
format:
html:
code-line-numbers: true
code-overflow: wrap
````
Then if I have a code block wi... | {
"assignee": null,
"comments": 0,
"created_at": "2022-11-24T06:23:20Z",
"creator": "WAcry",
"is_pull_request": false,
"labels": [
"enhancement"
],
"locked": false,
"milestone": "Future",
"number": 3442,
"state": "open",
"title": "code wrap incorrectly with line number",
"url": "https://gi... |
### Bug description
I've noticed that the styling of cross-references (e.g., to chapters) differs for HTML and PDF output.
I'm using R Studio with R version 4.2.2. Running Quarto 1.2.258 on a Windows computer.
**Minimal Reproducible Example:**
```
---
title: "HTML / PDF Cross-Rerefence Test"
# CROSS-REFEREN... | {
"assignee": null,
"comments": 4,
"created_at": "2022-11-23T14:18:44Z",
"creator": "SHogenboom",
"is_pull_request": false,
"labels": [
"duplicate",
"enhancement",
"crossref"
],
"locked": false,
"milestone": "Future",
"number": 3440,
"state": "closed",
"title": "FR: Uniform Cross-Ref... |
### Bug description
Consider the following minimal working example:
``````
---
title: "MWE"
format: docx
---
## Quarto
Quarto enables you to weave together content and executable code into a finished document.
To learn more about Quarto see <https://quarto.org>.
::: {#fig-r-logos layout-ncol="2"}
![R... | {
"assignee": "cscheid",
"comments": 7,
"created_at": "2022-11-23T09:22:00Z",
"creator": "rgaiacs",
"is_pull_request": false,
"labels": [
"enhancement",
"docx"
],
"locked": false,
"milestone": "v1.4",
"number": 3435,
"state": "open",
"title": "Subfigure overflows width available space. "... |
### Bug description
Word format doesn't respect PART and its contents in Quarto Book, they will be auto removed.
<img width="1103" alt="ζͺε±2022-11-23 11 41 18" src="https://user-images.githubusercontent.com/12031874/203467265-7075d424-198a-4ef8-8d50-38d361593d19.png">
## reproduce
<https://github.com/Xiang... | {
"assignee": null,
"comments": 1,
"created_at": "2022-11-23T04:06:37Z",
"creator": "XiangyunHuang",
"is_pull_request": false,
"labels": [
"bug",
"docx"
],
"locked": false,
"milestone": "Future",
"number": 3434,
"state": "open",
"title": "Word format doesn't respect PART and its contents... |
### Bug description
LaTeX math can't be rendered when output is epub format.
### Step 1. Create a Quarto Book followed by RStudio IDE's guides.
### Step 2. Insert some math to `index.qmd`, here are some examples.
```
$y = \beta_0 + \sum_{i=1}^{999}\beta_i x_i$
$$
S_k = \sum_{x=0}^{k} p_x
$$
$$
p_x ... | {
"assignee": null,
"comments": 3,
"created_at": "2022-11-23T02:21:53Z",
"creator": "XiangyunHuang",
"is_pull_request": false,
"labels": [
"bug"
],
"locked": false,
"milestone": null,
"number": 3432,
"state": "closed",
"title": "[WARNING] Could not convert TeX math y = \\beta_0 + \\sum_{i=1}... |
### Bug description
Categories in post title banners don't currently wrap on small screens. Instead they always display as a single row even if they exceed the screen width. Currently (v1.2.269) the CSS for categories is:
```css
.quarto-title .quarto-categories {
display: flex;
column-gap: .4em;
padding-b... | {
"assignee": "dragonstyle",
"comments": 4,
"created_at": "2022-11-23T00:41:02Z",
"creator": "mccarthy-m-g",
"is_pull_request": false,
"labels": [
"bug"
],
"locked": false,
"milestone": "v1.3",
"number": 3431,
"state": "closed",
"title": "Categories in post title banners don't wrap on small ... |
Writing a book in Quarto. I'd like to send individual chapters to colleagues for review, but not send them the entire book. I could send everything to a .docx and then delete most chapters, but I wonder whether there is a neater way to do this. Of course, I could copy the chapter and set up a single chapter document... | {
"assignee": null,
"comments": 2,
"created_at": "2022-11-22T19:26:05Z",
"creator": "hueyrb",
"is_pull_request": false,
"labels": [],
"locked": true,
"milestone": null,
"number": 4494,
"state": "closed",
"title": "output single chapters in Quarto book",
"url": "https://github.com/quarto-dev/quar... |
### Bug description
Hi,
I have the code below.
If I try to render it, the altair chart is not rendered.
If I remove the OJS table the chart is rendered.
In the browser console I have these vega errors:
, I went ahead and tried quarto's _include_ feature in a Quarto **_website... | {
"assignee": null,
"comments": 4,
"created_at": "2022-11-22T09:51:13Z",
"creator": "emmansh",
"is_pull_request": false,
"labels": [
"bug"
],
"locked": false,
"milestone": null,
"number": 3421,
"state": "closed",
"title": "`{{< include >}}` in a Quarto website to re-use content between pages... |
It can't _only_ be solved with an anchor because we need javascript to switch tabs. But it might be possible to add something to our tabby runtime to do this.
### Discussed in https://github.com/quarto-dev/quarto-cli/discussions/3415
<div type='discussions-op-text'>
<sup>Originally posted by **aborruso** Novem... | {
"assignee": "cscheid",
"comments": 1,
"created_at": "2022-11-21T23:01:17Z",
"creator": "cscheid",
"is_pull_request": false,
"labels": [
"enhancement"
],
"locked": false,
"milestone": "v1.4",
"number": 3416,
"state": "open",
"title": "HTML output: is there a tabset anchor?",
"url": "https... |
### Bug description
When trying to use an extension theme for a revealJS presentation that attempts to `@include` additional `.scss` files, quarto throws an error that it can't find the styles to import when trying to compile the scss.
Reproducible example available in [this repo](https://github.com/dgkf/quarto-rev... | {
"assignee": "dragonstyle",
"comments": 0,
"created_at": "2022-11-21T19:31:01Z",
"creator": "dgkf",
"is_pull_request": false,
"labels": [
"bug"
],
"locked": false,
"milestone": "v1.3",
"number": 3414,
"state": "closed",
"title": "Extension themes with @import scss rule fail to compile for r... |
I'm running quarto on MacOS Monterey (12.1).
When issueing the render command I get the following error:
ERROR: TypeError: Cannot read properties of undefined (reading 'toLowerCase').
I've tried rendering from within VSCode and Jupyter Lab. Both give the same error message.
No clue what causes this. | {
"assignee": null,
"comments": 1,
"created_at": "2022-11-21T14:51:19Z",
"creator": "renenadorp",
"is_pull_request": false,
"labels": [
"needs-repro"
],
"locked": false,
"milestone": null,
"number": 3411,
"state": "closed",
"title": "ERROR: TypeError: Cannot read properties of undefined (rea... |
If `_quarto.yml` has a part with no chapters, e.g. "Foo" in the example:
```
book:
title: "part-test"
chapters:
- index.qmd
- part: "Foo"
chapters:
- part: "Bar"
chapters:
- "intro.qmd"
```
Then the build fails with:
```
In file _quarto.yml
(line 8, ... | {
"assignee": null,
"comments": 5,
"created_at": "2022-11-21T08:08:45Z",
"creator": "cjdbarlow",
"is_pull_request": false,
"labels": [],
"locked": false,
"milestone": null,
"number": 3412,
"state": "closed",
"title": "Property name part is invalid when the part is empty and using Github Actions",
... |
This, in a website, will generate links to `/cv.pdf` and `/blog.html` regardless of the root directory of the website:
````
---
about:
template: trestles
links:
- text: Blog
url: "/blog.html"
- text: CV
url: "/cv.pdf"
---
```` | {
"assignee": "cscheid",
"comments": 1,
"created_at": "2022-11-20T21:07:11Z",
"creator": "cscheid",
"is_pull_request": false,
"labels": [
"bug"
],
"locked": false,
"milestone": "v1.4",
"number": 3404,
"state": "open",
"title": "root-relative hrefs in template links are not resolved properly"... |
### Discussed in https://github.com/quarto-dev/quarto-cli/discussions/3401
<div type='discussions-op-text'>
<sup>Originally posted by **JosiahParry** November 20, 2022</sup>
When including a math expression with `$$ ... $$` they appear immediately and are ignored by incremental options.
tag @cscheid
rep... | {
"assignee": "cscheid",
"comments": 1,
"created_at": "2022-11-20T15:03:05Z",
"creator": "cscheid",
"is_pull_request": false,
"labels": [
"revealjs"
],
"locked": false,
"milestone": "v1.3",
"number": 3402,
"state": "closed",
"title": "math expressions ignored in incremental slides",
"url":... |
### Bug description
Hello,
I noticed that for figures and tables generated by a code chunks, Quarto let me reference those by adding a `#| label:` and the relevant label. The same isn't true for equation generated by code chunks.
I would like to display math and equation expressions that actually works in the do... | {
"assignee": "cscheid",
"comments": 3,
"created_at": "2022-11-19T21:30:05Z",
"creator": "kompre",
"is_pull_request": false,
"labels": [
"duplicate",
"enhancement",
"crossref"
],
"locked": false,
"milestone": "v1.4",
"number": 3397,
"state": "closed",
"title": "use \"#| label: eq-xxx... |
### Bug description
I am trying to to include the render date, time and author email addresses in html reports as in Rmd. For example:

However, I am not able to do that in Quarto, and the time and emai... | {
"assignee": "dragonstyle",
"comments": 1,
"created_at": "2022-11-19T17:04:59Z",
"creator": "tmss1",
"is_pull_request": false,
"labels": [
"bug"
],
"locked": false,
"milestone": null,
"number": 3393,
"state": "closed",
"title": "Author email and time not showing in html reports ",
"url": ... |
### Bug description
I am rendering my .qmd files on Mac M2
When I include python code in .qmd files, the following error arises:
```
WARNING: Specified QUARTO_PYTHON '/Users/waterking/opt/anaconda3/bin/python' does not exist.
[1/3] posts/tutorials/ai-course-project.qmd
WARNING: Specified QUARTO_PYTHON '/Users/w... | {
"assignee": null,
"comments": 1,
"created_at": "2022-11-19T08:15:21Z",
"creator": "Waterkin",
"is_pull_request": false,
"labels": [
"bug"
],
"locked": false,
"milestone": null,
"number": 3391,
"state": "closed",
"title": "ERROR: Error reading kernel transport file: SyntaxError: Unexpected ... |
### Bug description
Using
~~~md
```{r, echo = FALSE}
# INITIALIZE CODE
hello <- 42
```
# Summary
In summary, this book has no content whatsoever.
~~~
in a Quarto Book chapter results in `INITIALIZE CODE` becoming the chapter title used **in the table of content**, although the `Summary` is still the t... | {
"assignee": "dragonstyle",
"comments": 1,
"created_at": "2022-11-18T20:50:05Z",
"creator": "HenrikBengtsson",
"is_pull_request": false,
"labels": [
"bug"
],
"locked": false,
"milestone": "v1.4",
"number": 3390,
"state": "open",
"title": "Books: Table of Content picks up code-block comments... |
### Bug description
Issue: Any page that is referenced by a sidebar will have that sidebar applied to it, even if a separate definition for that page's sidebar exists in _quarto.yml
Related to https://github.com/quarto-dev/quarto-cli/issues/1853
Observed Behavior: In this repo, observe that the "Get Started" p... | {
"assignee": "dragonstyle",
"comments": 3,
"created_at": "2022-11-18T20:41:02Z",
"creator": "kmasiello",
"is_pull_request": false,
"labels": [
"bug"
],
"locked": false,
"milestone": "v1.3",
"number": 3389,
"state": "closed",
"title": "Website hybrid nav - pages referenced by a sidebar will ... |
We have inconsistently rendered descriptions of keyboard shortcuts on the website
- https://quarto.org/docs/get-started/authoring/rstudio.html ("Ctrl-Shift-P")
- https://quarto.org/docs/get-started/computations/rstudio.html ("β§βK")
It would be really slick to have a `keyboard-shortcut` shortcode which rendered a... | {
"assignee": "cscheid",
"comments": 3,
"created_at": "2022-11-18T16:57:58Z",
"creator": "cscheid",
"is_pull_request": false,
"labels": [
"enhancement"
],
"locked": false,
"milestone": "v1.3",
"number": 3384,
"state": "closed",
"title": "`keyboard-shortcut` shortcodeΒ ",
"url": "https://gi... |
The "language content" feature described in the [documentation](https://quarto.org/docs/projects/profiles.html#language-content) doesn't seem to be implemented: rendering the example gives a document with both the English and French quotes.
I think the feature would be bad as default behavior anyway: the `lang` attr... | {
"assignee": "cscheid",
"comments": 2,
"created_at": "2022-11-18T13:53:53Z",
"creator": "knuesel",
"is_pull_request": false,
"labels": [
"bug"
],
"locked": false,
"milestone": null,
"number": 3372,
"state": "closed",
"title": "Documented \"Language Content\" feature not implemented",
"url... |
Where should we set knitr chunk options in YAML? The original proposal from Max was:
```yaml
format:
html:
fig-width: 6
fig-height: 4.25
fig-align: center
```
or
```
knitr:
opts_chunk:
fig-width: 6
fig-height: 4.25
fig-align: center
```
More comments from him:
> An... | {
"assignee": "cwickham",
"comments": 7,
"created_at": "2022-11-18T13:39:12Z",
"creator": "allenmanning",
"is_pull_request": false,
"labels": [
"documentation"
],
"locked": false,
"milestone": "v1.4",
"number": 3371,
"state": "open",
"title": "Document unsupported knitr chunk options",
"ur... |
### Bug description
Dear Quarto Team,
I encountered an annoying bug in Quarto.
To reproduce this bug:
1. create a book with `quarto create project book`
2. put an R chunk producing a figure in one of the chapters
3. set fig-width: 3 and out-width: "85%" in pdf section of format in _quarto.yaml
4. render proj... | {
"assignee": "cscheid",
"comments": 1,
"created_at": "2022-11-18T13:29:52Z",
"creator": "fruchtblase",
"is_pull_request": false,
"labels": [
"bug",
"duplicate",
"crossref"
],
"locked": false,
"milestone": "v1.4",
"number": 3370,
"state": "closed",
"title": "out-width is ignored if f... |
### Bug description
Hello,
I am trying to switch off the search button in a quarto website project using `search: false`. It does not work in the **navbar**, but works as expected in the **sidebar**.
Thanks, Ahmed
```
project:
type: website
website:
title: ""
navbar:
search: false
f... | {
"assignee": null,
"comments": 4,
"created_at": "2022-11-18T12:42:08Z",
"creator": "elgabbas",
"is_pull_request": false,
"labels": [
"bug"
],
"locked": false,
"milestone": null,
"number": 3369,
"state": "closed",
"title": "Can not hide search from a quarto website project's navbar",
"url"... |
### Bug description
New user here, migrating from fastpages.
I ran `quarto publish` after [migrating my fastpages blog](https://nbdev.fast.ai/tutorials/blogging.html#migrating-from-fastpages), and selected the GitHub Pages deployment option. Despite the [GitHub deployment workflow](https://github.com/drscotthawl... | {
"assignee": "cscheid",
"comments": 25,
"created_at": "2022-11-18T07:18:21Z",
"creator": "drscotthawley",
"is_pull_request": false,
"labels": [
"bug",
"needs-repro",
"publishing"
],
"locked": false,
"milestone": "v1.3",
"number": 3368,
"state": "closed",
"title": "quarto publish fro... |
Not sure if this is a quarto issue, reticulate issue, documentation issue or just plain user error.
Your docs suggest that if (in RStudio) I make an environment with venv in my project directory, this should be picked up automatically by R when I run a python chunk. This is not the case for me; it just loads my las... | {
"assignee": null,
"comments": 8,
"created_at": "2022-11-17T17:11:58Z",
"creator": "rsenft1",
"is_pull_request": false,
"labels": [],
"locked": false,
"milestone": null,
"number": 4504,
"state": "closed",
"title": "Reticulate does not find venv env/ if previous environment exists",
"url": "http... |
### Discussed in https://github.com/quarto-dev/quarto-cli/discussions/3362
<div type='discussions-op-text'>
<sup>Originally posted by **robertwelz** November 17, 2022</sup>
Hi,
i wanted to deploy a website (created with quarto) using QuartoPub using the `quarto publish quarto-pub.` command. I believe i follow... | {
"assignee": "softwarenerd",
"comments": 10,
"created_at": "2022-11-17T15:20:32Z",
"creator": "cscheid",
"is_pull_request": false,
"labels": [
"bug",
"publishing"
],
"locked": false,
"milestone": "v1.4",
"number": 3365,
"state": "open",
"title": "quarto publish quarto-pub put user sites... |
### Discussed in https://github.com/quarto-dev/quarto-cli/discussions/3359
<div type='discussions-op-text'>
<sup>Originally posted by **fuhrmanator** November 16, 2022</sup>
I spent several hours trying to track down why my CI for the Quarto book project I have (running on ubuntu) wasn't building a valid PDF (th... | {
"assignee": "dragonstyle",
"comments": 1,
"created_at": "2022-11-17T14:05:50Z",
"creator": "dragonstyle",
"is_pull_request": false,
"labels": [],
"locked": false,
"milestone": "v1.2",
"number": 3364,
"state": "closed",
"title": "Debugging corrupted PDFs turns out to be a problem with Quarto afte... |
### Bug description
I am trying to publish quarto-content to a server hosting RStudio Connect. When i run `quarto publish connect inst/quarto.qmd --token $API_KEY --server $CONNECT_SERVER` i get the following error :
```
ERROR: TypeError: error sending request for url (<CONNECT_SERVER>/__api__/v1/content): error try... | {
"assignee": null,
"comments": 3,
"created_at": "2022-11-17T11:44:03Z",
"creator": "TheisFerre",
"is_pull_request": false,
"labels": [
"bug"
],
"locked": false,
"milestone": "Future",
"number": 3363,
"state": "open",
"title": "Quarto publish connect BadCertificate",
"url": "https://github... |
### Bug description
When rendering two figures created with Julia Plots (GR backend) side-by-side, the font of the plots is tiny. Is there a way to adjust this or is this a bug?
MWE Quarto document is shown below and screenshot demonstrating the problem is attached.
Versions:
Quarto: 1.2.269
OS: macOS 13.0.1
... | {
"assignee": null,
"comments": 1,
"created_at": "2022-11-17T04:51:26Z",
"creator": "plessl",
"is_pull_request": false,
"labels": [
"bug",
"julia"
],
"locked": false,
"milestone": null,
"number": 3361,
"state": "closed",
"title": "Tiny font for side-by-side plot",
"url": "https://githu... |
### Bug description
<img width="958" alt="render-pdf_open-in-browser" src="https://user-images.githubusercontent.com/20233085/202265650-f31857fe-c785-4506-99e3-2605a49c593f.png">
'Open in Browser' opens https://coder.jupyter.b-data.ch/hub/proxy/7095/web/viewer.html, which is wrong.
---
<img width="958" alt="r... | {
"assignee": null,
"comments": 7,
"created_at": "2022-11-16T18:55:07Z",
"creator": "benz0li",
"is_pull_request": false,
"labels": [
"bug",
"needs-repro"
],
"locked": false,
"milestone": null,
"number": 3352,
"state": "closed",
"title": "Render PDF: 'Open in Browser' opens wrong link (co... |
### Bug description
Hello. Getting an error which I've failed to find any help online for. Hoping someone can advise please? I can't render a very simple quarto page. See below. I'm using vs code on Windows.
 for Windows
Mozilla/5.0 (Windows NT... | {
"assignee": null,
"comments": 2,
"created_at": "2022-11-16T09:32:14Z",
"creator": "fortunewalla",
"is_pull_request": false,
"labels": [
"windows"
],
"locked": false,
"milestone": "v1.3",
"number": 3343,
"state": "closed",
"title": "python not detected by `quarto check` but works in cmd & R... |
### Bug description
There is inconsistent behavior when including citation keys inside tables, but it's a really tricky issue and I'm not sure if it's a Quarto issue or an issue with other table-making packages.
When making a table with regular Markdown or with `knitr::kable()`, citation keys that are included in ... | {
"assignee": "cscheid",
"comments": 8,
"created_at": "2022-11-16T00:19:10Z",
"creator": "andrewheiss",
"is_pull_request": false,
"labels": [
"bug",
"crossref",
"tables"
],
"locked": false,
"milestone": "v1.4",
"number": 3340,
"state": "open",
"title": "Citations in tables do not ren... |
### Bug description
Hello,
I am trying to change the values of `code-block-border-left-size`, `code-block-border-left-style` and `max-width`, without success. Do I correctly change them or is this due to a bug?
````
---
format:
html:
code-block-bg: true
code-block-border-left: "#31BAE9"
code-... | {
"assignee": null,
"comments": 4,
"created_at": "2022-11-15T20:17:26Z",
"creator": "elgabbas",
"is_pull_request": false,
"labels": [],
"locked": false,
"milestone": null,
"number": 3337,
"state": "closed",
"title": "Changing `code-block-border-left-size`, `code-block-border-left-style` and `max-w... |
[WinGet Releaser](https://github.com/vedantmgoyal2009/winget-releaser) is a workflow that automatically creates manfiests for [winget-pkgs](https://github.com/vedantmgoyal2009/winget-releaser) and creates a PR for it. It would look a bit like this:
```yaml
name: Publish to WinGet
on:
release:
types: [relea... | {
"assignee": "cderv",
"comments": 1,
"created_at": "2022-11-15T17:44:39Z",
"creator": "russellbanks",
"is_pull_request": false,
"labels": [
"enhancement",
"windows"
],
"locked": false,
"milestone": "Future",
"number": 3334,
"state": "closed",
"title": "Use WinGet Releaser for automated ... |
### Bug description
References to RStudio PBC should be updated to Posit, e.g. https://github.com/quarto-dev/quarto-cli/blob/06f518b480bbd451ccaac466c73b123e9e758e43/COPYRIGHT#L2
### Checklist
- [ ] Please include a minimal, fully reproducible example in a single .qmd file? Please provide the whole file rather than ... | {
"assignee": "rich-iannone",
"comments": 0,
"created_at": "2022-11-15T06:02:08Z",
"creator": "philip-khor",
"is_pull_request": false,
"labels": [
"bug",
"documentation"
],
"locked": false,
"milestone": "v1.3",
"number": 3329,
"state": "closed",
"title": "Change RStudio PBC references to... |
### Bug description
I took a json string and escaped it, and it works fine as text embedded inside mermaid (tested using mermaid online https://mermaid.live/), but quarto fails to compile the mermaid graph as part of a slide presentation.
```
graph TD
A["{"a":2, <br/> "... | {
"assignee": "cscheid",
"comments": 5,
"created_at": "2022-11-15T02:24:17Z",
"creator": "bayeslearner",
"is_pull_request": false,
"labels": [
"bug",
"needs-repro",
"mermaid"
],
"locked": false,
"milestone": "v1.3",
"number": 3328,
"state": "closed",
"title": "No way to escape specia... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.