blob: 17b82a3cc3c73ec963bdb94f5c0fdd2d413e6a48 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
---
title: Collapsible snippets
excerpt: >
Snippets can be hidden in collapsible panels.
snippets_root_directory: snippets
snippets_language: c++
snippets_collapsible: true
snippets:
hello:
- hello.hpp
- hello.cpp
world:
- world.hpp
- world.cpp
---
Just set a front matter value, and voilà!
{% include snippets/section.html section_id='hello' %}
This is another set of snippets:
{% include snippets/section.html section_id='world' %}
|