-
We're migrating our currently handwritten HTML pages to Markdown and consider MkDocs Material as a potential static site generator. Maybe the wanted look isn't possible, but I thought, I rather ask before thinking of potential other options. This is what we currently have. Not the image + text always being neatly packed next to eachother: This is what I've managed so far with It's not as bad here, but gets worse if the texts are even shorter or there's no image to match. Is there somehow a way in Markdown or with extension syntax to specify that this should really be considered its own "row" of content? # Simple and Fast Multimedia Library
{ align=right }
## SFML is multi-media
SFML provides a simple interface to the various components of your PC, to ease the development of games and multimedia applications. It is composed of five modules: system, window, graphics, audio and network.
Discover their features more in detail in the tutorials and the API documentation.
{ align=left }
## SFML is multi-platform
With SFML, your application can compile and run out of the box on the most common operating systems: Windows, Linux, macOS and Android & iOS (with limitations).
Pre-compiled SDKs for your favorite OS are available on the download page.
{ align=right }
## SFML is multi-language
SFML has official bindings for the C and .Net languages. And thanks to its active community, it is also available in many other languages such as Java, Ruby, Python, Go, and more.
Learn more about them on the bindings page. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
You could wrap your headlines in block level elements, e.g. |
Beta Was this translation helpful? Give feedback.
You could wrap your headlines in block level elements, e.g.
divs
, which should achieve the desired effect.