Fix launcher.md (#1075)

Adding a new line to escape between heading and codeblock. However, it
is a hotfix and I will work on a permanent solution on
https://github.com/huggingface/doc-builder
This commit is contained in:
Mishig 2023-09-28 15:37:50 +02:00 committed by GitHub
parent 7a6fad6aac
commit a7808ff853
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,5 @@
# Text-generation-launcher arguments
```
Text Generation Launcher

View File

@ -11,7 +11,7 @@ def main():
output = subprocess.check_output(["text-generation-launcher", "--help"]).decode(
"utf-8"
)
final_doc = f"# Text-generation-launcher arguments\n```\n{output}\n```"
final_doc = f"# Text-generation-launcher arguments\n\n```\n{output}\n```"
filename = "docs/source/basic_tutorials/launcher.md"
if args.check: