-
Bug descriptionI would like to add more spacing between author and publication date. ---
title: Mesa Limpa
description: Relatório Dinâmico sobre processos abertos do SEI - SETIC
authors:
- name: author1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
- name: author2xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
date: today
format:
html:
theme: flatly
lang: pt
title-block-banner: true
server: shiny
--- |
Beta Was this translation helpful? Give feedback.
Answered by
mcanouil
May 18, 2023
Replies: 1 comment 3 replies
-
My guess, is that you are using HTML format thus needs to use CSS (developer mode of your favourite browser is here to help figure out which classes). Could you share a small "working" (reproducible) example to work with, i.e., a complete Quarto document or a Git repository? Thanks. You can share a Quarto document using the following syntax, i.e., using more backticks than you have in your document (usually four ````qmd
---
title: "Reproducible Quarto Document"
format: html
---
This is a reproducible Quarto document using `format: html`.
It is written in Markdown and contains embedded R code.
When you run the code, it will produce a plot.
```{r}
plot(cars)
```
The end.
```` |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
From the developper mode:
Then you see the CSS that you can modify live, you may also have direct link to documentation (https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns):
See Quarto document.