Skip to content
Grav 2.0 is officially stable. Read the announcement →
Archive

Center Image using Markdown

Started by Muut Archive 11 years ago · 10 replies · 15149 views
11 years ago

Hi!

Is there way to center images (and text) using Markdown?

I tried the following:

<div align="center" markdown="1">
code here
</div>

and also

-> code here <-

but neither text nor images are aligned in the center of the page ...

Best regards; siren

11 years ago

Thanks for you answer! Can I enter the CSS directly in the Frontmatter-field or do I need to create a custom.css-file?

11 years ago

Or - WHERE and with which syntax can I define the {.center}-class? It is not possible, to enter it directly in the frontmatter-field. In plain HTML I would use STYLE in the head ...

11 years ago

For me it works only with images:

TXT
![](logo.png)   {.center}

If I try with text, the webpage shows the code, without changing the alignment:

TXT
text   {.center}

Am I missing something?

11 years ago

@andreafa Unfortunately not. Adding classes to text paragraphs is not supported in Markdown. You may try it here http://parsedown.org/extra/ to convince yourself and play a little bit around. The only thing you can do is to wrap your contents in a div like

HTML

<div markdown="1" class="center">
  Your _centered_ **markdown** content!
</div>
---
11 years ago

Thank you, I tried the other solution too, but I get an error
see the post linked above (not to duplicate the request)

11 years ago

The error reported on the other post has been fixed, thanks again.

The only syntax that works for me is the one suggested by siren386, with "markdown extra within a container":

HTML

<div align=“center”>
<div markdown=“1”>
# Some markdown syntax here and/or use images:
![](001.jpg)
![](002.jpg)
</div>
</div>
---

Suggested topics

Topic Participants Replies Views Activity
Archive · by Deleted User, 9 years ago
0 1344 9 years ago
Archive · by Muut Archive, 9 years ago
2 930 9 years ago
Archive · by Muut Archive, 9 years ago
2 4058 9 years ago
Archive · by Muut Archive, 9 years ago
1 2943 9 years ago
Archive · by Muut Archive, 9 years ago
3 1116 9 years ago