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:
parent
7a6fad6aac
commit
a7808ff853
|
@ -1,4 +1,5 @@
|
||||||
# Text-generation-launcher arguments
|
# Text-generation-launcher arguments
|
||||||
|
|
||||||
```
|
```
|
||||||
Text Generation Launcher
|
Text Generation Launcher
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ def main():
|
||||||
output = subprocess.check_output(["text-generation-launcher", "--help"]).decode(
|
output = subprocess.check_output(["text-generation-launcher", "--help"]).decode(
|
||||||
"utf-8"
|
"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"
|
filename = "docs/source/basic_tutorials/launcher.md"
|
||||||
if args.check:
|
if args.check:
|
||||||
|
|
Loading…
Reference in New Issue