aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/_posts/2021-04-09-snippets.md
blob: c7328dc44554a5274469f14b7f297f4ef5145f28 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---
title: Code snippets
excerpt: >
  Easily include code snippets in your posts.
category: code
snippets_root_directory: snippets
snippets_language: c++
snippets:
  hello:
    - hello.hpp
    - hello.cpp
  world:
    - world.hpp
    - world.cpp
---
It's pretty simple, just use the corresponding include:

{% include jekyll-theme/snippets/section.html section_id='hello' %}

This is another set of snippets:

{% include jekyll-theme/snippets/section.html section_id='world' %}

Of course, you can insert a code snippet using the regular Markdown syntax
without any highlighting:

```
#!/usr/bin/env bash

set -o errexit -o nounset -o pipefail

main() {
    echo "Hello, world!"
}

main
```

The same with highlighting enabled:

```bash
#!/usr/bin/env bash

set -o errexit -o nounset -o pipefail

main() {
    echo "Hello, world!"
}

main
```

Also, some inline code: `./test.sh`!

Here's a snippet which requires a horizontal scrollbar to display, it should
look OK:

```
#!/usr/bin/env bash

echo AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA What a long snippet
```