UNPKG
@argdown/cli
Version:
latest (1.7.5)
1.7.5
1.7.4
1.7.0
1.6.0
1.5.2
1.5.1
1.5.0
1.4.9
1.4.8
1.4.7
1.4.5
1.4.2
1.4.1
1.4.0
1.3.0
1.2.0
1.1.0
1.0.3
1.0.2
1.0.1
1.0.0
A command line interface for exporting Argdown files to html, dot or json.
christianvoigt/argdown
@argdown/cli
/
test
/
add-plugin.argdown.config.js
15 lines
(14 loc)
•
295 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
var
testPlugin = {
name
:
"TestPlugin"
,
run
:
function
(
) {
console
.
log
(
"Hallo World!"
); } };
module
.
exports
= {
input
:
"Hallo Welt!"
,
plugins
: [{
plugin
: testPlugin,
processor
:
"test-processor"
}],
processes
: {
test
: {
process
: [
"test-processor"
] } },
logLevel
:
"error"
};