lierdakil / pandoc-crossref

Pandoc filter for cross-references
https://lierdakil.github.io/pandoc-crossref/
GNU General Public License v2.0
911 stars 72 forks source link

Centering captions for HTML output #383

Closed amine-aboufirass closed 1 year ago

amine-aboufirass commented 1 year ago

Is there a way to center captions for code blocks, figures and tables? Why is the default setting aligned to the left?

lierdakil commented 1 year ago

Why is the default setting aligned to the left?

Because that's the browser default :shrug:

Add something like this to metadata?

header-includes:
- '<style>figure, .listing > p { text-align: center; }</style>'

Table captions are already centred by default in most browsers.

amine-aboufirass commented 1 year ago

I see. Thanks.