A reveal.js plugin to include code samples in slides
First, initialize the plugin in the dependencies
part of the reveal.js config:
{ src: 'plugin/sampler.js' }
This assumes that you copied the sampler.js
file to plugin/sampler.js
in
your reveal.js tree, but you can obviously pick whatever path you want. To
include a code sample in a slide, use <code>
tags as follows:
<pre><code data-sample='path/to/source#sample-name'></code></pre>
The plugin will extract the sample named sample-name
from the source file
whose path is given, and write it inside the <code>
tag. If no sample-name
is given, the whole file is included. It is also possible to use line numbers
instead of a sample name to delimit a code snippet. The basic syntax is
path/to/file#start-end
, but multiple ranges or individual line numbers
are supported too:
<pre><code data-sample='path/to/source#5-9'></code></pre>
<pre><code data-sample='path/to/source#5-9,14-18'></code></pre>
<pre><code data-sample='path/to/source#5,7,9'></code></pre>
<pre><code data-sample='path/to/source#5-9,14,15'></code></pre>
The plugin will also add the language-xxx
class to the <code>
tag, where
xxx
is the extension of the source file, so that code highlighting triggers
properly if set up. This usually works out of the box, because highlight.js
can recognize the extensions associated to most languages. If you need to
explicitly set the language to use (e.g. because the file extension is
misleading), set the language-xxx
class yourself on the <code>
tag and
the plugin will leave it alone.
To define a named sample inside a source file, use the following syntax:
sample(sample-name)
code-inside-the-sample
end-sample
sampler.js
will parse the source file, and anything between the sample(sample-name)
and the end-sample
tags will be taken to be a code sample named sample-name
.
Note that anything on the same line as one of the special tags will not be taken
as part of the sample, which is what allows this plugin to be language-agnostic,
by commenting the tags in your source code. For example:
// sample(main)
int main() {
std::cout << "this is C++ code" << std::endl;
}
// end-sample
Multiple samples can appear in the same source file, as long as they have different names. If many samples have the same name, they will be considered as a single sample and concatenated together. For example, the following code will create a single sample with name 'foo':
// sample(foo)
first part of the sample
// end-sample
some code not in the sample
// sample(foo)
second part of the sample
// end-sample
Within a sample, any line containing skip-sample
will be skipped, which
allows leaving implementation details out of slides:
// sample(foo)
class Foo {
void implementation_detail(); // skip-sample
void hello() { std::cout << "hello!" << std::endl; }
};
// end-sample
Specific lines or line ranges can be marked in a sample. To do this, use the
data-sample-mark
attribute as follows:
<pre><code data-sample='path/to/source#sample-name' data-sample-mark="1,3"></code></pre>
The line numbers specified in data-sample-mark
are relative to the snippet
itself, not to the file from which the snippet was extracted. Also, line
ranges are supported, just like for extracting snippets from a file.
If all lines of the sample have an overall indentation you can remove it using the
attribute data-sample-indent
.
<pre><code data-sample='path/to/source#sample-name' data-sample-indent="remove"></code></pre>
<pre><code data-sample='path/to/source#sample-name' data-sample-indent="keep"></code></pre>
You can change the default behaviour (snippets without the attribute) using
the option sampler.removeIndentation
. The default value is false
.
{
sampler : {
removeIndentation: true
}
}
It's that simple! To get started, you can find an example of using the plugin
in the example/
directory.