-
The I want to change the labels as follows : |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 1 reply
-
Yes you can but when I checked there was no good documentation on this. I've remedied that here: https://quarto.org/docs/authoring/language.html#alternate-language |
Beta Was this translation helpful? Give feedback.
-
When I experimented with this, it puts the new labels in upper case even if I write them in initial caps. Is there a way to make the case of the labels be the case as it is written? Thanks. |
Beta Was this translation helpful? Give feedback.
-
I think this probably needs to be handled at the CSS level. @dragonstyle Is there a straightforward way for users to write CSS to change this behavior? |
Beta Was this translation helpful? Give feedback.
-
Right now, there is no built in option to customize this, so you have a couple of options:
.quarto-title-meta-heading {
text-transform: none !important;
}
|
Beta Was this translation helpful? Give feedback.
-
Thanks very much. I'll investigate this. Don
…On Mon, Apr 18, 2022 at 5:33 PM Charles Teague ***@***.***> wrote:
Right now, there is no built in option to customize this, so you have a
couple of options:
1. You can style it yourself using CSS with something like
.quarto-title-meta-heading {
text-transform: none !important;
}
1. You could choose the default Pandoc style heading using title-block-style:
none or to use our structure for the title block, but apply no built
in styles so you can CSS to style and layout the title block as you'd like
it use title-block-style: plain.
—
Reply to this email directly, view it on GitHub
<#600 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABR4JGHUZKPVZATVPXJQ253VFXIJZANCNFSM5S7C2PQQ>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
Yes you can but when I checked there was no good documentation on this. I've remedied that here: https://quarto.org/docs/authoring/language.html#alternate-language