@power-doctest/asciidoctor
v5.3.3
Published
A Asciidoctor parser for power-doctest.
Downloads
15
Readme
@power-doctest/asciidoctor
A Asciidoctor parser for power-doctest.
Install
Install with npm:
npm install @power-doctest/asciidoctor
Usage
Doctest Control Annotation
@power-doctest/asciidoctor
support Doctest Control Annotation as attributes.
Enable Doctest
Enable doctest for the source code.
[doctest="enabled"]
[source,javascript]
----
const str = "string";
console.log(str); // => "string"
----
Disable Doctest
Disable doctest for the source code.
[doctest="disabled"]
[source,javascript]
----
const str = "string";
console.log(str); // => "string"
----
Expected error
If the expected error is not match the result, throw error.
[doctest-error="SyntaxError"]
[source,javascript]
----
+++++INVALID SYNTAX++++
----
Doctest options
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
}
```
Metadata
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"
----
Changelog
See Releases page.
Running tests
Install devDependencies and Run npm test
:
npm test
Contributing
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
Author
License
MIT © azu