Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Centering text/pictures in HTML with markdown and pandoc

I am trying to write a post with hakyll in markdown via pandoc.

I successfully added some pictures, tables and code blocks with markdown. However, I would like to center my pictures and some text paragraph.

Is it possible to center text and pictures with pandoc and the markdown markup language?

like image 463
JeanJouX Avatar asked Sep 08 '16 21:09

JeanJouX


1 Answers

Think of markdown as a nicer syntax for HTML – it's only the content, no styling. (Centering would be styling.) You cannot center text in HTML either. But you can add classes, then style them with CSS (in your Hakyll theme).

Pandoc markdown currently supports attributes on images:

![](img.jpg){.myClass}

but not paragraphs, however you can wrap stuff in divs:

# my markdown header

::: {.myClass}

one paragraph

second paragraph, **strong**

:::
like image 182
mb21 Avatar answered Sep 22 '22 09:09

mb21