Evaldown
Evalute JavaScript snippets in markdown files and output static pages.
This project will recursively traverse a folder structure searching
for markdown files. Once found, it will extract javascript code blocks,
evaluate them and serialise their pretty-printed output for rendering.
The tool can even automatically capture the output of your examples.
See the updating section for more details.
Use
Once the tool is installed and configured it can be used via the CLI.
which supports processing a single markdown file or more typically
a directory of files with configuration read from a file.
Process single files
In single file use, the tool can be invoked as follows:
./node_modules/.bin/evaldown ./docs/README.md > README.md
Process directories of files
This mode requires a configuration file. Once written, the tool
is invoked will read the source path, scan it for markdown files
and write output to a target path. This mode is invoked by:
./node_modules/.bin/evaldown --config <path_to_config>
The sections below discuss configuring the the tool and
authoring you first example files.
Configuration
The tool ships with inbuilt support for processing directories
of markdown files. To do this, a small config file is needed to
indicate where the source path to read files from a target path
to write generated output to.
A basic evaldown.conf.js
file is as follows:
module.exports = {
sourcePath: "./input",
targetPath: "./output"
};
Output format and extension
Currently the rendering process will produce HTML files as standard with
their usual .html
file extension. The tool can however be requested to
output markdown files to the output directory - with the output blocks
populated - allowing its use to pre-process markdown files before they
are passed to another template engine.
"inlined"
This option will write markdown files with the code and output blocks
replaced with static HTML that inlines all the colouring information.
module.exports = {
outputFormat: 'inlined',
sourcePath: "./input",
targetPath: "./output"
};
"markdown"
This option will write markdown files with the code and output blocks
replaced with text (for use when external highlighting is desired).
module.exports = {
outputFormat: 'markdown',
sourcePath: "./input",
targetPath: "./output"
};
Capturing evaluation results from the console
By default, JavaScript code blocks found in markdown files - which
we refer to as snippets - are allowed to use return
statements.
The returned values will be rendered as an output block - an example
of this is shown in the authoring section below.
In some cases, rather than capture the result you may wish to capture the
logging output of a command, perhaps for code that emits messages when it
finished or just an example that uses the console.
Capturing from the console can be configured by adding an outputCapture
key with a value of "console"
to the configuration object:
module.exports = {
outputCapture: "console",
sourcePath: "./input",
targetPath: "./output"
};
Authoring
Inside the input folder, you can make add markdown files that contain
"javascript" code blocks. In order to have any output shown these need
to be followed by "output" snippets.
By default, value returned from the code block is what will be captured
and displayed in the
```javascript
function doSomething() {
return { foo: "bar" };
}
// objects are inspected too
return doSomething();
```
```output
```
When they are rendered, the output will look something like:
function doSomething() {
return { foo: "bar" };
}
// objects are inspected too
return doSomething();
Customising snippets
When authoring examples you may find that you want to customise how
individual snippets are treated - be this to allow using promises or
to capture the console.
HTML comments inserted above the code blocks allow doing just this.
First, we look at an example that makes use of some async
code:
```js
return new Promise('foo');
```
```output
foo
```
Comments with the evaldown
marker will be located and the values
afterwards, which we call flags, will be used as processing hints.
Outputting uses of the console
would look something like:
```js
console.warn("whoa there!");
```
```output
whoa, there!
```
Updating examples
Rather than be forced to write the output by hand, we can automatially
execute the provided code snippets and inject their results into the
source markdown files. This is done using the "update"
option.
As you change your examples, updating means you can always keep the
output up-to-date. This mode is considered a primary use-case and
can be activated by supplying an additional command line option:
./node_modules/.bin/evaldown --config <path_to_config> --update
It can also be placed within the configuration file:
module.exports = {
update: true,
sourcePath: "./input",
targetPath: "./output"
};