Jekyll style guide

Last modified on Sat Jul 22 11:30:02 2023 UTC.   Improve this page

Jekyll is a simple, blog-aware, static site generator.

The content is written in the GitHub-flavoured markdown, as implemented by the kramdown converter. Syntax highlighting is provided by Rouge.

Centered images

<div style="text-align:center">
<img alt="Alternate" src="/assets/images/2016/micro-os-plus-collection.png" />
</div>

Code blocks

1
2
3
4
5
6
7
#include <cmsis-plus/rtos/os.h>

int
os_main (int argc, char* argv[])
{
  return 0;
}

Currently this is not acceptable.

#include <cmsis-plus/rtos/os.h>

int
os_main (int argc, char* argv[])
{
  return 0;
}

To get such a display, use backticks and add the language:

``` c++
...
```

The highlight would be preferable, but since it does not work properly, the second version will be used.