A Asciidoctor parser for power-doctest.
Install with npm:
npm install @power-doctest/asciidoctor
@power-doctest/asciidoctor
support Doctest Control Annotation as attributes.
Enable doctest for the source code.
[doctest="enabled"]
[source,javascript]
----
const str = "string";
console.log(str); // => "string"
----
Disable doctest for the source code.
[doctest="disabled"]
[source,javascript]
----
const str = "string";
console.log(str); // => "string"
----
If the expected error is not match the result, throw error.
[doctest-error="SyntaxError"]
[source,javascript]
----
+++++INVALID SYNTAX++++
----
Pass options
to @power-doctest/tester
The inline options is preferred constructor options.
<!-- doctest:options:{ "runMode": "any" } -->
```js
if (1 === 1) {
console.log(1); // => 1
} else{
console.log(2); // => 2
}
```
Attach metadata to doctest error of @power-doctest/tester. It is useful for implementing original behavior.
[doctest-meta={ "ECMAScript": 2017 }]
[source,javascript]
----
const str = "string";
console.log(str); // => "string"
----
See Releases page.
Install devDependencies and Run npm test
:
npm test
Pull requests and stars are always welcome.
For bugs and feature requests, please create an issue.
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
MIT © azu