You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
---title: "Test Dashboard"author:
- name: John Doeorcid: 0000-0000-0000-0000affilifation:
name: My Institution
- name: Jane Doeorcid: 0000-0000-0000-0001affilifation:
name: My Institution---##
Dashboard Test
Expected behavior
I would expect a comma-separated list of authors when a dashboard is authored by multiple people.
For example: John Doe, Jane Doe
My use case for this is attempting to produce a dynamic "poster" presentation using the dashboard. So far I think it might work with a couple workarounds!
Actual behavior
Author names are concatenated with no punctuation. Trailing spaces which are included in the author name field are removed (which is expected), meaning at best I'd probably write a bit of javascript to capture the author field and format the author list.
Your environment
IDE: VSCode 1.91.1
OS: Windows 10 WSL2
Quarto check output
Quarto 1.5.55
[✓] Checking versions of quarto binary dependencies...
Pandoc version 3.2.0: OK
Dart Sass version 1.70.0: OK
Deno version 1.41.0: OK
Typst version 0.11.0: OK
[✓] Checking versions of quarto dependencies......OK
[✓] Checking Quarto installation......OK
Version: 1.5.55
Path: /opt/quarto/bin
[✓] Checking tools....................OK
TinyTeX: v2023.10
Chromium: 869685
[✓] Checking LaTeX....................OK
Using: TinyTex
Path: /home/emiz/.TinyTeX/bin/x86_64-linux
Version: 2023
[✓] Checking basic markdown render....OK
[✓] Checking Python 3 installation....OK
Version: 3.9.7 (Conda)
Path: /home/emiz/miniconda3/bin/python
Jupyter: (None)
Jupyter is not available in this Python installation.
Install with conda install jupyter
[✓] Checking R installation...........(None)
Unable to locate an installed version of R.
Install R from https://cloud.r-project.org/
The text was updated successfully, but these errors were encountered:
It seems that when Quarto sees a "fancy" author list like that, the author metadata key that is visible in the Lua filters is a plain concatenation of the author names. This happens in every format, not only in dashboards. In other formats, though, Quarto uses the fancy author list to synthesize the title block.
As a temporary workaround, you can do the following:
---
title: "Test Dashboard"
author:
- name: John Doe
orcid: 0000-0000-0000-0000
affilifation:
name: My Institution
- name: Jane Doe
orcid: 0000-0000-0000-0001
affilifation:
name: My Institution
filters:
- fix_author.lua
---
##
Dashboard Test
fix_author.lua
functionMeta(meta)
meta.author="John Doe, Jane Doe" -- or whatever else you needreturnmetaend
Bug description
Steps to reproduce
Expected behavior
I would expect a comma-separated list of authors when a dashboard is authored by multiple people.
For example:
John Doe, Jane Doe
My use case for this is attempting to produce a dynamic "poster" presentation using the dashboard. So far I think it might work with a couple workarounds!
Actual behavior
Author names are concatenated with no punctuation. Trailing spaces which are included in the author name field are removed (which is expected), meaning at best I'd probably write a bit of javascript to capture the author field and format the author list.
Your environment
IDE: VSCode 1.91.1
OS: Windows 10 WSL2
Quarto check output
Quarto 1.5.55 [✓] Checking versions of quarto binary dependencies... Pandoc version 3.2.0: OK Dart Sass version 1.70.0: OK Deno version 1.41.0: OK Typst version 0.11.0: OK [✓] Checking versions of quarto dependencies......OK [✓] Checking Quarto installation......OK Version: 1.5.55 Path: /opt/quarto/bin [✓] Checking tools....................OK TinyTeX: v2023.10 Chromium: 869685 [✓] Checking LaTeX....................OK Using: TinyTex Path: /home/emiz/.TinyTeX/bin/x86_64-linux Version: 2023 [✓] Checking basic markdown render....OK [✓] Checking Python 3 installation....OK Version: 3.9.7 (Conda) Path: /home/emiz/miniconda3/bin/python Jupyter: (None) Jupyter is not available in this Python installation. Install with conda install jupyter [✓] Checking R installation...........(None) Unable to locate an installed version of R. Install R from https://cloud.r-project.org/
The text was updated successfully, but these errors were encountered: