introduced proposed suggestions related to the documentation

This commit is contained in:
pauliyobo 2021-09-04 23:44:27 +02:00
parent dcccd3289d
commit 1a2fa29209
1 changed files with 5 additions and 6 deletions

View File

@ -115,8 +115,8 @@ For everything else, have a look [at the complete example][example].
## implementing a preprocessor with a different language ## implementing a preprocessor with a different language
The fact that mdBook utilizes stdin and stdout to communicate with the preprocessors makes it easy to implement them in a language other than Rust. The fact that mdBook utilizes stdin and stdout to communicate with the preprocessors makes it easy to implement them in a language other than Rust.
The following code shows how to implement a simple preprocessor in python, which will modify the content of the first chapter. The following code shows how to implement a simple preprocessor in Python, which will modify the content of the first chapter.
The example will follow the configuration shown above with `preprocessor.foo.command` actually pointing to a python script. The code of said script is below: The example below follows the configuration shown above with `preprocessor.foo.command` actually pointing to a Python script.
```python ```python
import json import json
@ -129,9 +129,8 @@ if __name__ == '__main__':
# then we are good to return an exit status code of 0, since the other argument will just be the renderer's name # then we are good to return an exit status code of 0, since the other argument will just be the renderer's name
sys.exit(0) sys.exit(0)
# we will load both the context and the book representations from stdin # load both the context and the book representations from stdin
stdin = sys.stdin context, book = json.load(sys.stdin)
context, book = json.load(stdin)
# and now, we can just modify the content of the first chapter # and now, we can just modify the content of the first chapter
book['sections'][0]['Chapter']['content'] = '# Hello' book['sections'][0]['Chapter']['content'] = '# Hello'
# we are done with the book's modification, we can just print it to stdout, # we are done with the book's modification, we can just print it to stdout,